@charset "utf-8";

/* =========================

  base

=========================*/
:root {
  /*color*/
  --fontcolor: #50434F;
  --maincolor: #BFA2BD;
  --subcolor: #817180;
  --accentcolor: #AF32AF;
  --beige: #E3DFE3;
  --font: "Zen Maru Gothic", sans-serif, "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  --yugo: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --container-max: 1450px;
}
.subpage h2 {
  margin: 60px 0 20px;
}
.subpage h3 {
  font-size: 1.2em;
  position: relative;
  margin: 40px auto 15px;
  padding-left: 38px;
}
.subpage h3::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 100vw;
  background-color: var(--beige);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ttl_deco {
  color: var(--accentcolor);
  font-size: 1.25em;
  font-weight: bold;
}
.ttl_deco::before {
  background-color: var(--accentcolor);
  border-radius: 5px;
  content: "";
  display: inline-block;
  height: 40px;
  margin-right: 20px; 
  vertical-align: middle;
  width: 8px;
}
@media screen and (max-width:750px) {
  .subpage h3 {
    padding-left: 32px;
  }
  .subpage h3::before {
    width: 18px;
    height: 18px;
  }
}

/* =========================
  kv
=========================*/
.sub__kv {
  background-color: var(--maincolor);
}
.sub__kv__inner {
  width: 1450px;
  margin: auto;
  padding: 58px 0;
}
.subpage__kv__ttl {
  color: #F6F2F5;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}
.subpage__kv__ttl .ttl__area {
  display: flex;
  align-items: center;
  word-wrap: break-word;
}
.subpage__kv__ttl .ttl {
  font-size: 3.4em;
  line-height: 1em;
  margin-left: 50px;
  letter-spacing: 0.15em;
}
.subpage__kv__ttl .subttl {
  font-size: 0.5em;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (max-width:1450px) {
  .sub__kv__inner {
    width: 92%;
  }
}
@media screen and (max-width:950px) {
  .sub__kv__inner {
    padding: 40px 0;
  }
  .subpage__kv__ttl .ttl {
    margin: 0 0 0 10px;
  }
  .subpage__kv__ttl .subttl {
    font-size: 0.45em;
  }
}
@media screen and (max-width:750px) {
  .subpage__kv__ttl .ttl {
    font-size: 35px;
  }
}

/* =========================
  breadcrumbs
=========================*/
.breadcrumbs {
  width: 100%;
  font-size: 0.9em;
  background-color: #F0F0F0;
}
.breadcrumbs_inner {
  width: 1450px;
  margin: auto;
  padding: 20px 0;
}
.breadcrumbs_inner a {
  color: var(--fontcolor);
}
@media screen and (max-width:1450px) {
  .breadcrumbs_inner {
    width: 92%;
  }
}

/* =========================
  contents
=========================*/
.main__contents.subpage {
  margin-top: 125px;
}
@media screen and (max-width:990px) {
  .main__contents.subpage {
      margin-top: 135px;
  }
}
@media screen and (max-width:750px) {
  .main__contents.subpage {
      margin-top: 90px;
  }
}
.subpage .section__contents {
  margin: 60px auto;
}
.subpage .section__contents p {
  margin-bottom: 25px;
}
.subpage .section__contents p:last-child {
  margin-bottom: 0;
}
.wp-block-list li::before {
  content: "・";
  font-weight: bold;
}
/* txt__img */
.subpage .txt__img {
  align-items: flex-start;
}
.subpage .txt__img .txt__area {
  width: 56%;
}
.subpage .txt__img .img__area {
  width: 38%;
}
.wp-block-media-text {
  margin-bottom: 60px;
}
@media screen and (max-width:990px) {
  .subpage .txt__img .txt__area {
    width: 100%;
  }
}
@media screen and (max-width:750px) {
  .subpage .section__contents {
    margin: 50px auto 100px;
  }
  .subpage .section__contents p {
    margin-bottom: 15px;
  }
  .subpage .txt__img .img__area {
    width: 100%;
    margin: 10% auto 0;
  }
  .wp-block-media-text__content {
    padding: 0 !important;
    margin-top: 30px;
  }
}

/* =========================
  ttl
=========================*/
.subpage .section__ttl {
  padding: 0;
  margin-bottom: 20px;
}
.subpage .section__ttl .subttl {
  font-size: 0.95em;
  font-weight: bold;
  margin-left: 20px;
}
.subpage .section__contents .h3 {
  padding-bottom: 30px;
  margin-bottom: 50px;
}

@media screen and (max-width:750px) {
  .subpage .section__ttl {
    display: block;
    text-align: left;
    padding: 0;
    margin-bottom: 50px;
  }
  .subpage .section__ttl .subttl {
    margin: 8px 0 0 4px;
    display: block;
  }
  .subpage .section__contents h2 {
    font-size: 22px;
    padding-left: 48px;
    margin: 50px auto 20px;
  }
  .subpage .section__contents .h3 {
    padding-bottom: 25px;
    margin-bottom: 40px;
  }
}

/* =========================

  about

=========================*/
#about .wp-block-media-text>.wp-block-media-text__media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* =========================

  interview

=========================*/
.panel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.panel li {
  width: calc((100% / 3) - 2rem);
  border-radius: 20px;
  box-shadow: 0px 0px 6px 0px rgba(105, 80, 105, .38);
}
.panel li a {
  height: calc(100% - 40px);
  padding: 20px;
  display: block;
}
.panel li .thumbnail {
  aspect-ratio: 448 / 250;
}
.panel li .panel__ttl {
  margin-top: 15px;
}
.panel li .tag,
#interview_post .tag {
  font-size: 14px;
  line-height: 1.4em;
  padding: 4px 20px;
  margin: 15px 10px 0 0;
}
.panel li .category_txt {
  color: #BDA8D3;
  margin-right: 10px;
}
.panel li .tag:last-child,
.panel li .category_txt:last-child {
  margin-right: 0;
}
#interview_post .post_contents .qa_area img {
  width: auto;
  margin: auto;
}
#interview_post .img_area {
  width: 800px;
  height: 800px;
  /* border-radius: 100vw; */
}
#interview_post .img_area img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 100vw;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .03);
}
#interview_post .profile {
  position: relative;
  margin-bottom: 270px;
}
#interview_post .profile_area {
  position: absolute;
  width: 45%;
  bottom: -140px;
  right: 50px;
}
#interview_post .doctor_profile {
  padding: 50px;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
#interview_post dl.profile_group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}
#interview_post dt.profile_term,
#interview_post dd.profile_description {
  border-bottom: 1px solid var(--beige);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#interview_post dt.profile_term {
  width: 25%;
  color: var(--subcolor);
  font-weight: bold;
}
#interview_post dd.profile_description {
  width: calc(75% - 20px);
  padding-left: 20px;
}
#interview_post .doctor_name {
  margin-bottom: 60px;
}
#interview_post .name_jp {
  font-size: 34px;
  line-height: 1.4em;
  margin-bottom: 15px;
}
#interview_post .name_jp span {
  font-size: 1.6em;
  margin-right: 3px;
}
#interview_post .name_en {
  font-size: 1.3em;
}
#interview_post span.term_sub {
  display: block;
  font-size: 12px;
  line-height: 1.4em;
}
#interview_post .doctor_message_box {
  padding: 55px 50px;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  margin-top: 100px;
}
#interview_post .doctor_message_box h2 {
  margin: 0 0 40px;
}
#interview_post .writing_box {
  margin-top: 60px;
  background-color: transparent;
  /* padding: 1.5rem; */
}
#interview_post .writing_box h2 {
  font-size: 1.6em;
  padding-left: 0;
  margin: 0 0 20px;
}
#interview_post .writing_box h2::before {
  content: none;
}
#interview_post .other_gallery {
  margin: 0 0 60px;
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}
#interview_post .other_gallery img {
  width: 48%;
  aspect-ratio: 3 / 2;
}


/* 回り込み（左） */
.alignleft,
.wp-block-image.alignleft,
figure.alignleft {
  float: left;
  margin-right: 2rem !important;
}
/* 回り込み（右） */
.alignright,
.wp-block-image.alignright,
figure.alignright {
  float: right;
  margin-left: 2rem !important;
}
/* 中央寄せ（回り込み解除） */
.aligncenter,
.wp-block-image.aligncenter,
figure.aligncenter {
  display: block;
  margin: 1rem auto;
  float: none;
  clear: both;
}
.wp-caption,
figure.wp-caption {
  max-width: 100%;
  text-align: center;
  font-size: 0.92rem;
  color: #555;
}
.entry-content::after,
.post-content::after {
  content: "";
  display: table;
  clear: both;
}
.qa_item {
  display: flow-root;
}
.entry-content,
.post-content {
  display: block;
}

@media screen and (max-width:1100px) {
  #interview_post .profile_area {
    position: unset;
    width: 100%;
    margin-top: 50px;
  }
  #interview_post .img_area {
    width: 600px;
    height: 600px;
    margin: auto;
  }
  #interview_post .profile {
    margin-bottom: 60px;
  }
}

@media screen and (max-width:950px) {
  .panel {
    gap: 0.5rem;
  }
  .panel li {
    width: calc((100% / 2) - 0.5rem);
    margin-bottom: 0.5rem;
  }
  .panel li a {
    padding: 0;
  }
  .panel li .thumbnail img {
    border-radius: 10px 10px 0 0;
  }
  .panel li .panel__ttl {
    margin-top: 0;
    padding: 12px 15px;
  }
  #interview_post .img_area {
    width: 350px;
    height: 350px;
  }
  #interview_post .doctor_name {
    margin-bottom: 40px;
  }
  #interview_post .name_jp {
    font-size: 24px;
  }
  #interview_post .doctor_profile {
    padding: 30px;
  }
  #interview_post .post_contents .qa_area img {
    width: 100%;
    margin: 0 0 1rem !important;
  }
  #interview_post .doctor_message_box {
    margin-top: 80px;
    padding: 30px;
  }
  #interview_post .doctor_message_box h2 {
    margin: 0 0 30px;
  }
  #interview_post .writing_box {
    margin-top: 30px;
  }
  #interview_post .writing_box h2 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .alignleft,
  .alignright,
  .wp-block-image.alignleft,
  .wp-block-image.alignright,
  figure.alignleft,
  figure.alignright {
    float: none;
    display: block;
    margin: 0 auto 1rem;
  }
  #interview_post .other_gallery {
    margin: 0;
    flex-flow: column;
  }
  #interview_post .other_gallery img {
    width: 100%;
  }
}

/* =========================

  news,blog,interview

=========================*/
.post_contents .post_ttl {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 40px;
}
.post_contents .tag,
#interview_post .tag {
  margin: 0 10px 20px 0;
}
.post_contents .post_ttl h2 {
  line-height: 1.4em;
  margin: 0;
  padding: 0;
}
.post_contents .post_ttl h2::before {
  content: none;
}
.post_contents .date {
  color: var(--accentcolor);
  font-size: 15px;
  margin-bottom: 40px;
}
.post_contents p,
.post_contents img {
  margin-bottom: 25px;
}
h4.wp-block-heading {
  font-size: 1.15rem;
  position: relative;
  padding-left: 14px;
  border-left: 6px solid var(--accentcolor);
  margin: 25px 0;
}
#interview_list {
  margin-top: 0;
}
#interview_list .interviewer {
  display: flex;
  gap: 2rem;
}
#interview_list .interviewer li {
  width: calc(100% / 4 - 50px);
  padding: 25px;
  border-radius: 1vw;
  background-color: #EEE9EE;
}
#interview_list .interviewer li p {
  margin-bottom: 15px;
}
#interview_list .interviewer li p:last-child {
  margin-bottom: 0;
}
#interview_list .interviewer li .name {
  font-size: 1.2em;
}
#interview_list .interviewer li .interview {
  color: #FFFFFF;
  font-size: 0.9rem;
  background-color: var(--maincolor);
  padding: 6px 25px;
  border-radius: 100vw;
}
@media screen and (max-width:1100px) {
  #interview_list .interviewer {
    flex-wrap: wrap;
  }
  #interview_list .interviewer li {
    width: calc(100% / 2 - 50px);
  }
}
@media screen and (max-width:750px) {
    #interview_list .interviewer li {
    width: 100%;
  }
}

/* =========================

  404

=========================*/
#error404 h2 {
  color: var(--accentcolor);
  font-size: 5em;
  line-height: 1.4em;
  font-weight: bold;
  justify-content: center;
  padding: 0;
}
#error404 h3 {
  font-size: 2em;
  line-height: 1.4em;
  margin: 30px 0;
  padding: 0;
}
#error404 h2::before,
#error404 h3::before {
  content: none;
}
#error404 .section__contents__inner {
  text-align: center;
}

/* ------------------------
  list
------------------------*/
ul.wp-block-list,
ul.list,
.qa_item ul {
  /* display: inline-block; */
  margin: 15px auto 30px;
}
ul.wp-block-list li, ul.list li, .qa_item ul li, .qualification_list li {
  text-indent: -20px;
  padding-left: 25px;
  margin-bottom: 5px;
}
ul.wp-block-list li:before, ul.list li:before, .qa_item ul li:before, .qualification_list li::before {
  content: "●";
  color: var(--fontcolor);
  font-size: 8px;
  margin-right: 8px;
  vertical-align: bottom;
}
.qualification_list li {
  line-height: 1.4em;
  margin-bottom: 8px;
}
.qualification_list li::before {
  color: var(--beige);
  font-size: 12px;
  margin-right: 4px;
}
ol.wp-block-list {
  list-style-type: decimal;
  padding-left: 24px;
}
ol.wp-block-list li {
  margin-bottom: 16px;
}
ol.wp-block-list li::marker {
  color: var(--fontcolor);
  font-size: 1.1em;
  font-weight: 600;
}
ol.wp-block-list li > ul {
  margin-top: 0;
}
ol.wp-block-list li > ul li {
  margin-bottom: 0px;
}
@media screen and (max-width:750px) {
  ul.wp-block-list li {
    margin-bottom: 8px;
  }
}

/* =========================

  page navi

=========================*/
.wp-pagenavi {
  text-align: center;
  margin-top: 60px
}
.wp-pagenavi a, .wp-pagenavi span {
	color: var(--accentcolor);
	background-color: #FFFFFF;
	padding: 15px 24px;
	margin: 0 5px;
	white-space: nowrap;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
	border: 1px solid var(--accentcolor);
  border-radius: 5px;
}
.wp-pagenavi a:hover{
	color: #FFFFFF;
	background-color: var(--accentcolor);
}
.wp-pagenavi span.current {
	color: #FFFFFF;
	background-color: var(--accentcolor);
}
.wp-pagenavi span.pages,
.wp-pagenavi a.last, .wp-pagenavi a.first {
  border-radius: 4px;
}
.page_back_next {
  margin: 100px auto;
  overflow: hidden;
  clear: both;
}
.page_back_next .page_back_next_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_back_next .page_back_next_inner li {
  margin-right: 30px;
}
.page_back_next .page_back_next_inner li:last-child {
  margin-right: 0;
}
.page_back_next .back a,
.page_back_next .next a {
  color: var(--accentcolor);
  font-weight: bold;
  display: block;
  padding: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100vh;
  border: 1px solid var(--accentcolor);
}
.page_back_next .back a:hover,
.page_back_next .next a:hover {
  color: #FFFFFF;
  background-color: var(--accentcolor);
  opacity: 1.0;
}
.page_back_next .page_back_next_inner .btn_wrap {
  margin-top: 0;
}
.page_back_next .page_back_next_inner .btn_wrap .btn a {
  border: 1px solid var(--accentcolor);
  font-weight: normal;
}
@media screen and (max-width:750px) {
  .wp-pagenavi span.pages,.wp-pagenavi a.first,
  .wp-pagenavi a.last {
    display: none;
  }
  .wp-pagenavi a, .wp-pagenavi span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
  }
  .page_back_next {
    margin: 20px auto;
  }
  .page_back_next .back a,
  .page_back_next .next a {
    line-height: 2em;
  }
}

/* =========================

  other

=========================*/
.photo, .col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.photo li, .col2 .col2__item {
  width: 48%;
  margin-bottom: 30px;
}
.photo {
  align-items: normal;
}
.photo p {
  text-align: center;
}
.col2 .col2__item {
  text-align: left;
}
@media screen and (max-width:750px) {
  .col2 {
    display: block;
  }
  .col2 .col2__item {
    width: 100%;
  }
}
