@charset "UTF-8";
/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
/*------------------------------------------------------------------------------
    CSS reset
------------------------------------------------------------------------------*/
html {
  color: #000;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

body {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #000;
  text-decoration: none;
}
a:link, a:visited {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

input,
textarea,
select,
button {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

button {
  padding: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

table {
  border-collapse: collapse;
}

ul, ol, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
}

.pc {
  display: block !important;
}

.pcIb {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.spIb {
  display: none !important;
}

@media screen and (max-width: 750px) {
  html {
    position: relative;
  }
  body {
    font-size: 4.27vw;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  img {
    max-width: 100%;
  }
  input[type=submit] {
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .pcIb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .spIb {
    display: inline-block !important;
  }
}
/****************************************************
共通
****************************************************/
html.fixed {
  overflow: hidden;
}

body {
  padding-top: 104px;
}
@media screen and (max-width: 750px) {
  body {
    padding-top: 60px;
  }
}

.layout {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.layoutMin {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.title1 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.title1::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 140px;
  height: 5px;
  margin: auto;
  border-radius: 100px;
  background: linear-gradient(to right, #003C87 0%, #003C87 50%, #FDDB0A 50%, #FDDB0A 100%);
}
@media screen and (max-width: 750px) {
  .title1 {
    margin-bottom: 5.33vw;
    padding-bottom: 5.33vw;
    font-size: 6.4vw;
  }
  .title1::after {
    width: 100px;
    height: 4px;
  }
}

.moreLinkBox {
  text-align: center;
}
.moreLinkBox .moreLink {
  font-size: 20px;
  font-weight: bold;
  color: #003C87;
}
.moreLinkBox .moreLink::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 20px;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: 100% 100%;
  transform: translateY(3px);
}
@media screen and (max-width: 750px) {
  .moreLinkBox .moreLink {
    font-size: 4.27vw;
  }
  .moreLinkBox .moreLink::after {
    width: 4.8vw;
    height: 4.8vw;
    margin-left: 2.67vw;
  }
}

.fixBannerBox {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.fixBannerBox a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  height: 80px;
  font-size: 20px;
  color: #fff;
  border: 1px solid #fff;
  background-color: #003C87;
}
.fixBannerBox a img {
  display: inline-block;
  margin-right: 20px;
}
.fixBannerBox a p {
  line-height: 1;
}
.fixBannerBox a small {
  font-size: 10px;
}
.fixBannerBox a.line {
  background-color: #06C755;
}
.fixBannerBox a.line img {
  width: 40px;
}
@media screen and (max-width: 750px) {
  .fixBannerBox a {
    flex-direction: column;
    height: 18.67vw;
    font-size: 3.2vw;
  }
  .fixBannerBox a img {
    width: 8vw;
    margin: 0 0 1.3vw;
  }
  .fixBannerBox a p {
    line-height: 1;
  }
  .fixBannerBox a small {
    display: none;
  }
  .fixBannerBox a.line {
    background-color: #06C755;
  }
  .fixBannerBox a.line img {
    width: 8vw;
    margin-right: 0;
  }
}

#titleArea {
  background-color: #F6F6F6;
}
#titleArea .titleBody {
  display: flex;
  align-items: center;
  height: 250px;
}
#titleArea .titleBody h1 {
  font-size: 50px;
  font-weight: bold;
  color: #003C87;
}
@media screen and (max-width: 750px) {
  #titleArea .titleBody {
    height: 29.33vw;
  }
  #titleArea .titleBody h1 {
    font-size: 7.47vw;
  }
}

/****************************************************
header
****************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  padding: 0 20px;
}
.header .logoArea {
  display: flex;
  align-items: center;
}
.header .logo {
  flex-shrink: 0;
  margin-right: 20px;
}
.header .siteTag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 396px;
  width: 100%;
  margin-right: 20px;
}
.header .siteTag li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  background-color: #003C87;
}
.header .siteTag li:last-child {
  width: 100%;
  color: #003C87;
  background-color: #FDDB0A;
}
.header .clinicOverview {
  font-size: 14px;
  font-weight: bold;
}
.header .menuIcon {
  display: inline-block;
  position: relative;
  width: 43px;
  height: 31px;
}
.header .menuIcon span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
}
.header .menuIcon::before, .header .menuIcon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
}
.header .menuIcon::after {
  top: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header .siteTag {
    display: none;
  }
  .header .clinicOverview {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .header {
    height: 60px;
  }
  .header .logo a {
    display: flex;
    align-items: center;
  }
  .header .logo img {
    max-width: 158px;
  }
  .header .menuIcon {
    width: 30px;
    height: 18px;
  }
  .header .menuIcon span {
    height: 2px;
  }
  .header .menuIcon::before, .header .menuIcon::after {
    height: 2px;
  }
  .header .menuIcon::after {
    top: 0;
    margin: auto;
  }
}

/****************************************************
globalMenu
****************************************************/
#globalMenu .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
#globalMenu .menuWrap {
  position: fixed;
  top: 0;
  right: -730px;
  z-index: 200;
  max-width: 730px;
  width: 100%;
  height: 100%;
  padding: 100px 50px 50px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
#globalMenu .closeButton {
  position: absolute;
  width: 43px;
  height: 31px;
  top: 37px;
  right: 50px;
}
#globalMenu .closeButton::before, #globalMenu .closeButton::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  margin: auto;
  background-color: #000;
  transform: rotate(35deg);
}
#globalMenu .closeButton::after {
  transform: rotate(-35deg);
}
#globalMenu .mainNavBox {
  display: flex;
  justify-content: space-between;
  /*margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: $border;*/
}
#globalMenu .menuBox {
  width: 100%;
}
#globalMenu .menuTitle {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
#globalMenu .menuList li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
#globalMenu .menuList li a {
  display: inline-block;
  width: 100%;
  line-height: 1.6;
  font-size: 20px;
  font-weight: bold;
  background: url("../img/icon_arrow.svg") no-repeat right center;
  background-size: 20px 100%;
}
#globalMenu .subMenu li {
  margin-bottom: 10px;
}
#globalMenu .subMenu li a {
  padding-left: 25px;
  line-height: 1.6;
  font-size: 14px;
}
#globalMenu .bottomMenu .bottomMenuList {
  display: flex;
  gap: 30px;
}
#globalMenu .bottomMenu .bottomMenuList li a {
  font-size: 14px;
}
#globalMenu.active .overlay {
  pointer-events: auto;
  opacity: 1;
}
#globalMenu.active .menuWrap {
  right: 0;
}
@media screen and (max-width: 750px) {
  #globalMenu .menuWrap {
    right: -300px;
    max-width: 300px;
    padding: 24vw 5.33vw 0;
  }
  #globalMenu .closeButton {
    width: 30px;
    height: 18px;
    top: 20px;
    right: 20px;
  }
  #globalMenu .closeButton::before, #globalMenu .closeButton::after {
    height: 2px;
  }
  #globalMenu .menuBox {
    max-width: 100%;
  }
  #globalMenu .menuList li {
    margin-bottom: 5.33vw;
    padding-bottom: 5.33vw;
  }
  #globalMenu .menuList li a {
    font-size: 4.27vw;
    background-size: 4.8vw 100%;
  }
}

/****************************************************
breadcrumbs
****************************************************/
#breadcrumbs {
  padding: 5px 0;
}
#breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
#breadcrumbs ul li {
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}
#breadcrumbs ul li span, #breadcrumbs ul li a {
  line-height: 1.6;
  font-size: 12px;
}
#breadcrumbs ul li a {
  color: #003C87;
}
#breadcrumbs ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #003C87;
  border-right: 2px solid #003C87;
  transform: rotate(45deg);
}
#breadcrumbs ul li:last-child::after {
  content: none;
}
@media screen and (max-width: 750px) {
  #breadcrumbs {
    padding: 1.3vw 0;
  }
  #breadcrumbs ul li {
    margin-right: 4vw;
    padding-right: 4vw;
  }
  #breadcrumbs ul li span, #breadcrumbs ul li a {
    font-size: 2.67vw;
  }
  #breadcrumbs ul li::after {
    width: 1.86vw;
    height: 1.86vw;
  }
}

/****************************************************
footer
****************************************************/
footer {
  padding: 50px 0 129px;
  color: #fff;
  background-color: #000;
}
footer .footerWrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
footer .footerLogoBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 396px;
  width: 100%;
  margin-right: 20px;
}
footer .logo {
  margin-bottom: 25px;
}
footer .siteTag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}
footer .siteTag li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 5px;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  border-radius: 3px;
  background-color: #fff;
}
footer .siteTag li:last-child {
  width: 100%;
  color: #003C87;
  background-color: #FDDB0A;
}
footer .menuArea {
  max-width: 650px;
  width: 100%;
}
footer .mainNavBox {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer .menuBox {
  max-width: 300px;
  width: 100%;
}
footer .menuTitle {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
footer .menuList.simple {
  display: flex;
  justify-content: right;
  gap: 30px;
  width: 100%;
}
footer .menuList > li {
  margin-bottom: 15px;
}
footer .menuList > li > a {
  padding-left: 25px;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  background: url("../img/icon_arrow_white.svg") no-repeat left center;
  background-size: auto 100%;
}
footer .menuList .chlild a {
  padding-left: 25px;
  font-size: 14px;
  color: #fff;
}
footer .subMenu li {
  margin-bottom: 10px;
}
footer .subMenu li a {
  padding-left: 25px;
  line-height: 1.6;
  font-size: 14px;
  color: #fff;
}
footer .copyright {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 10px;
}
@media screen and (max-width: 1024px) {
  footer .footerWrap {
    display: block;
  }
  footer .footerLogoBox {
    margin: 0 auto 30px;
  }
  footer .logo img {
    width: 100%;
  }
  footer .menuArea {
    margin: 0 auto 30px;
  }
  footer .menuList.simple {
    justify-content: center;
  }
  footer .copyright {
    position: static;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  footer {
    padding: 13.33vw 0 24vw;
  }
  footer .footerLogoBox {
    max-width: 78.6vw;
    margin: 0 auto 8vw;
  }
  footer .logo img {
    width: 100%;
  }
  footer .siteTag {
    gap: 1.3vw;
  }
  footer .siteTag li {
    height: 5.33vw;
    padding: 0 1.3vw;
    font-size: 3.2vw;
  }
  footer .menuArea {
    margin: 0 auto 8vw;
  }
  footer .mainNavBox {
    display: block;
  }
  footer .menuBox {
    max-width: 100%;
    margin-bottom: 10.66vw;
  }
  footer .menuTitle {
    margin-bottom: 4vw;
    padding-bottom: 4vw;
    font-size: 4.27vw;
  }
  footer .menuList {
    display: flex;
    flex-wrap: wrap;
  }
  footer .menuList.simple {
    justify-content: left;
    gap: 0;
  }
  footer .menuList > li {
    width: 50%;
    margin-bottom: 4vw;
  }
  footer .menuList > li > a {
    padding-left: 6.66vw;
    font-size: 3.73vw;
  }
  footer .menuList .chlild a {
    padding-left: 6.66vw;
    font-size: 3.73vw;
  }
  footer .subMenu {
    display: flex;
    flex-wrap: wrap;
  }
  footer .subMenu li {
    width: 50%;
    margin-bottom: 2.67vw;
  }
  footer .subMenu li a {
    padding-left: 0;
    font-size: 3.73vw;
  }
  footer .copyright {
    font-size: 2.67vw;
  }
}

/*# sourceMappingURL=common.css.map */
