@charset "utf-8";

/* ---------------------------------------------------------------------------------------
	search_box
--------------------------------------------------------------------------------------- */

#main #search_box {
  width: 800px;
  margin: 25px auto 60px;
  padding: 40px 40px 30px;
  border: 1px solid #f1efe6;
  background-color: #f9f9f5;
  box-sizing: border-box;
}
#main #search_box form {
  width: 720px;
  margin: 0 auto 20px;
  display: flex;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
#main #search_box form .input {
  width: 640px;
  padding: 0 20px;
  font-size: 15px;
  color: #333333;
  border: none;
  outline: none;
}
#main #search_box form .button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0;
  background: url(../images/column/icon_search.svg) center no-repeat #a8b8c4;
}

#main #search_box ul {
  width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#main #search_box ul li {
  margin: 0 10px 10px 0;
}
#main #search_box ul li a {
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  color: #5d5d5d;
  display: block;
  border-radius: 3px;
  background-color: #e5e5d7;
  position: relative;
  transition: all 0.3s ease 0s;
}
#main #search_box ul li a:hover {
  background-color: #f1f1e6;
}

@media screen and (max-width: 640px) {
  #main #search_box {
    width: 93.3vw;
    margin-bottom: 30px;
    padding: 20px 20px 10px;
  }
  #main #search_box form {
    width: 100%;
  }
  #main #search_box form .input {
    width: calc(100% - 40px);
  }

  #main #search_box ul {
    width: auto;
  }
}

/* ---------------------------------------------------------------------------------------
	archive_contents
--------------------------------------------------------------------------------------- */

#archive_contents {
  width: 1100px;
  margin: 0 auto 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  #archive_contents {
    width: 93.3vw;
    margin: 0 auto 30px;
    flex-wrap: wrap;
  }
}

/* ---------------------------------------------------------------------------------------
	article_wrap
--------------------------------------------------------------------------------------- */

#archive_contents #article_wrap {
  width: 750px;
}

#archive_contents #article_wrap h2 {
  margin: 0 0 20px;
  padding: 10px;
  font-size: 25px;
  color: #fff;
  border-left: 5px solid #878771;
  background-color: #b2b296;
}

#archive_contents #article_wrap .result {
  margin: -10px 0 10px;
  font-size: 15px;
}

#archive_contents #article_wrap ul {
  margin: 0 0 40px;
}
#archive_contents #article_wrap ul.col02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#archive_contents #article_wrap ul li {
  margin: 0;
  border-bottom: 1px dotted #b2b296;
}
#archive_contents #article_wrap ul.col02 li {
  width: 540px;
}
#archive_contents #article_wrap ul li a {
  padding: 20px 0 20px 40px;
  font-size: 17px;
  line-height: 1.6;
  color: #6b9dbf;
  text-decoration: none;
  display: block;
  position: relative;
}
#archive_contents #article_wrap ul li a:hover {
  text-decoration: underline;
}
#archive_contents #article_wrap ul li a::before {
  content: "Q";
  width: 30px;
  height: 30px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #6b9dbf;
  position: absolute;
  top: 18px;
  left: 0;
}

@media screen and (max-width: 640px) {
  #archive_contents #article_wrap {
    width: 93.3vw;
    margin-bottom: 40px;
  }

  #archive_contents #article_wrap h2 {
    font-size: 20px;
  }

  #archive_contents #article_wrap ul.col02 {
    display: block;
  }
  #archive_contents #article_wrap ul.col02 li {
    width: auto;
  }
}

/* ---------------------------------------------------------------------------------------
	page_navi
--------------------------------------------------------------------------------------- */

#archive_contents #page_navi {
  width: 300px;
}

#archive_contents #page_navi h2 {
  margin: 0 0 40px;
  padding: 10px;
  font-size: 25px;
  color: #fff;
  border-left: 5px solid #878771;
  background-color: #b2b296;
}

#archive_contents #page_navi ul {
  padding: 10px;
  border: 1px solid #f1efe6;
  background-color: #f9f9f5;
}
#archive_contents #page_navi ul li {
  margin-bottom: 10px;
  border-bottom: 1px dotted #dfdbc6;
  background-color: #fff;
}
#archive_contents #page_navi ul li:last-of-type {
  margin-bottom: 0;
}
#archive_contents #page_navi ul li a {
  padding: 15px 10px 15px 55px;
  font-size: 15px;
  line-height: 1.6;
  color: #6b9dbf;
  text-decoration: none;
  display: block;
  position: relative;
}
#archive_contents #page_navi ul li a:hover {
  text-decoration: underline;
}
#archive_contents #page_navi ul li a::before {
  content: "Q";
  width: 30px;
  height: 30px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #6b9dbf;
  position: absolute;
  top: 10px;
  left: 15px;
}

#archive_contents #page_navi .nav_open {
  display: none;
}

@media screen and (max-width: 640px) {
  #archive_contents #page_navi {
    width: 100%;
    margin-bottom: 30px;
    order: -1;
  }

  #archive_contents #page_navi h2 {
    margin-bottom: 0;
    font-size: 20px;
  }

  #archive_contents #page_navi ul li:last-of-type {
    margin-bottom: 10px;
  }
  #archive_contents #page_navi ul li:nth-child(n + 3) {
    display: none;
  }

  #archive_contents #page_navi .nav_open {
    margin: 0;
    padding: 2px 0;
    font-size: 15px;
    color: #fff;
    text-align: center;
    display: block;
    background-color: #013a58;
    position: relative;
  }
  #archive_contents #page_navi .nav_open::before {
    content: "";
    width: 11px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 10px;
  }
  #archive_contents #page_navi .nav_open::after {
    content: "";
    width: 1px;
    height: 11px;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
  }
  #archive_contents #page_navi .nav_open.active::after {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------
	category
--------------------------------------------------------------------------------------- */

#category {
  width: 1100px;
  margin: 0 auto;
}

#category .item {
  margin-bottom: 40px;
  padding-bottom: 15px;
  background-color: #f9f9f5;
}
#category .item h2 {
  background: linear-gradient(
    to right,
    #b2b296 0%,
    rgba(178, 178, 150, 0) 100%
  );
}
#category .item h3 {
  height: 80px;
  margin: 0 0 30px;
  padding: 20px 20px 0;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  display: block;
  border: none;
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(to right, #b2b296 0%, rgba(178, 178, 150, 0) 100%);
}
#category .item h3 strong {
  font-size: 30px;
}
#category .item h3.bg_1 {
  background: linear-gradient(to right, #b2b296 0%, rgba(178, 178, 150, 0) 100%),
    url(../images/price_archive/bnr1_pc_image.png) right center / auto 100%
      no-repeat;
}
#category .item h3.bg_2 {
  background: linear-gradient(to right, #b2b296 0%, rgba(178, 178, 150, 0) 100%),
    url(../images/price_archive/bnr2_pc_image.png) right center / auto 100%
      no-repeat;
}
#category .item h3.bg_3 {
  background: linear-gradient(to right, #b2b296 0%, rgba(178, 178, 150, 0) 100%),
    url(../images/price_archive/bnr3_pc_image.png) right center / auto 100%
      no-repeat;
}
#category .item h3.bg_4 {
  background: linear-gradient(to right, #b2b296 0%, rgba(178, 178, 150, 0) 100%);
}
#category .item ul {
  width: 1037px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#category .item ul li {
  width: 248px;
  margin: 0 15px 15px 0;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}
#category .item ul li:nth-child(4n) {
  margin-right: 0;
}
#category .item ul li:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
#category .item ul li a {
  height: 60px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #5d5d5d;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: 1px solid #f1efe6;
  border-top: 2px solid #b2b296;
  box-sizing: border-box;
  position: relative;
}
#category .item ul li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #b9a597;
  border-right: 2px solid #b9a597;
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  transform: rotate(45deg);
}

@media screen and (max-width: 640px) {
  #category {
    width: 93.3vw;
  }
  #category .item {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  #category .item h2 {
    background-color: #b2b296;
    border-left: 5px solid #878771;
  }
  #category .item h3 {
    height: 60px;
    margin-bottom: 20px;
    padding: 7px 10px 0;
    font-size: 4vw;
    line-height: 1.2;
  }
  #category .item h3 strong {
    font-size: 5.866666652vw;
    display: block;
  }
  #category .item ul {
    width: 89vw;
    justify-content: space-between;
  }
  #category .item ul li {
    width: 43.5vw;
    margin: 0 0 10px;
  }
  #category .item ul li a {
    padding: 0 3vw 0 2vw;
    font-size: 3.466666658vw;
    line-height: 1.4;
  }
  #category .item ul li a::after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #b9a597;
    border-right: 1px solid #b9a597;
    top: calc(50% - 3px);
    right: 5px;
  }
}

/* ---------------------------------------------------------------------------------------
	pagination
--------------------------------------------------------------------------------------- */

#article_wrap .pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#article_wrap .pagination .page-numbers {
  width: 50px;
  height: 50px;
  margin: 0 5px 10px;
  font-size: 20px;
  color: #5d5d5d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.3s ease 0s;
}
#article_wrap .pagination .page-numbers.current {
  color: #fff;
  background-color: #b2b296;
}
#article_wrap .pagination a.page-numbers:hover {
  background-color: #f9f9f5;
}
#article_wrap .pagination .page-numbers.prev,
#article_wrap .pagination .page-numbers.next {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
#article_wrap .pagination .page-numbers.prev::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #b9a597;
  border-left: 2px solid #b9a597;
  position: absolute;
  top: calc(50% - 7px);
  left: 18px;
  transform: rotate(-45deg);
}
#article_wrap .pagination .page-numbers.next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #b9a597;
  border-right: 2px solid #b9a597;
  position: absolute;
  top: calc(50% - 7px);
  right: 18px;
  transform: rotate(45deg);
}

@media screen and (max-width: 640px) {
  #article_wrap .pagination {
    padding: 0 10vw;
    position: relative;
  }
  #article_wrap .pagination .page-numbers {
    width: 10vw;
    height: 10vw;
    margin: 0 0.5vw 5px;
    font-size: 4vw;
  }
  #article_wrap .pagination .page-numbers.prev {
    margin-left: 0;
    position: absolute;
    top: calc(50% - 5vw);
    left: 0;
  }
  #article_wrap .pagination .page-numbers.next {
    margin-right: 0;
    position: absolute;
    top: calc(50% - 5vw);
    right: 0;
  }
  #article_wrap .pagination .page-numbers.prev::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 6px);
    left: 4vw;
  }
  #article_wrap .pagination .page-numbers.next::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 6px);
    right: 4vw;
  }
}

/* ---------------------------------------------------------------------------------------
	コラムシングルページ
--------------------------------------------------------------------------------------- */

#main #top_under h1.question::before {
  content: "Q";
  width: 40px;
  height: 40px;
  margin-right: 10px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #6b9dbf;
}

#main h2.answer {
  padding: 0 0 0 50px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 25px;
  font-weight: bold;
  color: #5d5d5d;
  background: none;
  position: relative;
  margin: 25px 0 40px;
}
#main h2.answer::before {
  content: "A";
  width: 40px;
  height: 40px;
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #61c590;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
}
.under #main .to_back_btn {
  margin: 60px 0;
}
#main .to_back_btn a {
  height: 100px;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #65b4e8 0%, #53d18e 100%);
  position: relative;
}
#main .to_back_btn a::before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}
#main .to_back_btn a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: calc(50% - 5px);
  left: 20px;
  transform: rotate(-45deg);
}

.qa_date_area{
	display: flex;
	justify-content: flex-end;
	margin-bottom: 25px;
}

.under #main .qa_date_area p{
	font-size: 12px;
	margin-bottom: 0;
}

.under #main .qa_date_area p:first-child{
	margin-right: 15px;
}
@media screen and (max-width: 640px) {
  #main #top_under h1.question::before {
    width: 30px;
    height: 30px;
    font-size: 4.266666656vw;
  }

  #main h2.answer {
    padding-left: 40px;
    font-size: 4.266666656vw;
  }
  #main h2.answer::before {
    width: 30px;
    height: 30px;
    font-size: 4.266666656vw;
    top: calc(50% - 15px);
  }
  .under #main .to_back_btn {
    margin: 30px 0;
  }
  #main .to_back_btn a {
    height: 80px;
    padding: 0 4vw 0 8vw;
    font-size: 4vw;
  }
  #main .to_back_btn a::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
  }
  #main .to_back_btn a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    left: 14px;
  }
  .qa_date_area{
	margin-bottom: 20px;
}
}

/* ---------------------------------------------------------------------------------------
	superviser
--------------------------------------------------------------------------------------- */

#main .superviser {
  margin: 60px 0;
  padding: 30px;
  border: solid 1px #f1efe6;
  background-color: #f9f9f5;
}
#main .superviser::after {
  content: "";
  display: block;
  clear: both;
}
#main .superviser h4 {
  margin: 0 0 26px;
  padding: 0 0 5px;
  font-size: 20px;
  color: #5d5d5d;
  border: none;
  border-bottom: 1px solid #b2b296;
  position: relative;
}
#main .superviser h4::after {
  content: "";
  width: 200px;
  height: 4px;
  background-color: #b2b296;
  position: absolute;
  left: 0;
  bottom: -4px;
}

/* 20260324 h4→h2に変更。commonに勝てないのでh2指定 */
#main .superviser h2.head-h4 {
  margin: 0 0 26px;
  padding: 0 0 5px;
  font-size: 20px;
  color: #5d5d5d;
  border: none;
  border-bottom: 1px solid #b2b296;
  position: relative;
	background-color: unset;
	line-height: 1.5em;
}
#main .superviser h2.head-h4::after {
  content: "";
  width: 200px;
  height: 4px;
  background-color: #b2b296;
  position: absolute;
  left: 0;
  bottom: -4px;
}

#main .superviser .photo {
  float: left;
}
#main .superviser .photo img {
  width: 200px;
  height: 240px;
  object-fit: cover;
}
#main .superviser .doctor {
  width: 598px;
  margin-bottom: 20px;
  padding-top: 10px;
  float: right;
}
#main .superviser .doctor .position {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1;
  color: #5d5d5d;
}
#main .superviser .doctor .name {
  margin: 0 0 20px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝B", serif;
  font-size: 30px;
  line-height: 1;
  color: #5d5d5d;
}
#main .superviser .doctor ul {
  display: flex;
}
#main .superviser .doctor ul li {
  margin: 0;
}
#main .superviser .doctor ul li:not(:last-child) {
  margin-right: 10px;
}
#main .superviser .doctor ul li a {
  padding: 10px 20px 10px 10px;
  color: #5d5d5d;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #b2b296;
  background-color: #fff;
  transition: all ease 0.3s;
  position: relative;
}
#main .superviser .doctor ul li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #b2b296;
  border-right: 1px solid #b2b296;
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  transform: rotate(45deg);
}
#main .superviser .doctor ul li a:hover {
  background-color: #e5e5d7;
}
#main .superviser .profile {
  width: 598px;
  float: right;
}
#main .superviser .profile p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5d5d5d;
}
#main .superviser .col_flex {
	display: flex;
	width: 100%;
	padding-top: 20px;
}
#main .superviser .col_txt {
	flex: 1;
}
#main .superviser .col_flex > [class*="col"] + [class*="col"] {
	padding-left: 30px;
}
#main .superviser .col_flex h5 {
	margin-bottom: 5px;
}

/* 20260324 経歴、備考をh5→h3変更 */
#main .superviser .col_flex .head-h5 {
	background-color: unset;
  border-left: 6px double #5d5d5d;
	border-bottom: none;
	margin: 0 0 5px;
  padding: 0;
  padding-left: 15px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: unset;
}

#main .superviser .doctor_histories dl {
	display: flex;
	margin-bottom: 0;
	padding: .8em 2px .8em 1em;
	border-bottom: 1px solid #f1efe6;
	box-sizing: border-box;
}
#main .superviser .doctor_histories dl:nth-child(odd) {
	background: transparent;
}
#main .superviser .doctor_histories dt {
	padding-right: 1em;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;

	/* ドクターシングル 経歴のスタイルを上書き */
	width: auto;
	margin-right: 0;
	background-color: transparent;
	color: #0e0e0e;
}

#main .superviser .doctor_histories dd {
	flex: 1;
	font-size: 14px;
	line-height: 1.5;
}
/*
#main .superviser .doctor_histories dl a {
	color: #0e0e0e;
	text-decoration: none;
	pointer-events: none;
}
*/
@media screen and (max-width: 640px) {
  #main .superviser {
    margin: 30px 0;
    padding: 5vw;
  }
  #main .superviser h4 {
    font-size: 4.799999988vw;
  }
  #main .superviser h4::after {
    width: 26.6vw;
  }

  #main .superviser h2.head-h4 {
    font-size: 4.799999988vw;
  }
  #main .superviser h2.head-h4::after {
    width: 26.6vw;
  }

  #main .superviser .photo {
    margin-bottom: 20px;
  }
  #main .superviser .photo img {
    width: 34vw;
    height: 41vw;
  }
  #main .superviser .doctor {
    width: 44vw;
  }
  #main .superviser .doctor .position {
    font-size: 3.466666658vw;
  }
  #main .superviser .doctor .name {
    margin-bottom: 10px;
    font-size: 6.66666665vw;
  }
  #main .superviser .doctor ul {
    display: block;
  }
  #main .superviser .doctor ul li:not(:last-child) {
    margin: 0 0 10px;
  }
  #main .superviser .doctor ul li a {
    padding: 2.6vw 4.5vw 2.6vw 2vw;
    font-size: 3.466666658vw;
    display: inline-block;
  }
  #main .superviser .doctor ul li a::after {
    right: 2vw;
  }
  #main .superviser .profile {
    width: auto;
    float: none;
    clear: both;
  }
  #main .superviser .profile p {
    font-size: 3.99999999vw;
  }
	#main .superviser .col_flex {
		display: block;
		padding-top: 0;
	}
	#main .superviser .col_txt {
		width: 100%;
	}
	#main .superviser .col_flex > .doctor_histories {
		margin-top: 20px;
	}
	#main .superviser .col_flex > [class*="col"] + [class*="col"] {
		margin-top: 20px;
		padding-left: 0;
	}
	#main .superviser .doctor_histories dl {
		padding-left: 0;
	}
}

/* ---------------------------------------------------------------------------------------
	connection_wrap
--------------------------------------------------------------------------------------- */

#main #connection_wrap {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#main #connection_wrap h2 {
  width: 100%;
  margin: 0 0 20px;
  padding: 10px;
  font-size: 25px;
  color: #fff;
  border-left: 5px solid #878771;
  background-color: #b2b296;
}

#main #connection_wrap ul {
  margin: 0 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#main #connection_wrap ul li {
  width: 540px;
  margin: 0;
  border-bottom: 1px dotted #b2b296;
}
#main #connection_wrap ul li a {
  padding: 20px 0 20px 40px;
  font-size: 17px;
  line-height: 1.6;
  color: #6b9dbf;
  text-decoration: none;
  display: block;
  position: relative;
}
#main #connection_wrap ul li a:hover {
  text-decoration: underline;
}
#main #connection_wrap ul li a::before {
  content: "Q";
  width: 30px;
  height: 30px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #6b9dbf;
  position: absolute;
  top: 18px;
  left: 0;
}

@media screen and (max-width: 640px) {
  #main #connection_wrap {
    width: 100%;
    padding: 0 15px;
    display: block;
    box-sizing: border-box;
  }

  #main #connection_wrap h2 {
    font-size: 20px;
    box-sizing: border-box;
  }

  #main #connection_wrap ul {
    display: block;
  }
  #main #connection_wrap ul li {
    width: auto;
  }
}

/* ========== 20211117 FAQ（旧コラム）記事で使用 簡易一覧表テーブル（見出しなし） ========== */
.under #main table.column__sinple_list {
  margin: 20px auto;
}

.under #main table.column__sinple_list td {
  padding: 15px;
  min-width: 11em;
}

@media screen and (max-width: 640px) {
  .under #main table.column__sinple_list td {
    border-bottom: none;
    display: block;
    text-align: center;
  }

  .under #main table.column__sinple_list tr {
    border-bottom: 1px solid #5d5d5d;
  }
}

/* メンズ二重ページ流用 強調文字 */
.mens {
  color: #3c4b76;
  font-weight: 800;
  display: inline-block;
}

/* ========== 20211117 FAQ（旧コラム）記事で使用 簡易一覧表テーブル（見出しなし） ここまで ========== */

.under #main h3.no-style {
  line-height: 32px;
  font-size: 15px;
  font-weight: bold;
  font-family: メイリオ, meiryo, ヒラギノ角ゴ pro, hiragino kaku gothic pro,
    sans-serif;
  padding: 0;
  background: none;
  border: none;
  display: block;
  margin: 0;
  letter-spacing: 0;
}

@media (min-width: 641px) {
  .under #main .main_img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
  }
}

@media screen and (max-width: 640px) {
  .under #main .main_img {
    width: 100%;
  }
}

/*---------- 20220516 新バージョン備考欄用  --------------------*/
#main .superviser .drinfo_remarks {
	width: 100%;
}
#main .superviser .drinfo_remarks dl {
	display: flex;
	padding: 0.98em 2px 0.98em 1em;
	margin-bottom: 0;
	border-bottom: 1px solid #f1efe6;
}

#main .superviser .drinfo_remarks dl:nth-child(odd) {
	background: none;
}
	
#main .superviser .drinfo_remarks h5 {
    font-size: 16px;
    border-left: 6px double #5d5d5d;
    padding: 0;
    padding-left: 15px;
	margin-bottom: 5px;
	line-height: 1.5em;
}

#main .superviser .drinfo_remarks dt {
	width: 54%;
    margin-right: 20px;
    padding: 0;
	font-size: 14px;
	line-height: 1.5;
}

#main .superviser .drinfo_remarks dd {
	border: none;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.5;
}

@media screen and (max-width: 640px){
#main .superviser .drinfo_remarks {
		border: none;
	}
	
#main .superviser .drinfo_remarks dl {
	padding-left: 0;
}

#main .superviser .drinfo_remarks dt {
		width: 100%;
		line-height: 1.3em;
	margin-right: 0;
	}
#main .superviser .drinfo_remarks dd {
		width: 100%;
		padding: 0;
	}
}
/*---------- 20220516 新バージョン備考欄用  ここまで--------------------*/


/* 20240906 コラム文章内 dlリスト（h指定なしの太字見出し時に使用 ttps://gyazo.com/b294d1a2028e21c85b5621dda4bd1743） */
.column-dl{
	margin-bottom: 3em;
}
.column-dl dt {
	font-weight: bold;
}
.column-dl dd {
	margin-bottom: 1.8em;
}
.column-dl dd:last-child {
	margin-bottom: auto;
}

/* 20240906 コラム文章内 dlリスト ここまで */

/* 20251106 追加 術後のよくある質問 */
.after_faq_main #archive_contents #page_navi ul li a > span,
.after_faq_main #archive_contents #article_wrap ul li a > span,
#main.after_faq_main #connection_wrap ul li a > span {
  display: block;
}
.c-faq_cate {
  margin: 3px 0 0;
  display: inline-flex;
  gap: 5px;
  line-height: 1.2;
  flex-wrap: wrap;
}
.c-faq_cate span {
  padding: 3px 8px;
  font-size: 12px;
  color: #ffffff;
  background-color: #9ec2da;
  border-radius: 100px;
}
.c-link_btn-w_fit a {
  width: fit-content;
}
#main.after_faq_main > .inner.clearfix ~ #connection_wrap,
#main.after_faq_main > .inner.clearfix ~ #category {
  margin-top: 60px;
}

.c-faq_cate_area  {
  margin-bottom: 40px;
}

@media screen and (max-width: 640px){
  .c-faq_cate_area  {
    margin-bottom: 25px;
  }
}
.c-faq_cate_link {
  display: flex;
  gap: 5px;
  line-height: 1.2;
  flex-wrap: wrap;
  margin: 0;
}
.c-faq_cate_link a {
  text-decoration: none;
  padding: 5px 10px;
  font-size: 14px;
  color: #878771;
  background-color: #ffffff;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition: color 0.3s, background-color 0.3s;
  font-weight: 600;
}
.c-faq_cate_link a:hover {
  background-color: #878771;
  color: #ffffff;
}

.c-after_faq-link {
  margin-bottom: 15px;
}
.c-after_faq-link a {
  display: block;
  background-color: #013a58;
  color: #ffffff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  padding: 15px 40px 15px 15px;
  text-decoration: none;
  position: relative;
  transition: .3s;
}
.c-after_faq-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}
.c-after_faq-link a:hover {
  box-shadow: 0 0 5px rgba(1, 58, 88, 0.5);
}
.c-after_faq-link a:hover::after {
  right: 10px;
}
