@charset "utf-8";
#mv {
  padding: 100px 3vw;  
	background: url("../images/common/contents_mv.jpg") 0 50% no-repeat;
  background-size: cover;
}
#mv h2 {
/*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
  font-size: 3.8rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}
#breadcrumbs {
  padding: 15px 3vw;
  display: flex;
  background: var(--sub-color2);
}
#breadcrumbs > li {
  margin-right: 12px;
  padding-left: 20px;
  font-size: 1.3rem;
  position: relative;
}
#breadcrumbs > li::before {
  content: "＞";
  font-size: 1rem;
  font-weight: 700;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#breadcrumbs > li:nth-child(1) {
  padding-left: 0;
}
#breadcrumbs > li:nth-child(1)::before {
  display: none;
}
#breadcrumbs > li a {
  color: #000;
}
#contents {
  padding: 50px 3vw;
}
@media screen and (max-width:1000px) {
  #mv {
    padding: 50px 20px;  
  }
  #mv h2 {
  /*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
    font-size: 3.2rem;
  }
  #breadcrumbs {
    padding: 10px 20px;
    display: flex;
    background: var(--sub-color2);
  }
  #breadcrumbs > li {
    font-size: 1.2rem;
  }
  #contents {
    padding: 30px 20px;
  }
}

/***** メニュー *****/
#sub_menu {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sub_menu > li {
  width: 32%;
}
#sub_menu > li a {
  padding: 20px 0;
  font-weight: 500;
  font-family: var(--ttl-font);
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  color: #fff;
  background: var(--base-color);
  border: var(--base-color) 2px solid;
  transition: 0.5s;
  border-radius: 5px;
}
#sub_menu > li a:hover {
  background: var(--hover-color1);
  border: var(--hover-color1) 2px solid;
}
#sub_menu > li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: 0.2s;
}
#sub_menu > li a:hover::before {
  right: 9px;  
}
#sub_menu > li a::after {
  content: '';
  width: 7px;
  height: 7px;
  border: #fff 2px solid;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 10px;
  box-sizing: border-box;
  transition: 0.2s;
}
#sub_menu > li a:hover::after {
  right: 8px;  
}
#sub_menu > li.focus a {
  color: var(--base-color);
  background: #fff;
}
#sub_menu > li.focus a:hover {
  border: var(--base-color) 2px solid;
}
#sub_menu > li.focus a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: var(--base-color);
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: 0.2s;
}
#sub_menu > li.focus a::after {
  content: '';
  width: 7px;
  height: 7px;
  border: var(--base-color) 2px solid;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 10px;
  box-sizing: border-box;
  transition: 0.2s;
}
@media screen and (max-width:1000px) {
  #sub_menu {
    margin-bottom: 20px;
    display: block;
  }
  #sub_menu > li {
    width: 100%;
    margin-bottom: 5px;
  }
  #sub_menu > li a {
    padding: 10px 0;
    font-weight: 500;
  }
}

/***** under *****/
#under {
  margin: 100px 0 200px 100px;
}
@media screen and (max-width:1000px) {
  #under {
    margin: 50px 0 100px;
    text-align: center;
  }
}

/***** 見出し *****/
.ttl {
  margin: 40px 0;
  padding-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  position: relative;
}
#contents > .ttl:first-child {
  margin-top: 0;
}
.ttl::before {
  content: "";
  width: 1em;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--base-color);
  z-index: 1;
}
.ttl::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--sub-color2);
  position: absolute;
  left: 0;
  bottom: 0;
}
.sub_ttl {
  margin: 30px 0 20px;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.caption {
  margin: 25px 0 15px;
  padding-left: 12px;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  border-left: var(--base-color) 4px solid;
}
@media screen and (max-width:1000px) {
  .ttl {
    margin: 30px 0 25px;
    padding-bottom: 15px;
    font-size: 2.5rem;
  }
  .sub_ttl {
    margin: 20px 0 15px;
    font-size: 2.1rem;
  }
}

/***** figure *****/
.figure {
  margin-top: 20px;
  margin-bottom: 20px;
}
.figure img {
  width: 100%;
}
.figure figcaption {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.figure figcaption:first-child {
  margin-top: 0;
}
.figure figcaption:last-child {
  margin-bottom: 0;
}
.fig_mid {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.flex_box {
  display: flex;
  justify-content: space-between;
}
.flex_box > figure {
  width: 40%;
  margin-left: 5%;
  order: 2;
  border-radius: 10px;
}
.flex_box > figure img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width:1000px) {
  .fig_mid {
    width: 100%;
  }  
  .flex_box {
    display: block;
  }
  .flex_box > figure {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .flex_box > figure img {
    width: 100%;
    border-radius: 10px;
  }
}

/***** table *****/
.organs_tb {
  width: 100%;
}
.organs_tb th {
  padding: 15px;
  text-align: center;
  color: #fff;
  background: var(--base-color);
  border: #ddd 1px solid;
}
.organs_tb td {
  padding: 15px;
  background: #fff;
  border: #ddd 1px solid;
}
.organs_tb tr td:nth-child(1) {
  width: 20%;
  font-weight: 700;
  text-align: center;
  background: #f5f5f5;
}
@media screen and (max-width:1000px) {
  .organs_tb th {
    padding: 5px;
  }
  .organs_tb td {
    padding: 5px;
  }
}

/***** faq *****/
.faq_box {
  margin-bottom: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
}
.faq_box dl {
  display: flex;
}
.faq_box dl dt {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.faq_box dl dd {
  flex: 1;
}
.faq_q dt {
  background: var(--base-color);
}
.faq_q dd {
  font-size: 1.8rem;
  font-weight: 700;
}
.faq_a {
  margin-top: 20px;
  padding-top: 20px;
  border-top: #eee 1px solid;
}
.faq_a dt {
  background: var(--sub-color1);
}
.faq_a dd {
  padding-top: 2px;
}
@media screen and (max-width:1000px) {
  .faq_box {
    margin-bottom: 15px;
    padding: 20px;
  }
  .faq_box dl dt {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    font-size: 1.8rem;
  }
  .faq_box dl dd {
    font-size: 1.6rem;
    flex: 1;
  }
  .faq_a {
    margin-top: 15px;
    padding-top: 15px;
  }
  .faq_a dd {
    padding-top: 0;
  }
}

/***** 予約 *****/
.reserve_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reserve_box > dl {
  width: 49%;
  margin-bottom: 2%;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.05);
}
.reserve_box > dl dt {
  margin-bottom: 10px;
  padding: 5px;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: var(--base-color);
}
.reserve_box > dl dt:nth-of-type(2) {
  margin-top: 15px;
}
.reserve_box > dl dd {
  font-size: 2.5rem;
  font-weight: 700;
}
.reserve_box > dl dd span {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width:1000px) {
  .reserve_box {
    flex-direction: column;
  }
  .reserve_box > dl {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
  }
  .reserve_box > dl:nth-child(2) {
    order: 3;
  }
  .reserve_box > dl:nth-child(3) {
    order: 2;
  }
  .reserve_box > dl dd {
    font-size: 2.1rem;
  }
  .reserve_box > dl dd span {
    font-size: 1.6rem;
  }
}

/***** 流れ *****/
.flow_box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flow_box div {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.05);
}
.flow_box div:nth-child(3n) {
  margin-right: 0;
}
.flow_box div > p {
  margin-bottom: 30px;
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  line-height: 1;
  color: var(--base-color);
  display: flex;
  flex-direction: column;
}
.flow_box div > p span {
  font-size: 2rem;
  font-weight: 500;
}
.flow_box div > dl dt {
  margin-bottom: 20px;
  padding: 5px;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  color: #fff;
  border-radius: 5px;
  background: var(--base-color);
}
@media screen and (max-width:1000px) {
  .flow_box {
    display: block;
  }
  .flow_box div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
  }
  .flow_box div > p {
    margin-bottom: 15px;
    font-size: 4.5rem;
  }
  .flow_box div > p span {
    font-size: 1.8rem;
  }
  .flow_box div > dl dt {
    margin-bottom: 15px;
  }
}

/***** 当センターについて *****/
#greeting_box {
  display: flex;
  justify-content: space-between;
}
#greeting_box > div:nth-child(1) {
  width: 230px;
  margin-left: 30px;
  order: 2;
  border-radius: 10px;
}
#greeting_box > div:nth-child(1) figure img {
  width: 100%;
  border-radius: 10px;
}
#greeting_box > div:nth-child(1) dl {
  margin-top: 20px;
  text-align: center;
}
#greeting_box > div:nth-child(1) dl dt {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
#greeting_box > div:nth-child(1) dl dd {
  font-size: 1.8rem;
}
#greeting_box > div:nth-child(1) dl dd span {
  font-size: 1.4rem;
}
#greeting_box > div:nth-child(2) {
  order: 1;
  flex: 1;
}
#greeting_box > div:nth-child(2) h4 {
  margin-bottom: 30px;
  font-size: 2.8rem;
  font-weight: 400;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
}
.greeting_com {
  margin-bottom: 20px;
  line-height: 1.9;
}
.history_dl {
  margin-bottom: 15px;
  padding: 30px;
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
}
.history_dl dt {
  width: 210px;
  padding-right: 30px;
  font-weight: 700;
  border-right: #ddd 1px solid;
}
.history_dl dd {
  padding-left: 30px;
  flex: 1;
}
.team_box {
	display: flex;
	flex-wrap: wrap;
}
.team_box > div {
	padding: 20px;
	background: #fff;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	display: flex;
}
.team_box > div > dl {
	flex: 1;
}
.team_box > div > dl dt {
	padding: 5px;
	font-size: 1.3rem;
	font-weight: 700;
	font-family: var(--ttl-font);
	text-align: center;
	color: #fff;
	background: var(--sub-color3);
	border-radius: 5px;
}
.team_box > div > dl dd {
	margin-top: 15px;
	font-size: 1.8rem;
	font-weight: 700;
}
.team_box > div > dl dd > span {
  margin-bottom: 7px;
	font-size: 1.5rem;
	font-weight: 400;
	display: block;
}
.team_box > div > dl dd > a {
  padding: 4px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: var(--base-color);
  border-radius: 100px;
  border: var(--base-color) 2px solid;
  transition: 0.5s;
}
.team_box > div > dl dd > a:hover {
  color: #fff;
  background: var(--base-color);
}
.team_box1 > div {
	width: 48.5%;
	margin-bottom: 3%;
	align-items: flex-end;
}
.team_box1 > div:nth-child(odd) {
	margin-right: 3%;
}
.team_box1 > div > figure {
	width: 140px;
	margin-right: 30px;
	background: #f5f5f5;
	border-radius: 5px;
}
.team_box1 > div > figure img {
	width: 100%;
	border-radius: 5px;
}
.team_box2 > div {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	display: flex;
}
.team_box2 > div:nth-child(3n) {
	margin-right: 0;
}
@media screen and (max-width:1000px) {
  #greeting_box {
    display: block;
  }
  #greeting_box > div:nth-child(1) {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  #greeting_box > div:nth-child(1) figure {
    text-align: center;
  }
  #greeting_box > div:nth-child(1) figure img {
    width: 50%;
  }
  #greeting_box > div:nth-child(1) dl {
    text-align: center;
  }
  #greeting_box > div:nth-child(2) h4 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .history_dl {
    margin-bottom: 10px;
    padding: 15px;
    display: block;
    background: #fff;
  }
  .history_dl dt {
    width: 100%;
    margin-bottom: 15px;
    padding-right: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: #ddd 1px solid;
  }
  .history_dl dd {
    padding-left: 0;
  }
	.team_box {
		display: block;
	}
	.team_box > div {
		padding: 15px;
	}
	.team_box > div > dl dd {
		margin-top: 15px;
		font-size: 1.6rem;
	}
	.team_box > div > dl dd > span {
		font-size: 1.4rem;
	}
  .team_box > div > dl dd > a {
		font-size: 1.2rem;
	}
	.team_box1 > div {
		width: 100%;
		margin-bottom: 3%;
	}
	.team_box1 > div > figure {
		margin-right: 20px;
	}
	.team_box2 {
		display: flex;
		flex-wrap: wrap;
	}
	.team_box2 > div {
		width: 49%;
		margin-right: 2%;
		margin-bottom: 2%;
		display: flex;
	}
	.team_box2 > div:nth-child(3n) {
		margin-right: auto;
	}
	.team_box2 > div:nth-child(2n) {
		margin-right: 0;
	}	
	.team_box2 > div > dl dd {
		text-align: center;
	}
}

/***** 受診案内 *****/
.support_box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.support_box > div {
  width: 23.5%;
  margin-right: 2%;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.support_box > div:last-child {
  margin-right: 0;
}
.support_box > div > figure {
  margin-bottom: 15px;
  text-align: center;
}
.support_box > div > figure img {
  width: 45%;
}
.support_box > div > dl dt {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
}
.support_box > div > dl dd {
  text-align: center;
}
.support_com {
  margin-bottom: 25px;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
}
.support_com > br {
  display: none;
}
.guidance_box {
  background: url("../images/guidance/guidance_box_bk.jpg") 0 40% no-repeat;
  background-size: cover;
}
.guidance_box > div {
  height: 30vw;
  padding: 0 3vw;
  text-align: right;
  background: rgba(255,255,255,0.8);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.guidance_box > div > h3 {
  margin-bottom: 20px;
  font-size: 3.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
}
.guidance_box > div > p {
  font-size: 1.8rem;
}
@media screen and (max-width:1000px) {
  .support_box {
    display: block;
  }
  .support_box > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .support_box > div > figure {
    width: 20%;
    margin-bottom: 0;
    margin-right: 7%;
  }
  .support_box > div > figure img {
    width: 100%;
  }
  .support_box > div > dl {
    flex: 1;
  }
  .support_box > div > dl dt {
    margin-bottom: 5px;
    text-align: left;
  }
  .support_box > div > dl dd {
    text-align: left;
  }
  .support_com {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .support_com > br {
    display: block;
  }
  .guidance_box {
    background: url("../images/guidance/guidance_box_bk.jpg") 50% 0 no-repeat;
    background-size: cover;
  }
  .guidance_box > div {
    height: auto;
    padding: 30px 20px;
    text-align: center;
  }
  .guidance_box > div > h3 {
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
  .guidance_box > div > p {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

/***** 医療従事者の方へ *****/
.organs_detail {
  display: none;
}
.organs_fig figcaption {
  margin-top: 10px;
  text-align: center;
}
.organs_fig_single {
  margin-top: 30px;
}
.organs_fig_single > figure {
  margin-top: 30px;
  text-align: center;
}
.organs_fig_single > .organs_fig_right {
  text-align: right;
}
.organs_fig_single > figure img {
  width: 70%;
}
.organs_fig_double {
  display: flex;
}
.organs_fig_double figure {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.organs_fig_double figure:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width:1000px) {
  .organs_fig_single {
    margin-top: 20px;
  }
  .organs_fig_single > figure img {
    width: 100%;
  }
  .organs_fig_double {
    display: block;
  }
  .organs_fig_double figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/***** 活動報告 *****/
.report_box {
  display: flex;
  flex-wrap: wrap;
}
.report_box > div {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.report_box > div:nth-child(3n) {
  margin-right: 0;
}
.report_box > div > figure {
  margin-bottom: 20px;
}
.report_box > div > figure img {
  width: 100%;
}
.report_box > div > p {
  margin-bottom: 5px;
  font-size: 1.4rem;
  color: #666;
}
.report_box > div > dl dt {
  font-size: 1.8rem;
  font-family: var(--ttl-font);
  font-weight: 700;
}
.report_box > div > dl dd {
  margin-top: 10px;
}
.schedule {
  padding-top: 20px;
  border-top: #ddd 1px solid;
}
.schedule dt {
  width: 10em;
  font-weight: 700;
  float: left;
  clear: left;
}
.schedule dd {
  margin-bottom: 20px;
  padding: 0 0 20px 10em;
  border-bottom: #ddd 1px solid;
}
@media screen and (max-width:1000px) {
  .report_box {
    display: block;
  }
  .report_box > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
  }
  .report_box > div:nth-child(3n) {
    margin-right: 0;
  }
  .schedule {
    padding-top: 15px;
    border-top: #ddd 1px solid;
  }
  .schedule dt {
    width: 100%;
    float: none;
  }
  .schedule dd {
    margin-bottom: 15px;
    padding: 0 0 15px 0;
    border-bottom: #ddd 1px solid;
  }
}

/***** モーダル *****/
.modaal-content-container > div > .ttl:first-child {
  margin-top: 0!important;
}
.modaal-close:focus::after, .modaal-close:focus::before, .modaal-close:hover::after, .modaal-close:hover::before {
  background: var(--base-color)!important;
}