@charset "UTF-8";
/* ------------------------------------
// top　header gnav 上書き
------------------------------------ */
main {
  padding: clamp(5rem, 6.9vw, 10rem) 0 0;
}
@media screen and (max-width: 768px) {
  main {
    padding: clamp(2.5rem, 3.5vw, 5rem) 0 0;
  }
}

/* ------------------------------------
// mv - nav
------------------------------------ */
#mv {
  position: relative;
  margin-bottom: 3rem;
  height: 100svh;
}
#mv img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#mv .openNotice {
  position: absolute;
  top: calc(125px + 5.2vw);
  left: 6.9vw;
  bottom: calc(125px + 5.2vw);
  width: 24.3vw;
  aspect-ratio: 700/635;
}
@media screen and (max-width: 768px) {
  #mv {
    height: auto;
  }
  #mv .openNotice {
    top: calc(63px + 2rem);
    bottom: auto;
    left: 10px;
    width: 60%;
  }
}
#mv nav {
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 1;
  visibility: visible;
}
#mv nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
  width: 100vw;
  z-index: 100;
}
#mv nav.hide {
  visibility: hidden;
  opacity: 0;
}

/* ------------------------------------
// parts
------------------------------------ */
.hgtype01 {
  display: grid;
  gap: clamp(1rem, 2.1vw, 3rem);
  grid-template-columns: max-content clamp(2rem, 3.5vw, 5rem) max-content;
  grid-template-areas: "en line jp";
  margin-bottom: clamp(3rem, 6.9vw, 10rem);
  position: relative;
}
.hgtype01::after {
  grid-area: line;
  content: "";
  border-bottom: 1px solid #0a2e5a;
  display: block;
  height: 1px;
  width: clamp(2rem, 3.5vw, 5rem);
  margin-bottom: 2px;
  align-self: end;
}
.hgtype01 .en {
  grid-area: en;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-size: clamp(2.5rem, 3.5vw, 5rem);
  color: #b9d1dc;
  font-weight: 100;
  line-height: 1;
  position: relative;
}
.hgtype01 .en::first-letter {
  color: #b9cbdc;
  font-weight: 300;
}
.hgtype01 .en::before {
  content: "";
  border-bottom: 1px solid #b9d1dc;
  display: block;
  height: 1px;
  width: calc(100vw - 3em);
  position: absolute;
  bottom: 2px;
  right: 1em;
}
.hgtype01 h2 {
  grid-area: jp;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  color: #2a5e8d;
  font-weight: 600;
  align-self: end;
  gap: 1rem;
}
.hgtype01 h2::first-letter {
  color: #72c199;
}
.hgtype01 h2 span {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .hgtype01 {
    grid-template-columns: clamp(2rem, 3.5vw, 5rem) max-content;
    grid-template-areas: "en en" "line jp";
    place-content: revert;
  }
  .hgtype01::after {
    grid-area: line;
    content: "";
    border-bottom: 1px solid #0a2e5a;
    display: block;
    height: 1px;
    width: clamp(2rem, 3.5vw, 5rem);
    margin-bottom: 2px;
    align-self: center;
  }
  .hgtype01 h2 {
    display: block;
    align-items: center;
  }
  .hgtype01 h2 span {
    display: block;
    padding-left: 0;
  }
}

.btntype01 {
  width: fit-content;
}
.btntype01 a {
  text-align: center;
  color: #FFF;
  padding: 0.5rem 4rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.3s;
  background: #72c199;
}
.btntype01 a:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_linkbtn_01.webp) no-repeat center/contain;
}
.btntype01 a:hover {
  background: #428ba0;
}

/* ------------------------------------
// #topLead
------------------------------------ */
#topLead {
  padding: 0 0 clamp(2.5rem, 3.5vw, 5rem);
}
@media screen and (max-width: 768px) {
  #topLead {
    padding: 0 0 clamp(2.5rem, 3.5vw, 5rem);
  }
}
#topLead {
  position: relative;
  border-bottom: 1px solid #FFF;
}
#topLead::before, #topLead::after {
  content: "";
  display: block;
  width: 28vw;
  height: 1px;
  background: #428ba0;
  position: absolute;
  bottom: -1px;
}
#topLead::before {
  left: 0;
}
#topLead::after {
  right: 0;
}
#topLead p {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 1.9vw, 2.8rem);
  line-height: 1.8;
}
#topLead p strong {
  font-size: clamp(2.2rem, 2.6vw, 3.8rem);
}
#topLead p span:nth-child(1) {
  color: #1e3361;
}
#topLead p span:nth-child(2) {
  color: #2a5e8d;
}
#topLead p span:nth-child(3) {
  color: #428ba0;
}
#topLead p span:nth-child(4) {
  color: #57b49a;
}

/* ------------------------------------
// #openMessage
------------------------------------ */
#openMessage {
  padding: clamp(2.5rem, 3.5vw, 5rem) 0 0;
}
#openMessage .notice {
  display: grid;
  grid-template-columns: 115px 1fr;
  width: fit-content;
  margin: 0 auto;
  gap: 2rem;
}
#openMessage .notice p {
  align-self: center;
  line-height: 2;
}
#openMessage .notice p strong {
  position: relative;
  border-bottom: 1px solid #428ba0;
}
#openMessage .photoMap {
  padding: 5rem clamp(2rem, 13.9vw, 20rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 2.8vw, 4rem);
  position: relative;
}
#openMessage .photoMap:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  background: #FFF;
}
#openMessage .photoMap > * {
  position: relative;
  padding: 1rem;
  border: 1px solid #444444;
}
#openMessage .photoMap .map .mapfixedbox {
  height: 100%;
  overflow: hidden;
  filter: grayscale(0.4);
}
#openMessage .photoMap .map iframe {
  height: calc(100% + 300px);
  margin-top: -160px;
}
#openMessage .address {
  background: #FFF;
  padding: 5rem 0 clamp(5rem, 6.9vw, 10rem);
}
#openMessage .address p {
  text-align: center;
  margin-bottom: 3rem;
}
#openMessage .address .accessbtn {
  width: fit-content;
  margin: 0 auto;
}
#openMessage .address .accessbtn a {
  text-align: center;
  color: #FFF;
  padding: 0.5rem 4rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.3s;
  background: #72c199;
}
#openMessage .address .accessbtn a:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_address.webp) no-repeat center/contain;
}
#openMessage .address .accessbtn a:hover {
  background: #053B6C;
}
@media screen and (max-width: 768px) {
  #openMessage .notice {
    display: grid;
    grid-template-columns: 1fr;
    width: fit-content;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
  }
  #openMessage .notice .logomark {
    width: 50%;
    margin: 0 auto;
  }
  #openMessage .notice p {
    align-self: center;
  }
  #openMessage .photoMap {
    padding: 3rem 2rem 0;
    grid-template-columns: 1fr;
  }
  #openMessage .photoMap > * {
    padding: 0.5rem;
  }
  #openMessage .photoMap .map .mapfixedbox {
    height: 300px;
    overflow: hidden;
    filter: grayscale(0.4);
  }
  #openMessage .photoMap .map iframe {
    height: calc(100% + 300px);
    margin-top: -160px;
  }
  #openMessage .address {
    padding: 3rem 0 clamp(5rem, 6.9vw, 10rem);
  }
}

/* ------------------------------------
// #greeting
------------------------------------ */
#greeting {
  padding: clamp(5rem, 6.9vw, 10rem) clamp(2rem, 13.9vw, 20rem);
}
@media screen and (max-width: 768px) {
  #greeting {
    padding: clamp(5rem, 6.9vw, 10rem) clamp(2rem, 3.5vw, 5rem);
  }
}
#greeting .messagebox {
  margin: clamp(5rem, 6.9vw, 10rem) auto 0;
  max-width: 740px;
  padding: 0;
}
#greeting .messagebox .lead {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  color: #444;
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  padding: 0 2em 3rem 2em;
  border-bottom: 1px solid #FFF;
  text-align: center;
  width: fit-content;
  margin: 0 auto 3rem;
}
#greeting .messagebox p {
  text-align: center;
}
#greeting .messagebox dl {
  margin: clamp(3rem, 3.5vw, 5rem) auto 2rem;
  width: fit-content;
  text-align: center;
  color: #2a5e8d;
}
#greeting .messagebox dl dt {
  font-size: clamp(1.5rem, 1.1vw, 1.6rem);
  margin-bottom: 0.5rem;
}
#greeting .messagebox dl dd {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  font-weight: 600;
}
#greeting .messagebox dl dd span {
  font-size: clamp(1.6rem, 1.1vw, 1.6rem);
  font-weight: 500;
}
#greeting .messagebox .btntype01 {
  margin: 0 auto 2rem;
}
#greeting .messagebox .socialLink {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#greeting .messagebox .instagrambtn {
  width: fit-content;
}
#greeting .messagebox .instagrambtn a {
  text-align: center;
  color: #FFF;
  padding: 0.5rem 4rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.3s;
  background: #728ac1;
}
#greeting .messagebox .instagrambtn a:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_instagram.webp) no-repeat center/contain;
}
#greeting .messagebox .instagrambtn a:hover {
  background: #053B6C;
}
#greeting .messagebox .amebabtn {
  width: fit-content;
}
#greeting .messagebox .amebabtn a {
  text-align: center;
  color: #FFF;
  padding: 0.5rem 4rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.3s;
  background: #728ac1;
}
#greeting .messagebox .amebabtn a:before {
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  display: block;
  background: url(/lib/img/cmn/icon_ameba.webp) no-repeat center/contain;
}
#greeting .messagebox .amebabtn a:hover {
  background: #053B6C;
}
@media screen and (max-width: 768px) {
  #greeting .messagebox .socialLink {
    display: grid;
    place-content: center;
    place-items: center;
    gap: 1rem;
  }
}

/* ------------------------------------
// #treatment
------------------------------------ */
#treatment {
  padding: clamp(5rem, 6.9vw, 10rem) clamp(2rem, 13.9vw, 20rem);
  background: #FFF;
  position: relative;
}
#treatment::before {
  content: "";
  width: 100vw;
  height: 10px;
  background: #ecf0f6;
  position: absolute;
  left: 0;
  top: 4px;
}
#treatment .treatmentMenu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: clamp(2rem, 2.8vw, 4rem);
}
#treatment .treatmentMenu .item {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  border-radius: 2rem;
  position: relative;
  aspect-ratio: 1;
  gap: 0;
  border: 2px solid #b9d1dc;
  border-radius: 14px;
}
#treatment .treatmentMenu .item::before, #treatment .treatmentMenu .item::after {
  content: "";
  display: block;
  position: absolute;
  background: #FFF;
}
#treatment .treatmentMenu .item::before {
  width: calc(100% - clamp(3rem, 4.2vw, 6rem));
  height: calc(100% + 6px);
  top: -3px;
  left: clamp(1.5rem, 2.1vw, 3rem);
  border-right: none;
  border-bottom: none;
}
#treatment .treatmentMenu .item::after {
  height: calc(100% - clamp(3rem, 4.2vw, 6rem));
  width: calc(100% + 6px);
  top: clamp(1.5rem, 2.1vw, 3rem);
  right: -3px;
  border-left: none;
  border-bottom: none;
}
#treatment .treatmentMenu .item a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: clamp(0.5rem, 0.7vw, 1rem);
  position: relative;
  z-index: 2;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  pointer-events: none;
}
#treatment .treatmentMenu .item a .icon {
  padding: 1rem 2rem;
}
#treatment .treatmentMenu .item a p {
  text-align: center;
  color: #0a2e5a;
}
@media screen and (max-width: 768px) {
  #treatment {
    padding: clamp(5rem, 6.9vw, 10rem) clamp(2rem, 3.5vw, 5rem);
  }
  #treatment .treatmentMenu {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  #treatment .treatmentMenu .item {
    aspect-ratio: auto;
  }
  #treatment .treatmentMenu .item a {
    font-size: clamp(1.2rem, 3.5vw, 1.3rem);
  }
}

/* ------------------------------------
// #feature
------------------------------------ */
#feature {
  display: grid;
  grid-template-columns: 1fr clamp(200px, 37.5vw, 54rem);
  grid-template-areas: "dataColumn photo";
  background: #eceff6;
  position: relative;
  padding-top: 16px;
}
#feature::before {
  content: "";
  width: 100vw;
  height: 5px;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 10px;
}
#feature .dataColumn {
  grid-area: dataColumn;
  padding: 2rem 2rem 0 clamp(2rem, 13.9vw, 20rem);
  align-self: center;
}
#feature .photo {
  grid-area: photo;
}
#feature hgroup {
  display: grid;
}
#feature ol {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 0;
  margin-bottom: 3rem;
}
#feature ol li {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 1rem;
}
#feature ol li a {
  display: inherit;
  grid-template-columns: inherit;
  grid-column: inherit;
}
#feature ol li span {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: clamp(2rem, 1.9vw, 2.8rem);
  color: #FFF;
  aspect-ratio: 1;
  background: #CCC;
  padding: 0.7rem;
  display: grid;
  place-content: center;
  place-items: center;
}
#feature ol li:nth-child(1) span {
  background: #2a5e8d;
}
#feature ol li:nth-child(2) span {
  background: #428ba0;
}
#feature ol li:nth-child(3) span {
  background: #57b49a;
}
#feature ol li p {
  align-self: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
#feature ol li p strong {
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  color: #0a2e5a;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #feature {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "dataColumn" "photo";
    gap: 3rem 0;
  }
  #feature .dataColumn {
    padding: 2rem 2rem 0 clamp(2rem, 3.5vw, 5rem);
  }
  #feature ol li p strong {
    display: inline-block;
  }
}