@charset "UTF-8";

/*
 * ======================
 * ページ単位で既存スタイルを上書きする
*/
/* body.page-faga div.main_container div.main_inner{
  width: calc(100% - 40px);
  max-width: 1024px;
} */
body.page-faga div.main_container div.main_inner div.left_container{
  width: 100%;
  float: revert;
}
body.page-faga div.left_container div.contact_area{
  width: 100%;
  padding: revert;
  padding-block: 124px;
}
body.page-faga #page_title div.conts_head{
  width: 100%;
}
body.page-faga #page_title div.conts_head h1{
  width: revert;
}
body.page-faga #page_title div.conts_head ol.pankuz_list{
  margin-inline: auto;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img{
  max-width: 100%;
}


/*
 * ======================
 * FAGA独自変数
*/
body.page-faga{
  --main-color: #df8787;
  --main-color: #f2789f;
  --main-color-lighter: #fff5f5;
  --main-color-lighter: #fdf2f6;
}


/*
 * ======================
 * FAGA独自スタイル
 * レイアウト
*/
body.page-faga{
  container-type: inline-size;
}

.faga-section{
  margin-inline: calc(50% - 50cqi);
  padding-block: 120px;
  padding-inline: calc(50cqi - 50%);
}
.faga-section.--bg-pink{
  background-color: var(--main-color-lighter);
}
.faga-section.--bg-cta{
  background-color: #fff;
  background-image: url('../images/faga/cta-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.faga-section:not(.--bg-pink, .--bg-cta) + .faga-section:not(.--bg-pink, .--bg-cta){
  padding-top: revert;
}
.faga-section:last-of-type{
  padding-bottom: 0;
}


.faga-h3-list{
  margin-top: 56px;
  counter-reset: list-index;
}
.faga-h3-list[data-type="cause"]{
  --h3-label-txt: 'cause';
}
.faga-h3-list[data-type="symptoms"]{
  --h3-label-txt: 'symptoms';
}
.faga-h3-list[data-type="difference"]{
  --h3-label-txt: 'difference';
}
.faga-h3-list[data-type="treatment"]{
  --h3-label-txt: 'treatment';
}

.faga-h3-list__item{
  counter-increment: list-index;
}

.faga-h3-list__item + .faga-h3-list__item{
  margin-top: 52px;
}

.faga-h3-list__item > *+*{
  margin-top: 18px;
}

.faga-image-center{
  text-align: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

/*
 * ======================
 * FAGA独自スタイル
 * テキスト類
*/
.faga-h1{
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
}


.faga-ttl-h2{
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 28px;
  text-align: center;
}
.faga-ttl-h2__tag{
  max-width: 324px;
  margin-inline: auto;
  margin-bottom: 8px;
}

.faga-ttl-h2__tag img{
  max-width: 100%;
}


.faga-ttl-h2__main{
  margin-block: calc((1em - 1lh) / 2);
  color: var(--main-color);
  font-size: 30px;
  font-weight: bold;
  line-height: 1.35;
}


.faga-ttl-h3{
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 18px;
  align-items: center;
}

.faga-ttl-h3__label{
  z-index: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.faga-ttl-h3__label:before, .faga-ttl-h3__label:after{
  color: var(--main-color);
  line-height: 1;
  font-weight: bold;
}
.faga-ttl-h3__label:before{
  /* en text */
  content: var(--h3-label-txt);
  font-size: 12px;
}
.faga-ttl-h3__label:after{
  /* counter */
  content: counter(list-index);
  font-size: 20px;
}

.faga-ttl-h3__label .__shape{
  position: absolute;
  inset: 0;
  margin: auto;
  content: '';
}
.faga-ttl-h3__label .__shape:before{
  /* triangle */
  z-index: -1;
  position: absolute;
  bottom: -5px;
  right: 2px;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(
    135deg,
    transparent 0%,
    transparent 50%,
    #fbe1ea 50%,
    #fbe1ea 100%
  );
}
.faga-ttl-h3__label .__shape:after{
  /* border */
  z-index: -1;
  position: absolute;
  bottom: 0px;
  right: -3px;
  width: 100%;
  height: 100%;
  content: '';
  border-color: var(--main-color);
  border-style: solid;
  border-width: 0px 1px 1px 0px;
}


.faga-ttl-h3__text{
  font-size: 18px;
  font-weight: bold;
}


.faga-text{
  font-size: 16px;
  line-height: calc(26 / 16);
}


.faga-pattern-list{
  margin-top: 52px;
}
.faga-pattern-list > *+*{
  margin-top: 40px;
}

.pattern-card{
  display: grid;
  grid-template-columns: 1fr calc(100% * 364 / 1024);
  column-gap: 40px;
  width: 100%;
  height: auto;
  padding: 40px;
  border-radius: 30px;
}
.pattern-card:nth-child(1){ background-color: #fdf2f6; }
.pattern-card:nth-child(2){ background-color: #f7e5eb; }
.pattern-card:nth-child(3){ background-color: #f0d4dd; }

.pattern-card__contents{
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  row-gap: 16px;
  padding-top: 20px;
}

.pattern-card__label{
  width: fit-content;
  min-width: 160px;
  padding-block: 6px;
  padding-inline: 24px;
  border-radius: 9999px;
  background-color: var(--main-color);
  text-align: center;
  color: #fff;
  line-height: 1;
}

.pattern-card__ttl{
  font-size: 18px;
}

.pattern-card__visual{
  display: grid;
  place-items: center;
  width: 100%;
  padding: 32px;
  background-color: #fff;
}



.faga-cta{
  background-color: #fff;
  padding-block: 56px;
}

.faga-cta__inner{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  width: 100%;
  max-width: 712px;
  margin-inline: auto;
}

.faga-cta__copy{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 18px;
  align-items: center;
}
.faga-cta__copy >*{
  white-space: nowrap;
  font-size: 22px;
  font-weight: bold;
}
.faga-cta__copy:before,
.faga-cta__copy:after{
  display: block;
  width: 100%;
  height: 2px;
  content: '';
  background-color: currentColor;
}

.faga-cta__buttonflex{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  align-items: center;
}

.faga-cta__tel{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 48px;
  margin-top: 16px;
}
.faga-cta__tel .__tel{
  flex-grow: 1;
}
.faga-cta__tel .__hosoku{
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.faga-cta__tel .__hosoku > *:nth-child(1){
  font-size: 20px;
  line-height: 1;
}
.faga-cta__tel .__hosoku > *:nth-child(2){
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
}



a.cta-button{
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 9999px;
  background-color: var(--_active_color);
  outline: 1px solid transparent;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    outline 0.3s ease,
    color 0.3s ease
  ;
}
a.cta-button:hover{
  background-color: #fff;
  outline: 1px solid var(--_active_color);
  color: var(--_active_color);
}
.cta-button.--button-web{--_active_color: var(--main-color);}
.cta-button.--button-line{--_active_color: #66bf58;}




.faga-h4-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(380px, 100%), 1fr));
  gap: 32px;
  width: 100%;
  max-width: 870px;
  margin-inline: auto;
}

.faga-h4-list__item{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  border: 1px solid var(--main-color);
}

.faga-h4-list__item-image{
  width: 100%;
}

.faga-h4-list__item-ttl{
  width: 100%;
  padding: 16px;
  background-color: var(--main-color);
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.faga-h4-list__item-inner{
  padding: 28px;
  background-color: #fff;
}


.faga-faq-list{
  margin-top: 56px;
}
.faga-faq-list > *+*{
  margin-top: 16px;
}

.faga-faq-item{}

.faga-faq-item__body{
  padding-block: var(--_pb);
  padding-inline: 40px;
}
.faga-faq-item__body.--question{
  --_pb: 20px;
  background-color: var(--main-color);
}
.faga-faq-item__body.--answer{
  --_pb: 32px;
}

.faga-faq-item__label{
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 20px;
}
.faga-faq-item__label > *:nth-child(2){
  /* アイコンとテキスト。擬似的に中央揃えに見せる */
  padding-top: 6px;
}

.faga-faq-item__label-round{
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}
.faga-faq-item__label-round:before{
  content: var(--_text);
  color: currentColor;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}
.--question .faga-faq-item__label-round{
  --_text: 'Q';
  background-color: #fff;
  color: var(--main-color);
}
.--answer .faga-faq-item__label-round{
  --_text: 'A';
  background-color: var(--main-color);
  color: #fff;
}

.faga-faq-item__label-ttl{
  /* Q側だけ */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}


.faga-ttl-simple-h3{
  margin-top: 56px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.faga-flow{}

.faga-flow__list{
  --_row-gap: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--_row-gap);
  width: 100%;
  max-width: 766px;
  margin-inline: auto;
}

.faga-flow-item{
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  column-gap: 32px;
  padding-block: 28px;
  padding-inline: 32px;
  background-color: var(--main-color-lighter);
}

.faga-flow-item + .faga-flow-item:before{
  position: absolute;
  bottom: calc(100% + (var(--_row-gap) / 2));
  left: 50%;
  transform: translate(-50%, 45%);
  width: 18px;
  height: 16px;
  content: '';
  border-top: 16px solid var(--main-color);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

.faga-flow-item__image{
  width: 100%;
  text-align: center;
}

.faga-flow-item__contents{}

.faga-flow-item__ttl{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4px;
}
.faga-flow-item__ttl .__label{
  color: var(--main-color);
  font-size: 12px;
}
.faga-flow-item__ttl .__hr{
  width: 100%;
  max-width: 422px;
  margin-block: 0;
  border-top-color: currentColor;
}

.faga-flow-item .faga-cta__buttonflex{
  grid-template-columns: repeat(2, 160px);
  column-gap: 14px;
  margin-top: 16px;
}
.faga-flow-item .faga-cta__tel{
  justify-content: start;
  column-gap: 20px;
}
.faga-flow-item .faga-cta__tel .__tel{
  flex-grow: revert;
}
.faga-flow-item .faga-cta__tel .__hosoku{
  row-gap: 2px;
}
.faga-flow-item .faga-cta__tel .__hosoku > *:nth-child(1){
  font-size: 11px;
}
.faga-flow-item .faga-cta__tel .__hosoku > *:nth-child(2){
  font-size: 13px;
}
.faga-flow-item .cta-button{
  padding-block: 12px;
  font-size: 16px;
}

.faga-flow-item__tel{}



.faga-price-table-wrapper{}

.faga-price-table-scroll{}

.faga-price-table{
  width: 100%;
  border: 1px solid #e37497;
}
.faga-price-table th, .faga-price-table td{
  min-width: 200px;
  padding-block: 1em;
  padding-inline: 26px;
  border: 1px solid #e37497;
  vertical-align: middle;
}
.faga-price-table tr > *:not(:first-child){
  text-align: center;
}

.faga-price-table th{
  background-color: #f7a1bc;
  color: #fff;
}
.faga-price-table thead th{
  padding-block: 1em;
  font-size: 18px;
  font-weight: bold;
}
.faga-price-table tbody th:first-child{
  white-space: nowrap;
}

.faga-price-table small{
  display: inline-block;
  font-size: calc(1em * 13 / 16);
}
.faga-price-table ul{
  width: fit-content;
  text-align: left;
  margin-inline: auto;
}
.faga-price-table li{
  list-style: inside disc;
  white-space: nowrap;
}



.faga-doctor{
  width: 100%;
  padding-block: 80px;
  padding-inline: 32px;
  background-color: var(--main-color-lighter);
}

.faga-doctor__inner{
  --_photo-width: 150px;
  display: grid;
  grid-template-columns: var(--_photo-width) 1fr;
  row-gap: 72px;
  column-gap: 40px;
  width: 100%;
  max-width: 762px;
  margin-inline: auto;
}

.faga-doctor__photo{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.faga-doctor__head{
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  row-gap: 4px;
}

.faga-doctor__head-label{
  font-size: 20px;
  font-weight: bold;
}

.faga-doctor__head-ttl{
  font-size: 36px;
  font-weight: bold;
}

.faga-doctor__bio{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 0;
  width: 100%;
  background-color: #fff;
}

.faga-doctor__bio-label{
  width: fit-content;
  min-width: var(--_photo-width);
  height: auto;
  padding-block: calc(1em * 14 / 18);
  padding-inline: calc(1em * 62 / 18);
  background-color: var(--main-color);
  border-bottom-right-radius: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.faga-doctor__bio-contents{
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: calc(100% * 90 / 762);
  padding-inline: 50px;
  padding-bottom: 72px;
}

.faga-doctor-bio-item{
  font-weight: 500;
}
.faga-doctor-bio-item + .faga-doctor-bio-item{
  margin-top: 0.25em;
}
.faga-doctor-bio-item a{
  color: var(--main-color);
  font-weight: bold;
}
.faga-doctor-bio-item a:hover{
  text-decoration: underline;
}
