@charset "UTF-8";
/* CSS Document */
header {
  z-index: 4;
  position: absolute;
  width: 100%;
  height: auto;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgb(224 231 242);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.8s ease;
}
.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading__logo {
  width: 18vw;
}
/* HTML: <div class="loader"></div> */
.loader {
  color: #b5c9db;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
  transform: translateX(-38px);
  animation: l21 .5s infinite alternate linear;
  margin-inline: auto;
  margin-block: 2rem 0;
}

@keyframes l21 {
  50% {
    box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px
  }
  100% {
    box-shadow: 19px 0 0 0, 38px 0 0 3px, 57px 0 0 7px
  }
}

/*.top_contentsWrapper {
  opacity: 0;
  transition: all 0.5s ease;
}
.top_contentsWrapper.active {
  opacity: 1;
}*/
.top_bgArea {
  width: 100%;
  height: 93vh;
  /*max-width: 1200px;*/
  margin-inline: auto;
  background: #f5f2ef;
  text-align: center;
}
.top_bgArea picture img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 1200px;
}
/*.no-webp .top_section {
  width: 100%;
  min-width: 1200px;
  height: 93vh;
  position: relative;
  background: url("./img/main_pc.jpg") top right no-repeat;
  background-size: cover;
}
.webp .top_section {
  width: 100%;
  min-width: 1200px;
  height: 93vh;
  position: relative;
  background: url("./img/main_pc.webp") top right no-repeat;
  background-size: cover;
}*/
.feature_icon {
  margin-block-end: 20px;
}
.top_inner {
  position: absolute;
  top: 50%;
  left: 16vw;
  transform: translateY(-50%);
  width: 457px;
  z-index: 3;
}
.top_inner_subcopy {
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.5vw;
  margin-bottom: 10px;
}
.top_inner_subcopy .underline {
  position: relative;
  padding: 0 1.4vw;
}
.top_inner_subcopy .underline::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1.6vw;
  background: #f2a9a661;
  bottom: -3px;
  left: 0;
  z-index: -1;
}
.badge {
  margin-left: 32px;
}
.badge img {
  width: 185px;
  height: 100%;
  display: inline-block;
}
.sub_copy {
  display: block;
  font-size: 27px;
  margin-left: 0;
  line-height: 1.6;
  font-family: 'Noto Serif JP', serif;
  border-bottom: 1px solid #b0922c;
  border-top: 1px solid #b0922c;
  padding: 3px 8px;
  font-weight: 400;
  color: #b0922c;
  letter-spacing: 0.14em;
}
.top_inner_copy {
  font-size: 36px;
  line-height: 1.59;
  letter-spacing: 0.14em;
  margin-block: 0 1rem;
}
.h_actionArea.top {
  position: relative;
  opacity: 1;
  pointer-events: all;
  z-index: 6;
  background: none;
  box-shadow: none;
  left: 0;
  bottom: 0;
  padding: 1rem 0;
  column-gap: 1.5rem;
}
span.small.kome {
  font-size: 0.45em;
  vertical-align: top;
}
.top_inner_copy_sub {
  margin-block: -1rem 2rem;
}
@media screen and (max-width:768px) {
  header {
    height: 90px;
  }
  .webp .top_section {
    min-width: unset;
    height: 91vh;
  }
  .no-webp .top_section {
    min-width: unset;
    height: 91vh;
  }
  .top_inner {
    padding: 0 3vw;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 100%;
    top: 50%;
    left: 50%;
  }
  .feature_icon {
    margin-block-end: 20px;
    width: 300px;
    display: block;
  }
}
@media screen and (max-width:620px) {
  .loading__logo {
    width: 43vw;
  }
  /*.no-webp .top_section {
    background: url(./img/main_sp.jpg) top right no-repeat;
    background-size: cover;
    min-width: unset;
    height: 83vh;
  }
  .webp .top_section {
    background: url("./img/main_sp.webp") top right no-repeat;
    background-size: cover;
    min-width: unset;
    height: 83vh;
  }*/
  .top_bgArea {
    width: 100%;
    height: auto;
    aspect-ratio: 7 / 11;
  }
  .top_section::after {
    background: none;
    min-width: unset;
  }
  .top_inner {
    padding: 0 3vw;
    z-index: 1;
    transform: translate(-50%, 0);
    width: 100%;
    top: 90px;
  }
  .feature_icon {
    width: 48vw;
    display: inline-block;
    margin-block-end: 13px;
  }
  .top_inner_subcopy {
    margin-bottom: 7px;
    flex-direction: column;
    align-items: flex-start;
  }
  .top_inner_copy {
    font-size: 6vw;
    padding-left: 0;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .badge {
    margin-left: 0;
    margin-bottom: 9px;
  }
  .badge img {
    /* display: none; */
    width: 40vw;
    display: block;
    margin: 0px 0 10px;
  }
  /*.sub_copy {
    display: block;
    font-size: 5vw;
    margin-left: 3.2vw;
    line-height: 1.6;
  }*/
  .sub_copy {
    display: block;
    font-size: clamp(13px, 3.2vw, 16px);
    margin-left: 0;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    border-bottom: 1px solid #b0922c;
    border-top: 1px solid #b0922c;
    padding: 3px 0;
    font-weight: bold;
    color: #b0922c;
  }
  .sub_copy.pc_visible {
    display: none;
  }
  .top_inner_subcopy .underline::after {
    height: 6.6vw;
  }
  .h_actionArea.top {
    column-gap: 0;
    padding: 2px;
    background: #fff;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
    transform: unset;
  }
}
/* ------------------
  news section
------------------ */
.news {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  max-width: 1200px;
  margin-inline: auto;
  margin-block: 0px 0px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 2vw;
  background: #fff;
  width: 50vw;
  left: 4vw;
  border-radius: 8px;
}
.newsTtl {
  display: inline;
  position: absolute;
  top: -22px;
  letter-spacing: 0.15em;
  font-size: 12px;
  background: #7895c1;
  color: #fff;
  padding: 0.2em 1em;
  border-radius: 4px 4px 0 0;
  left: 0;
  font-weight: bold;
}
.newsBnr {
  display: block;
  width: 30%;
  height: auto;
  aspect-ratio: 34 / 13;
  border-radius: 6px;
  text-indent: -99999px;
  background: url("./img/bnr_greeting.jpg") no-repeat center #e2d6ae;
  background-size: contain;
}
.newsInner {
  /*width: 1200px;*/
  width: 100%;
  padding: 1rem;
  border: 2px solid #b2c4de;
  border-radius: 0px 7px 7px 7px;
  z-index: 10;
}
span.news-date.en {
  font-size: 14px;
  margin-inline-end: 1.5rem;
  white-space: nowrap;
}
.newsInner p {
  margin-bottom: 4px;
}
.newsInner a,
.newsInner>span {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #002D6E;
  padding: 0 3px;
  display: flex;
}
.newsInner>span {
  text-decoration: none;
}
.newsInner>span span {
  line-height: 1.4;
  margin-block-end: 0.4rem;
}
.newsInner p:last-child,
.newsInner a:last-child {
  margin-bottom: 0;
}
.info1 {
  background: #e98f97;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.info2 {
  background: #7795c2;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.yellow-marker {
  background: #FFF290;
}
span.small {
  font-size: 0.85em;
}
@media screen and (max-width:620px) {
  .newsInner a .news-date .newsInner>span .news-date {
    width: 20%;
    font-size: clamp(12px, 2.8vw, 14px);
    margin-inline-end: 1vw;
  }
  .newsInner a .newsCont,
  .newsInner>span .newsCont {
    width: 80%;
    font-size: clamp(13px, 3.0vw, 15px);
    line-height: 1.4;
  }
  .newsInner a:nth-child(n+2) {
    margin-block-start: 1.5vw;
  }
}
/* ------------------
  greeting section
------------------ */
.greeting {
  padding: 80px 0 100px;
}
.secCover.greeting .secInner {
  position: relative;
}
.greeting h3 {
  font-size: 36px;
  line-height: 1.89;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 42px;
  margin: 21px auto 40px;
  position: relative;
  max-width: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.greeting h3::before {
  content: "";
  display: block;
  position: relative;
  width: 220px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(./img/greeting_bg_01.webp) no-repeat;
  background-size: 100% auto;
}
.greeting .greetSubHeader {
  text-align: center;
  margin-bottom: 0;
  font-size: 28px;
  letter-spacing: 0.05em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}
.greeting .greetSubHeader>.smallTxt {
  font-size: 22px;
}
.greeting .greetSubHeader .underline {
  position: relative;
}
.greeting .greetSubHeader .underline::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 17px;
  background: #FFF290;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.greetingMsg {
  width: 750px;
  margin: 0 auto;
  line-height: 2.22;
  font-size: 18px;
  letter-spacing: 0.085em;
}
span.signature {
  margin-top: 10px;
  display: block;
  text-align: right;
}
@media screen and (max-width:768px) {
  .news {
    margin-block: 0;
    position: relative;
    width: 95%;
    left: unset;
    bottom: 4vw;
  }
  .newsInner {
    width: 100%;
  }
  .newsBnr {
    width: 95%;
    padding: 5vw 7vw;
    margin-block-end: 6vw;
  }
  .newsBnr a {
    font-size: 4.3vw;
  }
  .newsInner p {
    line-height: 1.7;
  }
  .greeting {
    padding: 60px 0;
  }
  .greetingMsg {
    width: 100%;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:620px) {
  .info1 {
    font-size: 12px;
    margin-right: 0.4rem;
  }
  .newsInner p {
    line-height: 1.6;
    font-size: 13px;
  }
  .greeting {
    padding: 3rem 0 15px;
  }
  .secCover.greeting .secInner {
    padding-left: 4.5%;
  }
  .greeting .greetSubHeader {
    font-size: 6.0vw;
    margin-bottom: 0;
    text-align: right;
  }
  .greeting .greetSubHeader>.smallTxt {
    font-size: 5vw;
  }
  .greeting h3 {
    font-size: 5.4vw;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: right;
    margin-block: 0 20px;
  }
  .greeting h3::before {
    width: 30vw;
  }
  .greetingMsg {
    font-size: clamp(15px, 2.76vw, 16px);
    line-height: 1.7;
    margin-bottom: 15px;
    letter-spacing: 0.01em;
  }
}
/* ------------------
  case section
------------------ */
.secCover.case {
  background: #e9edf2;
  padding: 4rem 2rem;
}
.top_caseSliderItem {
  padding-inline: 1rem;
}
.top_caseSlider_inner {
  display: block;
  max-width: 300px;
  height: 298px;
  border: 2px solid #d6dfe8;
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
  position: relative;
}
.caseNum {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22%;
}
.top_caseSlider_inner::after {
  content: "";
  display: block;
  width: 70px;
  height: auto;
  aspect-ratio: 114 / 23;
  background: url("./img/more_img.svg") no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 10px;
  bottom: 9px;
}
.top_caseSlider_inner img {
  display: block;
  width: 100%;
  border-radius: 7px;
  margin-block-end: 12px;
  margin-inline: auto;
}
.top_caseSlider_inner h4 {
  margin-block: 10px 0;
}
@media screen and (max-width:620px) {
  .secCover.case {
    background: #e9edf2;
    padding: 4rem 0;
  }
}
/* ------------------
  about section
------------------ */
.about {
  position: relative;
  overflow: visible;
  padding: 100px 0 5rem;
}
/*.about::after {
  content: "";
  display: block;
  position: absolute;
  background: url(./img/bg_loop_02.svg) no-repeat center;
  background-size: 100% auto;
  width: 78%;
  height: auto;
  aspect-ratio: 8.16 / 1;
  top: -62px;
  right: 0;
}*/
.aboutCover {
  display: flex;
  flex-wrap: wrap;
  margin-block-end: 4rem;
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 13px;
  overflow: hidden;
}
.about_lead {
  margin-inline: auto;
  max-width: 750px;
  margin-block-end: 4.8rem;
}
.about_lead>.secHeader {
  margin-block-end: 3.0rem;
}
.aboutSubHeader {
  font-size: 1.4rem;
  background: #fff;
  border-radius: 4px;
  padding: 0.1em 0.3em;
  color: #4d7abc;
  font-feature-settings: "palt";
  display: inline-block;
}
.aboutHeader {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #064cb4;
  margin-block: 1rem;
}
.contentHeader.aboutSub {
  text-align: center;
  margin-block: 0 1rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}
.contentHeader.aboutSub .underline {
  background: linear-gradient(0deg, #fff290 50%, transparent 50%);
}
.about_contentBox {
  width: 25%;
  padding: 20px;
  position: relative;
  float: none;
}
.about_contentBox::after {
  content: "詳しくみる";
  font-size: 12px;
  color: #064cb4;
  display: block;
  text-align: right;
  padding-inline: 0.6rem 1.6rem;
  background: url(./img/openBtn.svg) no-repeat right 4px center rgb(255 255 255 / 65%);
  background-size: 8px auto;
  float: right;
  border-radius: 4px;
}
.about_contentBox.active::after {
  content: "たたむ";
  background: url(./img/closeBtn.svg) no-repeat right 4px center rgb(255 255 255 / 65%);
  background-size: 8px auto;
}
.about_contentBox .flexbox {
  column-gap: 3%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about_contentBox .txtBox {
  width: 100%;
  text-align: center;
}
.about_contentBox .imgBox {
  width: 30%;
  margin-block-end: 10px;
}
.moreEx {
  margin-block: 1.6rem 0;
  background: #ffffff9c;
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 4px;
}
.about_contentBox p {
  font-size: 14px;
  line-height: 1.6;
}
.about_contentBox:nth-child(odd) {
  background: #e4e9f4;
}
.about_contentBox:nth-child(even) {
  background: #fff1f1;
}
.about_contentBox .imgBox img {
  width: 100%;
  height: auto;
  display: inline-block;
}
p.inner_btn {
  margin-top: 30px;
}
.teaserMovie {
  display: flex;
  justify-content: center;
  padding-block-end: 12rem;
}
.teaserMovie iframe {
  display: block;
  border-radius: 8px;
}
@media screen and (max-width:768px) {
  .about {
    padding: 60px 0;
  }
  .about_contentBox .txtBox {
    width: 100%;
    max-width: 500px;
  }
  .teaserMovie {
    padding-inline: 4.5vw;
    padding-block: 3rem;
  }
  .teaserMovie iframe {
    aspect-ratio: 112 / 63;
    width: 100%;
    height: auto;
  }

  /*.about_contentBox .imgBox {
    display: none;
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
  }*/
}
/*max-width:768px*/
@media screen and (max-width:620px) {
  .about {
    padding: 30px 0 0px;
  }
  .about::after {
    background: url(./img/bg_loop_02_sp.svg) no-repeat center;
    background-size: 100% auto;
    aspect-ratio: 3.34 / 1;
    top: -13px;
    right: 0;
    opacity: 0.4;
    width: 100%;
  }
  .aboutCover {
    display: flex;
    flex-wrap: wrap;
    margin-block-end: 4rem;
    padding-inline: 3vw;
    row-gap: 3vw;
    border-radius: 4px;
  }
  .about_lead {
    padding: 0 4.5%;
  }
  .about_contentBox {
    width: 100%;
    padding: 4vw 3vw;
    border-radius: 4px;
  }
  .about_contentBox::after {
    position: absolute;
    right: 2vw;
    bottom: -0.5vw;
    font-size: clamp(10px, 2.8vw, 12px);
  }
  .about_contentBox .flexbox {
    flex-direction: row;
    column-gap: 2%;
    justify-content: center;
    align-items: center;
  }
  .about_contentBox .imgBox {
    width: 25%;
    margin-block-end: 0;
  }
  .about_contentBox .txtBox {
    width: 68%;
    text-align: left;
  }
  .aboutSubHeader {
    font-size: clamp(12px, 3.05vw, 14px);
  }
  .aboutHeader {
    font-size: clamp(16px, 4.235vw, 18px);
    margin-block: 1vw;
  }
  /*.about_contentBox {
    margin-bottom: 50px;
    background: #edf0f6;
    padding: 3vw;
    border-radius: 7px;
  }*/
  .about_contentBox p {
    font-size: clamp(14px, 2.8vw, 15px);
    line-height: 1.7;
  }
  p.inner_btn {
    margin-top: 20px;
    text-align: center;
  }
  .inner_btn .min_linkBtn:last-child {
    margin-block-end: 0;
  }
}
/*max-width:620px*/


/* ------------------
  services section
------------------ */
.services {
  position: relative;
  overflow: visible;
}
.services .btnBox {
  margin-block-end: 0;
}
.services::after {
  content: "";
  display: block;
  position: absolute;
  background: url(./img/bg_loop_01.svg) no-repeat center;
  background-size: 100% auto;
  width: 78%;
  height: auto;
  aspect-ratio: 8.16 / 1;
  top: -62px;
}
.servicesIntroBox {
  width: 625px;
  margin: 90px auto 90px;
}
.servicesIntroBox>h4 {
  font-size: 25px;
  letter-spacing: 0.085em;
  margin: 0 auto 10px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.servicesIntroBox>h4 .smallTxt {
  font-size: 17px;
}
.servicesIntroBox>h4 .underline {
  position: relative;
}
.servicesIntroBox .apdx {
  font-size: 12px;
  margin-bottom: 45px;
}
/*.servicesIntroBox > h4 .underline::before {
  content: "※";
  position: absolute;
  display: inline-block;
  font-size: 12px;
  right: -8px;
  top: -10px;
}*/
.servicesIntroBox>h4 .underline::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 17px;
  background: #FFF290;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.servicesIntroBox>h4 .largeTxt {
  font-size: 39px;
  letter-spacing: 0.03em;
  padding: 0 2px;
}
.services_contentBox {
  margin-bottom: 90px;
}
.services_contentBoxHeader {
  font-size: 22px;
  line-height: 2.0;
  max-width: 1200px;
  margin: 0 auto 27px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 30px;
}
.services_contentBoxHeader::before {
  content: "";
  background: url("./img/servicesHeaderImg.svg") no-repeat;
  background-size: auto 100%;
  display: block;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}
.servicesItem {
  width: 320px;
  margin-right: 32px;
  display: block;
}
.small .servicesItem {
  width: 200px;
  margin-right: 32px;
  display: block;
}
.servicesItemImg {
  overflow: hidden;
  width: 320px;
  height: 289px;
}
.small .servicesItemImg {
  overflow: hidden;
  width: 200px;
  height: 180px;
}
.servicesItemImg img {
  display: inline-block;
  transition: 0.5s;
  width: 100%;
  height: auto;
}
.servicesItem .more {
  position: relative;
  right: 9px;
  bottom: 7px;
  font-size: 12px;
  color: #b0922c;
  text-align: right;
}
.sym_item .more {
  position: relative;
  bottom: 7px;
  font-size: 12px;
  color: #b0922c;
}
.servicesItem .more::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 6px;
  background: url(./img/btn_arrow_gold.svg) no-repeat;
  background-size: 100% auto;
  position: relative;
  top: -2px;
  margin-left: 3px;
}
.servicesItem:hover .servicesItemImg img {
  transform: scale(1.2, 1.2);
}
.servicesItemName {
  font-size: 18px;
  margin: 28px auto 11px;
  text-align: center;
  letter-spacing: 0.05em;
}
.small .servicesItemName {
  font-size: 15px;
  margin-block: 5px 6px;
}
.servicesItemName .smallTxt {
  font-size: 12px;
}
.servicesItem p {
  font-size: 14px;
}
@media screen and (max-width:768px) {
  .servicesIntroBox {
    width: 88%;
    max-width: 625px;
    margin: 0 auto 90px;
  }
  .services_contentBox:last-of-type {
    margin-bottom: 0
  }
  .services_contentBoxHeader {
    margin-bottom: 80px;
    padding-left: 14vw;
    font-size: 19px;
    /*4.47vw*/
  }
  .services_contentBoxHeader::before {
    left: 10px;
    width: 140px;
    height: 140px;
  }
  .servicesItem {
    width: 100%;
    margin: 0 0 26px 0;
    padding: 0 14vw;
  }
  .servicesItemImg {
    margin: 0 auto;
  }
  .servicesItem:hover .servicesItemImg img {
    transform: none;
  }
  .small .servicesItem {
    width: 50%;
    margin-right: 0;
    display: block;
    padding: 0 2vw;
    margin-block-end: 4vw;
  }
  .small .servicesItemImg {
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    height: 25vw;
  }
}
@media screen and (max-width:620px) {
  .services {
    padding: 120px 0 60px;
  }
  .services::after {
    background: url(./img/bg_loop_01_sp.svg) no-repeat center;
    background-size: 100% auto;
    aspect-ratio: 3.8 / 1;
    top: 0;
    opacity: 0.4;
    width: 100%;
  }
  .services_contentBoxHeader {
    font-size: 4.47vw;
    line-height: 1.7;
  }
  .servicesIntroBox>h4 {
    font-size: clamp(18px, 4.5vw, 20px);
    line-height: 1.6;
    margin-bottom: 34px;
  }
  .servicesIntroBox>h4 .smallTxt {
    font-size: 3.73vw;
    margin-bottom: -43px;
    display: block;
  }
  .servicesItemName {
    font-size: clamp(18px, 4.5vw, 20px);
    margin-block: 9px 6px;
  }
  .servicesItemImg {
    overflow: hidden;
    width: 100%;
    height: 37vw;
    display: flex;
    align-items: center;
    border-radius: 7px;
  }
  .services_contentBox {
    margin-bottom: 26px;
  }
}
/* ------------------
  clinic section
------------------ */
.clinic {
  background: #F7F7F7;
}
.clinic.detail {
  background: none;
}
.accessPar,
.equipPar {
  margin-bottom: 30px;
}
.clinic_contentBox.item1 {
  margin-top: 0;
}

/*.webp */
.clinic_contentBox.item1 {
  background: url("./img/clinicImg_01.webp") no-repeat right 21% center;
  background-size: 33% auto;
}
.clinic_contentBox.item2 {
  margin: 90px auto 70px;
}

/*.webp */
.clinic_contentBox.item2 {
  background: url("./img/clinicImg_02.webp") no-repeat right top;
  background-size: 49% auto;
}
.item1 .clinic_contentBox_inner {
  /*width: 50%;
  padding-left: 40px;*/
  width: 50%;
  padding-right: 40px;
  padding-block-start: 12rem;
}
.item2 .clinic_contentBox_inner {
  width: 50%;
  padding-right: 40px;
}

/*.webp */
.clinic_contentBox.item3 {
  background: url("./img/clinicImg_03.webp") no-repeat left 15% top;
  background-size: 40% auto;
}
.item3 .clinic_contentBox_inner {
  width: 50%;
  padding-left: 40px;
}
.clinic_contentBox.item3 {
  margin: 90px auto 70px;
}

/*.webp */
.clinic_contentBox.item4 {
  background: url("./img/clinicImg_04.webp") no-repeat right 15% top;
  background-size: 40% auto;
}
.item4 .clinic_contentBox_inner {
  width: 50%;
  padding-right: 40px;
}
.clinic_contentBox.item4 {
  margin: 90px auto 150px;
}
.clinic_contentBox_inner .txtBox {
  width: 450px;
}
.clinic_contentBox_inner .txtBox>.mb50 {
  margin-bottom: 50px;
}
.equipment {
  background: #7795C1;
  border-radius: 3px;
  color: #fff;
  padding: 0px 6px;
  font-size: 0.9em;
  margin-inline: 0.3em;
  font-weight: 500;
}
.topMeritList {
  padding-inline: 0;
  border-radius: 10px;
  border: solid 2px #d4ddec;
  padding: 24px 10px 15px 25px;
  margin: 0 auto 50px;
}
.topMeritList li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}
.topMeritList li .num {
  background: #4d7abc;
  line-height: 40px;
  display: inline-block;
  border-radius: 60px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.01px;
  margin-right: 1rem;
  text-shadow: 1px 1px 11px #1955b5;
  font-weight: 500;
}
.equip_detailBox {
  padding: 1.5rem 1rem 0rem;
  border-radius: 10px;
  border: solid 2px #d4ddec;
}
.equip_detailBox p {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  .clinic_contentBox.item1 {
    background: url("./img/clinicImg_01_sp.webp?20250313") no-repeat;
    background-size: 65% auto;
    margin-block-start: 20px;
  }
  .clinic_contentBox.item2 {
    background: url("./img/clinicImg_02_sp.webp?20250331") no-repeat right top;
    background-size: 65% auto;
    margin: 9vw auto;
  }
  .clinic_contentBox.item3 {
    background: url("./img/clinicImg_03_sp.webp") no-repeat;
    background-size: 65% auto;
    margin: 9vw auto;
  }
  .clinic_contentBox.item4 {
    background: url("./img/clinicImg_04_sp.webp") no-repeat right top;
    background-size: 65% auto;
    margin: 9vw auto;
  }
  .item1 .clinic_contentBox_inner {
    width: 100%;
    padding: 50vw 5vw 0;
  }
  .item2 .clinic_contentBox_inner {
    width: 100%;
    padding: 50vw 5vw 0;
  }
  .item3 .clinic_contentBox_inner {
    width: 100%;
    padding: 50vw 5vw 0;
  }
  .item4 .clinic_contentBox_inner {
    width: 100%;
    padding: 50vw 5vw 0;
  }
  .clinic_contentBox_inner .txtBox>.mb50 {
    margin-bottom: 0;
  }
  .clinic_contentBox_inner .txtBox {
    width: 100%;
  }
  .topMeritList {
    padding: 24px 0 15px 7.35vw;
  }
  .topMeritList li .num {
    line-height: 7.05vw;
    width: 7.05vw;
    height: 7.05vw;
    margin-right: 0.5em;
  }
  .topMeritList li {
    font-size: 3.52vw;
  }
}
@media screen and (max-width:620px) {
  .topMeritList li {
    font-size: 4vw;
  }
}
@media screen and (max-width: 320px) {
  .topMeritList li {
    font-size: 5vw;
  }
}

/* ---------------------
   symptom box
---------------------- */
.secCover.symptom {
  background: #e9edf2;
  padding-block-end: 3rem;
}
.symptom a.min_linkBtn {
  background: rgb(255 255 255 / 73%);
}
.symptomLinkBox {
  display: flex;
  justify-content: center;
  column-gap: 5%;
  row-gap: 30px;
  flex-wrap: wrap;
  margin-block: 7rem;
  max-width: 620px;
  margin-inline: auto;
}
.sym_item {
  width: 30%;
  border-radius: 8px;
  transition: all .6s ease;
}
.sym_item:hover {
  background: #e9edf2;
}
.sym_cat {
  margin-block: 0.5rem 0.9rem;
  font-size: 18px;
}
.sym_img {
  display: block;
  width: 90%;
  max-width: 160px;
  margin-inline: auto;
}
.sub {
  display: block;
  font-size: 13px;
  font-family: sans-serif;
  letter-spacing: 0.1em;
}
.sym_item .more {
  position: relative;
  bottom: 7px;
  font-size: 12px;
  color: #b0922c;
}
.sym_item .more::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 6px;
  background: url(./img/btn_arrow_gold.svg) no-repeat;
  background-size: 100% auto;
  position: relative;
  top: -2px;
  margin-left: 3px;
}
@media screen and (max-width:620px) {
  .symptomLinkBox {
    column-gap: 2vw;
  }
  .sym_cat {
    margin-block: 0.5rem 0.9rem;
    font-size: clamp(13px, 3.29vw, 15px);
  }
  .sub {
    display: none;
  }
  .sym_item .more {
    font-size: 11px;
  }
}
.topBnr_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.topBnr_inner::before {
  content: "";
  display: block;
  position: absolute;
  background: #3D5872;
  height: 1px;
  width: 250px;
  top: -90px;
}
.topBnr_inner a {
  width: 350px;
}
.topBnr_inner a img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.topBnr_inner a:nth-child(n+2) {
  margin-left: 30px;
}
@media screen and (max-width:620px) {
  .topBnr_inner::before {
    content: "";
    display: block;
    position: absolute;
    background: #3D5872;
    height: 1px;
    width: 40%;
    top: -90px;
  }
  .topBnr_inner {
    flex-direction: column;
    align-items: center;
    margin-block-start: 30vw;
  }
  .topBnr_inner a {
    width: 85%;
  }
  .topBnr_inner a:nth-child(n+2) {
    margin-left: 0;
    margin-top: 30px;
  }
}
/* ------------------
  thanks page
------------------ */
.common_header_section {
  height: 150px;
  background: url(./img/thanks_header.jpg);
  background-size: cover;
}
.thanks_contentBox {
  width: 700px;
  margin: 50px auto;
}
.box_inquire {
  margin-top: 50px;
}
.h_actionArea.thanksPage {
  bottom: unset;
  top: 41px;
}
.btnCover {
  background: #fff;
  display: inline-block;
  padding: 8px;
  border-radius: 100vh;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  margin-bottom: 5px;
}
.btnCover>.h_actionArea_tel {
  pointer-events: auto;
}
.btnBox {
  margin: 0 auto 70px;
  text-align: center;
}
.min_linkBtn {
  /* styles only top page */
  border-radius: 100vh;
  display: inline-block;
  padding: 12px 64px;
  border: 1px solid #b0922a;
  color: #b0922a;
  font-size: 17px;
  line-height: 3.0;
  margin-right: 30px;
  letter-spacing: 0.1em;
}
.tiktokSec.secCover {
  padding: 50px 0;
}
.tiktokTtl {
  text-align: center;
}
.tiktokTtl img {
  max-width: 300px;
  display: inline-block;
  margin-block-end: 3rem;
}
.tiktokTtl p {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.top_tiktokSlider_item.slick-slide {
  max-width: 300px;
  padding: 20px;
}
.top_tiktokSlider_item.slick-slide a {
  display: block;
}
.top_tiktokSlider_item.slick-slide a img {
  display: block;
  width: 100%;
}
@media screen and (max-width:850px) {
  .top_tiktokSlider_item.slick-slide .openModal.tiktokThumbs {
    width: 100%;
  }
}
@media screen and (max-width:620px) {
  .thanks_contentBox {
    width: 100%;
  }
  .h_actionArea.thanksPage {
    display: none;
  }
  .btnCover {
    width: 60%;
    margin: 30px auto;
  }
  .btnCover>.h_actionArea_tel {
    width: 100%;
    margin: 0 auto;
    border-radius: 100vh;
    background: #fff;
  }
  .btnBox {
    margin: 0 auto;
    text-align: center;
  }
  .contact .btnBox {
    margin: 0 auto 2rem;
  }
  .min_linkBtn {
    /* styles only top page */
    margin-right: 0;
    margin-bottom: 25px;
    font-size: 15px;
    padding: 10px 30px;
    min-width: 250px;
    text-align: center;
  }
  .tiktokTtl img {
    max-width: 200px;
    display: inline-block;
    margin-block-end: 3rem;
  }
  .tiktokTtl p {
    padding: 0 2vw;
  }

}
@media screen and (max-width: 320px) {
  .min_linkBtn {
    font-size: 4.2vw;
  }
}