@charset "utf-8";
/* CSS Document */
/************************************************
 共通設定
*************************************************/
html {
  font-size: 62.5%;
} /* 10px */
body {
  color: #555;
  font-family: "Noto Serif JP", serif, "Yu Mincho", Yumincho, serif;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
}

/*   切り替え設定  */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}

/*   改行設定  */
.pc_br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp_br {
    display: none;
  }
  .pc_br {
    display: block;
  }
}

/*   リンク色設定  */
a:link {
  color: #f87264;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

/************************************************
 共通枠設定
*************************************************/
#wrap {
  width: 100%;
  min-height: 320px;
  margin: 0 auto;
  overflow: hidden;
}
/*header*/
#header_outline {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
header {
  width: 100%;
  background: #fff;
  height: 62px;
}
header .logo {
  width: 136px;
  padding: 6px 0 0 10px;
}
header .access {
  width: 48px;
  position: absolute;
  top: 6px;
  right: 80px;
}
header .search {
  width: 38px;
  position: absolute;
  top: 14px;
  right: 140px;
}
header .logo img,
header .access img,
header .search img {
  width: 100%;
  height: auto;
}
header .pc_nav {
  display: none;
}
header .clinic_list {
  display: flex;
  position: absolute;
  top: 8px;
  right: 70px;
  font-size: 1.4rem;
}
header .clinic_list li a {
  display: block;
  background: linear-gradient(
    45deg,
    #eeecec 0%,
    #cccccc 45%,
    #e8e8e8 70%,
    #dedede 85%,
    #eeecec 90% 100%
  );
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  padding: 12px 12px;
  margin: 0 3px;
}
@media screen and (min-width: 768px) {
  header {
    background: #fff;
    z-index: 2;
  }
  header .logo {
    width: 360px;
    padding: 5px 0 0 10px;
  }
}
header .header_nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .header_nav {
    display: flex;
    position: absolute;
    top: 0px;
    right: 140px;
    font-size: 1.6rem;
  }
  header .header_nav li {
    padding: 0 16px;
  }
  header .header_nav li a {
    display: block;
    color: #333;
    padding: 12px 0;
    text-decoration: none;
  }
}
/*@media screen and (min-width: 1200px) {
	header .pc_nav {
		display: block;
	}
}*/

/* overlay */
#overlay-button {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 29px 14px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  background: #5dc2d0;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  display: block;
  /*transition: all .2s ease-in-out;*/
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before,
#overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  content: "";
  /*transition: all .2s ease-in-out;*/
}
#overlay-button:hover span,
#overlay-button:hover span:before,
#overlay-button:hover span:after {
  background: #fff;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked ~ #overlay {
  visibility: visible;
}
input[type="checkbox"]:checked ~ #overlay-button:hover span,
input[type="checkbox"]:checked ~ #overlay-button span {
  background: transparent;
}
input[type="checkbox"]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type="checkbox"]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

#overlay {
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 2;
  visibility: hidden;
  position: fixed;
  margin-top: 0px;
  overflow: scroll;
}

/*footer*/
footer {
  background: #e0f1f4;
  padding-top: 10px;
  text-align: center;
  line-height: 1.6;
}
footer .logo {
  width: 46%;
  max-width: 240px;
  margin: 14px auto 10px auto;
}
footer .logo img {
  width: 100%;
  height: auto;
}
footer h3 {
  color: #5dc2d0;
  font-weight: bold;
  font-size: 1.8rem;
}
footer p {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
footer p.hr {
  border-bottom: 1px solid #5dc2d0;
  padding-bottom: 10px;
  display: inline-block;
}
footer .footer_contact {
  display: flex;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: #5dc2d0;
}
footer .footer_contact li {
  width: calc(100% / 3);
  border-right: 1px solid #fff;
}
footer .footer_contact li:last-child {
  border: none;
}
footer .footer_contact li a,
footer .footer_contact li .open {
  color: #fff;
  display: block;
  padding: 10px 0;
  text-decoration: none;
  line-height: 1.4;
}
footer .footer_sns {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px 0;
}
footer .footer_sns li {
  width: 40px;
  padding: 0 6px;
}
footer .footer_sns li img {
  width: 100%;
  height: auto;
}
.copy {
  background: #5dc2d0;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px 0;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .pc_style {
    width: 90%;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
    display: flex;
  }
  .pc_style div {
    width: 50%;
    border-bottom: none;
  }
  .pc_style .hr {
    border-bottom: none;
  }
  footer .footer_sns {
    padding-top: 30px;
    justify-content: flex-start;
  }
  footer .logo {
    width: 200px;
    padding: 1em 0;
  }
}
@media screen and (min-width: 1024px) {
  .copy {
    margin: 0;
  }
}
/*SP下部メニュー*/
div.sp_btn ul {
  position: fixed;
  bottom: -70px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
div.sp_btn ul.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
}
div.sp_btn ul {
  position: fixed;
  bottom: 0;
  display: table;
  width: 100%;
  height: 70px;
}
div.sp_btn ul li {
  display: table-cell;
  width: calc(100% / 3);
  height: 70px;
  /*text-align: center;*/
  /*background-color: #fb923a;*/
  /*box-sizing: border-box;*/
  line-height: 0;
}
div.sp_btn ul li:first-child {
  /*background-color: #00c300;*/
}
div.sp_btn ul li:last-child {
  /*background-color: #3b2dcb;*/
}
div.sp_btn ul li:last-child {
  /*border-right: none;*/
}
/*div.sp_btn ul li img {
    width: auto;
    height: 24px;
	padding-top: 20px;
}*/
div.sp_btn ul li img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  div.sp_btn ul {
    display: none;
  }
}

/*PC右側ナビゲーション*/
div.pc_btn {
  display: none;
}
@media screen and (min-width: 1024px) {
  div.pc_btn {
    display: block;
  }
  div.pc_btn {
    position: fixed;
    top: 200px;
    right: 0;
    width: 240px;
  }
  div.pc_btn ul li a {
    display: block;
    background-color: #fb923a;
    padding: 14px 20px;
    margin-bottom: 5px;
  }
  div.pc_btn ul li:last-child a {
    background-color: #3b2dcb;
  }
  div.pc_btn ul li img {
    width: auto;
    height: 40px;
    padding-top: 20px;
  }
}

/* outline */
#mt_content {
  padding-top: 62px;
}
.outline {
  width: 100%;
  margin: 0 auto;
}
.outline2,
.content_outline {
  width: 92%;
  margin: 0 4%;
}
.outline_w {
  width: 82%;
  background: #fff;
  padding: 4%;
  margin: 0 auto;
}
.bg100_g {
  width: 100%;
  background: #f4f4f4;
  padding: 40px 0;
}
.bg100_g2 {
  width: 100%;
  background: #f4f4f4;
  padding-bottom: 40px;
}
.bg100_w {
  width: 100%;
  background: #fff;
  padding: 40px 0;
}
.bg100_w2 {
  background: #fff;
  padding: 40px 3%;
}
.bg100_b {
  width: 90%;
  background: #e9f2f4;
  padding: 5%;
}
@media screen and (min-width: 980px) {
  .outline,
  .outline2 {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .content_outline {
    /*max-width: 940px;*/
    max-width: 1120px;
    padding: 40px;
    margin: 0 auto;
  }
  .outline_w {
    max-width: 940px;
    padding: 40px;
  }
  .bg100_g {
    padding: 80px 0;
  }
  .bg100_w {
    padding: 80px 0;
  }
  #mt_content {
    /*padding-top:30px;*/
  }
}

/*   ボタン  */
.bt001 {
  text-align: center;
  padding-bottom: 30px;
}
.bt001 a {
  display: inline-block;
  background: #5dc2d0;
  color: #fff;
  font-weight: bold;
  padding: 8px 0;
  width: 240px;
  border-radius: 25px;
  text-decoration: none;
}
.bt002 {
  text-align: center;
  padding-bottom: 30px;
}
.bt002 a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  color: #5dc2d0;
  font-weight: bold;
  padding: 8px 0;
  width: 240px;
  border-radius: 25px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
.bt003 {
  text-align: center;
  position: relative;
  max-width: 400px;
}
.bt004 {
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 700px;
  margin: 0 auto 5em auto;
}
.bt003 a,
.bt004 a {
  display: inline-block;
  background: #eee;
  font-weight: bold;
  padding: 14px 0;
  width: 100%;
  text-decoration: none;
}
.bt003:after,
.bt004:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: #333;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .bt001,
  .bt002 {
    padding-bottom: 50px;
  }
  .bt001 a,
  .bt002 a {
    padding: 14px 0;
    width: 420px;
    border-radius: 36px;
    font-size: 2rem;
  }
}

/* ポップアップ */
#pop-up,
#pop-up2,
#pop-up3 {
  display: none;
}
.overlay2,
.overlay3 {
  display: none;
}
#pop-up:checked + .overlay2,
#pop-up2:checked + .overlay2,
#pop-up3:checked + .overlay3 {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.window {
  width: 90vw;
  max-width: 380px;
  height: 460px;
  overflow-y: scroll;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close {
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 12px;
  font-size: 34px;
  font-weight: bold;
}
div.sp_btn ul li .window img {
  height: 60px;
  width: auto;
  margin-bottom: 5px;
}
div.sp_btn ul li .window p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  height: 30px;
  width: auto;
  line-height: 1;
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: 20px;
}

#page_ttl {
  text-align: center;
  font-size: 2rem;
  padding: 40px 0 20px 0;
  line-height: 1.4;
  background: url(../img/common/page_ttl_bg2.jpg) no-repeat center bottom;
  width: 100%;
  margin-bottom: 30px;
}
#page_ttl span.en {
  font-size: 1rem;
  color: #5dc2d0;
}
#page_ttl_cont {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
}
#page_ttl_cont span.en {
  font-size: 1rem;
  color: #5dc2d0;
}
#page_img {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
#page_img img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
@media screen and (min-width: 768px) {
  #page_ttl {
    font-size: 3.4rem;
    line-height: 1.4;
    padding: 80px 0 40px 0;
    margin-bottom: 60px;
  }
  #page_ttl span.en {
    font-size: 1.4rem;
  }
  #page_ttl_cont {
    font-size: 3.4rem;
    line-height: 1.4;
  }
  #page_ttl_cont span.en {
    font-size: 1.4rem;
  }
  #page_img {
    margin-bottom: 80px;
  }
}

#pankuzu {
  width: 100%;
  background: #eee;
  padding: 12px 5px;
  line-height: 1.4;
  font-size: 12px;
}
#pankuzu li {
  display: inline-block;
  position: relative;
  padding-right: calc(16px + 8px);
  margin-right: 8px;
}
#pankuzu li a {
  color: #555;
}
#pankuzu li::before {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#pankuzu li:last-child {
  margin-right: 0;
  padding-right: 0;
}
#pankuzu li:last-child::before {
  content: normal;
}
#pankuzu li br {
  display: none;
}
@media screen and (min-width: 980px) {
  #pankuzu {
    font-size: 14px;
    padding: 14px 0;
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.center {
  text-align: center;
}
.no_lb {
  white-space: nowrap;
}
.font_b1 {
  font-size: 1.8rem;
  font-weight: bold;
}
.font_b1 span {
  color: #ff944c;
}
.font_b2 {
  font-size: 2rem;
  font-weight: bold;
}
.font_b3 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .font_b1 {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .font_b2 {
    font-size: 2.8rem;
    font-weight: bold;
  }
  .font_b3 {
    font-size: 2.8rem;
    font-weight: bold;
  }
}
/* kome */
.kome {
  position: relative;
  margin-left: 20px;
}
.kome:before {
  content: "※";
  position: absolute;
  left: -20px;
}
.kome_list li {
  position: relative;
  margin-left: 20px;
}
.kome_list li:before {
  content: "※";
  position: absolute;
  left: -20px;
}
/* list */
.ls01 {
  margin-bottom: 40px;
}
.ls01 li {
  counter-increment: number;
  position: relative;
  padding-left: 34px;
  padding-bottom: 10px;
}
.ls01 li:before {
  content: "( " counter(number) " )";
  position: absolute;
  top: 0;
  left: 0;
}
.ls02 {
  margin-bottom: 40px;
}
.ls02 li {
  position: relative;
  padding-left: 16px;
  padding-bottom: 10px;
}
.ls02 li:before {
  content: "●";
  position: absolute;
  color: #777;
  top: 0;
  left: 0;
}
.ls03 {
  margin-bottom: 40px;
}
.ls03 li {
  position: relative;
  padding-left: 16px;
  padding-bottom: 10px;
}
.ls03 li:before {
  content: "・";
  position: absolute;
  color: #777;
  top: 0;
  left: 0;
}
.ls_number li {
  background: url(../img/common/list-style_no.png) no-repeat;
  background-size: 20px auto;
  counter-increment: number;
  margin-top: 8px;
}
.ls_number li::before {
  content: counter(number);
  padding: 0 6px;
  color: #fff;
  margin-right: 8px;
}
.bt_list {
}
.bt_list li {
  position: relative;
  margin-bottom: 5px;
}
.bt_list li a {
  display: block;
  padding: 14px;
  background: #eee;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}
.bt_list li:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bt_list li.no_link {
  display: block;
  padding: 14px;
  background: #eee;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}
.bt_list li.no_link:after {
  content: "";
}
@media screen and (min-width: 768px) {
  .ls_number li {
    background-position: 0 3px;
    background-size: 28px auto;
    margin-top: 10px;
  }
  .ls_number li::before {
    padding: 0 10px;
    color: #fff;
    margin-right: 10px;
  }
  .ls02 li {
    padding-left: 20px;
  }
  .bt_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .bt_list li {
    width: 49%;
    margin-bottom: 2%;
  }
  .bt_list li.no_link {
    width: 43.5%;
    margin-bottom: 2%;
  }
}
/* table*/
.ts01 {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ts01 dt {
  width: 24%;
  padding: 14px 0;
  text-align: center;
  background: #f7f7f7;
  border-bottom: 1px solid #d8d8d8;
}
.ts01 dd {
  width: 71%;
  padding: 14px 2.5%;
  border-bottom: 1px solid #d8d8d8;
}
.ts02 {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ts02 dt {
  width: 22%;
  padding: 14px 2.5%;
  border-bottom: 1px solid #d8d8d8;
}
.ts02 dd {
  width: 68%;
  padding: 14px 2.5%;
  border-bottom: 1px solid #d8d8d8;
}
.ts03 {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.2rem;
}
.ts03 dt {
  width: 22%;
  padding: 5px 2%;
  border-bottom: 1px solid #d8d8d8;
}
.ts03 dd {
  width: 70%;
  padding: 5px 2%;
  border-bottom: 1px solid #d8d8d8;
}
.ts04 {
  border-top: 1px solid #d8d8d8;
  margin-bottom: 40px;
  font-size: 1.2rem;
}
.ts04 dt {
  width: 22%;
  padding: 5px 2%;
  border-bottom: 1px solid #d8d8d8;
  display: inline;
}
.ts04 dd {
  width: 70%;
  padding: 5px 2%;
  border-bottom: 1px solid #d8d8d8;
  display: inline-block;
}
.ts05 {
  border-top: 1px solid #d8d8d8;
}
.ts05 dt {
  padding: 14px 0;
  text-align: center;
  background: #f7f7f7;
  border-bottom: 1px solid #d8d8d8;
}
.ts05 dd {
  padding: 14px 2.5%;
  border-bottom: 1px solid #d8d8d8;
}
.ts00 {
  border-top: 1px solid #4996a1;
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ts00 dt {
  width: 24%;
  padding: 14px 0;
  text-align: center;
  background: #c3dde1;
  border-bottom: 1px solid #4996a1;
}
.ts00 dd {
  width: 71%;
  padding: 14px 2.5%;
  border-bottom: 1px solid #4996a1;
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.tbl th {
  background: #eee;
  padding: 20px;
  vertical-align: top;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}

.tbl td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}
.tbl td.column-1 {
  background: #f7f7f7;
}
.tbl td.column-2 {
  width: 18%;
}
.tbl td.column-3 {
  width: 22%;
  text-align: right;
}
.tbl td.column-4 {
  width: 36%;
}
.tbl td.column-5 {
  text-align: right;
}
.tbl td.text_r {
  text-align: right;
}
.tbl-r {
  width: 100%;
}
.tbl-r th {
  background: #d8d8d8;
  border: solid 1px #ccc;
  box-sizing: border-box;
  color: #fff;
  padding: 2%;
  text-align: center;
}
.tbl-r td {
  border: solid 1px #ccc;
  box-sizing: border-box;
  text-align: center;
  padding: 2%;
}
.tbl2 {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.tbl2 th {
  padding: 1em;
  vertical-align: top;
  border-bottom: 1px solid #d8d8d8;
  vertical-align: middle;
}

.tbl2 td {
  padding: 1em;
  vertical-align: middle;
  border-bottom: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
}
@media screen and (max-width: 640px) {
  .tbl-r tr {
    display: block;
    float: left;
    border-left: 1px solid #d8d8d8;
    box-sizing: border-box;
  }
  .tbl-r tr td,
  .tbl-r tr th {
    border-left: none;
    display: block;
    height: 60px;
  }
  .tbl-r thead {
    display: block;
    float: left;
  }
  .tbl-r thead tr {
    width: 100%;
  }
  .tbl-r tbody {
    display: block;
    float: left;
    width: 100%;
  }
  .tbl-r tbody tr {
    width: calc(100% / 3);
  }
}
@media screen and (min-width: 768px) {
  .ts01,
  .ts02 {
    margin-bottom: 80px;
  }
  .ts03 dt {
    width: 16%;
    padding: 5px 2%;
    border-bottom: 1px solid #d8d8d8;
  }
  .ts03 dd {
    width: 76%;
    padding: 5px 2%;
    border-bottom: 1px solid #d8d8d8;
  }
  .ts05 {
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ts05 dt {
    width: 30%;
    padding: 14px 2%;
    text-align: left;
  }
  .ts05 dd {
    width: 61%;
  }
  .ts00 {
    margin-bottom: 40px;
  }
}
.bg_p {
  background: #fed8a9;
}
.bg_o {
  background: #fef0df;
}
.bg_g {
  background: #e9f2f4;
}
.bg_b {
  background: #93d3ea !important;
}
.bg_b_ {
  background: #d2ecf5;
}
.txr {
  display: inline-block;
  float: right;
}
.v_writing {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
}
.v_align_m {
  vertical-align: middle !important;
}
@media screen and (max-width: 767px) {
  .obsx {
    overflow-x: scroll;
  }
}

/*toc*/
.toc {
  width: 90%;
  max-width: 640px;
  border: 1px solid #c0c0c0;
  box-sizing: border-box;
  padding: 3%;
  margin: 0 auto 30px auto;
}
.toc h3 {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #c0c0c0;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.toc ul {
  counter-reset: number 0;
}
.toc ul li {
  margin-top: 8px;
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  line-height: 1.5em;
}
.toc ul li::before {
  position: absolute;
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  background-color: #5dc2d0;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
}
.price_toc {
  width: 100%;
  border: 1px solid #c0c0c0;
  box-sizing: border-box;
  padding: 3%;
  margin: 0 auto 30px auto;
}
.price_toc ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.price_toc ul li {
  position: relative;
  width: 46%;
  white-space: nowrap;
  padding-left: 3%;
}
.price_toc ul li a {
  display: block;
  padding: 6px 0;
}
.price_toc ul li:before {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.price_toc ul li.w100 {
  width: 100%;
  display: block;
}
.content_image {
  width: 100%;
  margin-bottom: 20px;
}
.content_image img {
  width: 100%;
  height: auto;
}
.content_image2 {
  width: 90%;
  margin: 0 auto 20px auto;
}
.content_image2 li {
  margin-bottom: 10px;
}
.content_image2 li img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .content_image2 {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
  }
  .content_image2 li {
    width: 49%;
    margin-bottom: 0;
  }
}
.trouble {
  width: 90%;
  max-width: 700px;
  background: #efece5;
  border-radius: 25px 0px 25px 0px;
  /*-webkit-border-radius:25px 0px 25px 0px ;
    -moz-border-radius:25px 0px 25px 0px ;*/
  padding: 5%;
  margin: 0 auto 40px auto;
  position: relative;
}
.trouble li {
  background: url(../img/common/icon_check.png) no-repeat;
  background-size: 20px auto;
  padding-left: 24px;
  margin-bottom: 8px;
}
.trouble .image {
  position: absolute;
  width: 90px;
  right: 0px;
  bottom: 0;

  display: none;
}
.trouble .image img {
  width: 100%;
  height: auto;
}
.flow li {
  padding: 3%;
  margin-bottom: 10px;
  padding-left: 90px;
  min-height: 70px;
}
.flow li:last-child {
  margin-bottom: 0;
}
.flow li:nth-child(1) {
  background: url(../img/common/step01_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(2) {
  background: url(../img/common/step02_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(3) {
  background: url(../img/common/step03_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(4) {
  background: url(../img/common/step04_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(5) {
  background: url(../img/common/step05_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(6) {
  background: url(../img/common/step06_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow li:nth-child(7) {
  background: url(../img/common/step07_.png) no-repeat 10px 10px #fff;
  background-size: 70px auto;
}
.flow h3 {
  font-size: 1.6rem;
}
.feature {
  margin-bottom: 40px;
}
.feature li {
  margin-bottom: 30px;
}
.feature h3 {
  color: #6f6815;
  font-size: 1.6rem;
  line-height: 1.4;
  height: 45px;
  position: relative;
  padding-left: 70px;
  padding-top: 15px;
  margin-bottom: 15px;
  position: relative;
}
.feature h3 span {
  position: absolute;
}
.feature li:nth-child(1) {
  background: url(../img/common/icon_feature01.png) no-repeat 0 10px;
  background-size: 56px auto;
}
.feature li:nth-child(2) {
  background: url(../img/common/icon_feature02.png) no-repeat 0 10px;
  background-size: 56px auto;
}
.feature li:nth-child(3) {
  background: url(../img/common/icon_feature03.png) no-repeat 0 10px;
  background-size: 56px auto;
}
.feature li:nth-child(4) {
  background: url(../img/common/icon_feature04.png) no-repeat 0 10px;
  background-size: 56px auto;
}
.effect {
  margin-bottom: 40px;
}
.effect li {
  margin-bottom: 30px;
}
.effect h3 {
  color: #6f6815;
  font-size: 1.6rem;
  line-height: 1.4;
  height: 45px;
  position: relative;
  padding-left: 70px;
  padding-top: 15px;
  margin-bottom: 20px;
}
.effect li:nth-child(1) {
  background: url(../img/common/effect01.png) no-repeat;
  background-size: 56px auto;
}
.effect li:nth-child(2) {
  background: url(../img/common/effect02.png) no-repeat;
  background-size: 56px auto;
}
.effect li:nth-child(3) {
  background: url(../img/common/effect03.png) no-repeat;
  background-size: 56px auto;
}
.point {
  margin-bottom: 40px;
}
.point li {
  margin-bottom: 30px;
}
.point h3 {
  color: #6f6815;
  font-size: 1.6rem;
  line-height: 1.4;
  height: 45px;
  position: relative;
  padding-left: 70px;
  padding-top: 15px;
  margin-bottom: 20px;
}
.point li:nth-child(1) {
  background: url(../img/common/point01.png) no-repeat;
  background-size: 56px auto;
}
.point li:nth-child(2) {
  background: url(../img/common/point02.png) no-repeat;
  background-size: 56px auto;
}
.point li:nth-child(3) {
  background: url(../img/common/point03.png) no-repeat;
  background-size: 56px auto;
}
.point li:nth-child(4) {
  background: url(../img/common/point04.png) no-repeat;
  background-size: 56px auto;
}
.tm_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tm_list li {
  width: 49%;
  background: #fff;
  margin-bottom: 10px;
  position: relative;
}
.tm_list li a {
  display: block;
  padding: 14px;
  color: #333;
  text-decoration: none;
}
.tm_list li a:hover {
  text-decoration: none;
  background: #f7f7f7;
}
.tm_list li:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tag_list {
  display: flex;
  background: url(../img/common/icon_tag.png) no-repeat 0 2px;
  background-size: 22px 22px;
  padding-left: 36px;
  margin: 60px 0;
}
.tag_list li {
  margin-right: 24px;
  font-weight: bold;
}

.trouble_tag {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.trouble_tag h3 {
  color: #fff;
  background-color: #bba375;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 10px;
  min-height: 100%;
  margin: 0px;
}
.trouble_tag ul {
  width: calc(100% - 170px);
  text-align: left;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  color: #666;
}
.trouble_tag ul li a {
  display: inline-block;
  text-decoration: none;
}
.trouble_tag ul li:after {
  content: "／";
  margin: 0px 5px;
}
.trouble_tag ul li:last-child:after {
  display: none;
}
.method,
.method3 {
  margin-bottom: 40px;
}
.method li,
.method3 li {
  margin-bottom: 20px;
}
.method li h4,
.method3 li h4,
.method3 li h3 {
  background: #e0f1f4;
  padding: 10px;
  margin-bottom: 15px;
}
.method li h4 span,
.method3 li h4 span,
.method3 li h3 span {
  font-size: 1.2rem;
  padding-right: 8px;
}
.method li h4 span:after,
.method3 li h4 span:after,
.method3 li h3 span:after {
  content: "｜";
}
.method li .image {
  width: 40%;
  margin: 0 auto 10px auto;
}
.method3 li .image {
  width: 80%;
  margin: 0 auto 10px auto;
}
.method li .image2,
.method3 li .image2 {
  width: 100%;
  margin: 0 auto;
}
.method3 li .image3 {
  width: 60%;
  margin: 0 auto 10px auto;
}
.method li .image img,
.method li .image2 img,
.method3 li .image img,
.method3 li .image2 img,
.method3 li .image3 img {
  width: 100%;
  height: auto;
}
.method ul {
}
.method ul li,
.method3 ul li {
  position: relative;
  margin-bottom: 5px;
}
.method ul li a,
.method3 ul li a {
  display: block;
  padding: 14px;
  background: #eee;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}
.method ul li:after,
.method3 ul li:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.method3 ul li.no_link {
  display: block;
  padding: 14px;
  background: #eee;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}
.method3 ul li.no_link:after {
  content: "";
}
.casephoto_3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  background-image: url(../img/common/arrow_r.png),
    url(../img/common/arrow_r.png);
  background-position: left 32% center, left 68% center;
  background-repeat: no-repeat, no-repeat;
  background-size: 30px auto;
}
.casephoto_3 li {
  width: 30%;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.casephoto_3 li::after {
  background: url(../img/common/arrow_r.png) no-repeat;
  background-position: right center;
  background-size: 20px auto;
}
.casephoto_3 li span.before {
  display: block;
  background: #939393;
  padding: 3%;
}
.casephoto_3 li span.after {
  display: block;
  background: #ed8e21;
  padding: 3%;
}
.casephoto_3 li img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  /*	.toc {
		padding: 20px 30px;
		margin: 0 auto 60px auto;
	}*/
  .toc ul li {
    padding: 0.5em 0.5em 0.5em 34px;
  }
  .toc ul li::before {
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
  .price_toc ul::after {
    content: "";
    display: block;
    width: 30%;
    padding-left: 2%;
  }
  .price_toc ul li {
    width: 30%;
    white-space: nowrap;
    padding-left: 2%;
  }
  .content_image {
    margin-bottom: 30px;
  }
  .trouble {
    margin-bottom: 80px;
  }
  .trouble ul {
    width: 76%;
  }
  .trouble li {
    font-size: 2rem;
    background-position: 0 10px;
    background-size: 26px;
    padding-left: 40px;
  }
  .trouble .image {
    width: 240px;
    right: 5px;
    bottom: 0;
    position: absolute;
    display: block;
  }
  .flow li {
    padding: 30px;
    margin-bottom: 15px;
    padding-left: 180px;
    min-height: 100px;
  }
  .flow li:nth-child(1),
  .flow li:nth-child(2),
  .flow li:nth-child(3),
  .flow li:nth-child(4),
  .flow li:nth-child(5),
  .flow li:nth-child(6),
  .flow li:nth-child(7) {
    background-size: 120px auto;
    background-position: 30px 20px;
  }
  .flow h3 {
    font-size: 2rem;
  }
  .feature {
    margin-bottom: 80px;
  }
  .feature li {
    margin-bottom: 60px;
  }
  .feature h3 {
    color: #6f6815;
    font-size: 2rem;
    height: 80px;
    position: relative;
    padding-left: 90px;
    padding-top: 15px;
    margin-bottom: 15px;
  }
  .feature li:nth-child(1),
  .feature li:nth-child(2),
  .feature li:nth-child(3),
  .feature li:nth-child(4) {
    background-size: 80px auto;
    background-position: 0 0;
  }
  .effect {
    margin-bottom: 80px;
  }
  .effect li {
    margin-bottom: 60px;
  }
  .effect h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding-left: 80px;
    padding-top: 50px;
    margin-bottom: 20px;
  }
  .effect li:nth-child(1),
  .effect li:nth-child(2),
  .effect li:nth-child(3) {
    background-size: 74px auto;
  }
  .point {
    margin-bottom: 80px;
  }
  .point li {
    margin-bottom: 60px;
  }
  .point h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding-left: 80px;
    padding-top: 50px;
    margin-bottom: 20px;
  }
  .point li:nth-child(1),
  .point li:nth-child(2),
  .point li:nth-child(3),
  .point li:nth-child(4) {
    background-size: 74px auto;
  }
  .method,
  .method3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .method > li {
    width: 48%;
    margin-bottom: 40px;
  }
  .method3 > li {
    width: 31%;
    margin-bottom: 40px;
  }
  .method3::after {
    content: "";
    display: block;
    width: 31%;
  }
}
.content001 .text,
.content002 .text,
.content003 .text,
.content004 .text {
  margin-bottom: 20px;
}
.content001 .image,
.content002 .image,
.content003 .image,
.content004 .image {
  width: 80%;
  margin: 0 auto;
}
.content001 .image img,
.content002 .image img,
.content003 .image img,
.content004 .image img {
  width: 100%;
  height: auto;
}
.box_2c li {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .content001,
  .content002 {
    display: flex;
    justify-content: space-between;
  }
  .content003 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .content004 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .content001 .text {
    width: 64%;
  }
  .content001 .image {
    width: 32%;
  }
  .content002 .text,
  .content003 .text {
    width: 50%;
  }
  .content002 .image {
    width: 45%;
    margin: 0;
  }
  .content003 .image {
    width: 45%;
    margin: 0;
  }
  .content004 .text {
    width: 60%;
  }
  .content004 .image {
    width: 35%;
    margin: 0;
  }
  .box_2c {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .box_2c li {
    width: 48%;
  }
}

.match_list {
  overflow: hidden;
  margin-bottom: 40px;
}
.match_list li {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 5px 15px;
  background: #eee;
  border-radius: 25px;
}
.match_list li a {
  display: block;
  /*padding: 5px 15px;
	background: #EEE;*/
  /*border-radius: 25px;*/
  text-decoration: none;
}
.recommend {
  border: 1px solid #ccc;
  width: 92%;
  padding: 4%;
  margin-bottom: 40px;
}
.recommend h3 {
  color: #bba375;
  text-align: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.recommend h3 span {
  background: #bba375;
  color: #fff;
  padding: 2px 6px;
  display: inline-block;
}
.recommend ul {
  width: 100%;
}
.recommend ul li {
  background: url(../img/common/check.png) no-repeat 0 7px;
  background-size: 28px auto;
  padding: 10px 0 10px 30px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .match_list {
    margin-bottom: 80px;
  }
  .recommend {
    padding: 2% 3% 3% 3%;
    margin-bottom: 80px;
  }
  .recommend h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .recommend h3 span {
    font-size: 1.4rem;
  }
  .recommend ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
  }
  .recommend ul li {
    width: 44%;
    background-position: 0 10px;
  }
}

.doctors {
  width: 94%;
  margin-bottom: 20px;
  background: #e9f2f4;
  padding: 3%;
  overflow: hidden;
}
.doctors .image {
  width: 40%;
  margin-right: 20px;
  margin-bottom: 14px;
  float: left;
}
.doctors .image img {
  width: 100%;
  height: auto;
}
.doctors .image span {
  font-size: 1.2rem;
}
.menu_case {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .doctors {
    width: 88%;
    padding: 4% 6%;
    overflow: hidden;
    margin-bottom: 40px;
  }
  .doctors .image {
    width: 160px;
    margin-right: 40px;
  }
  .doctors .image span {
    font-size: 1.6rem;
  }
  .doctors p {
    padding-top: 20px;
  }
  .menu_case {
    margin-bottom: 40px;
  }
}

/*ハンバーガーナビのスタイル*/
nav.NavMenu {
  margin-top: 62px;
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100%;
  display: none;
  overflow-y: scroll;
}
nav.NavMenu ul.navmenu_list {
  /*margin-bottom: 92px;*/
  margin-bottom: 120px;
}
nav.NavMenu ul li a {
  display: block;
  color: #333;
  text-decoration: none;
}

/*ボタンのスタイル*/
.Toggle {
  /*position: fixed;
right:18px;
top: 3px;*/
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 13;
  display: block;
  background: #5dc2d0;
  padding: 10px;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 40px;
  border-bottom: solid 4px #fff;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  left: 10px;
}

.Toggle span:nth-child(1) {
  /*top: 19px;*/
  top: 14px;
}

.Toggle span:nth-child(2) {
  /*top: 30px;*/
  top: 25px;
}

.Toggle span:nth-child(3) {
  /*top: 41px;*/
  top: 36px;
}

.Toggle.active span:nth-child(1) {
  /*top: 28px;*/
  top: 23px;
  left: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #fff;
}
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  /*top: 28px;*/
  top: 23px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #fff;
}
.Toggle p {
  color: #fff;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 14px;
}
.tm_nav {
  display: none;
}
.nav-open {
  color: #333;
  background: #eee;
  position: relative;
  padding: 1em;
  margin-bottom: 2px;
}
.nav-open::before {
  content: "－";
  position: absolute;
  right: 20px;
}
.nav-open.active::before {
  /* 開いている時 */
  content: "＋";
}
.single_list {
  color: #333;
  background: #eee;
  position: relative;
  padding: 1em;
  margin-bottom: 2px;
}
.single_list:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
nav.NavMenu .tm_ttl {
  background: #ddd;
}
nav.NavMenu .tm_nav_child li {
  border-bottom: 1px solid #ddd;
  position: relative;
}
nav.NavMenu .tm_nav_child li:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #333;
  text-align: center;
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
nav.NavMenu .tm_nav_child li a {
  display: block;
  padding: 1em 2em;
}

nav.NavMenu .tm_info {
  display: flex;
  margin-bottom: 0;
}
nav.NavMenu .tm_info li {
  width: 50%;
  text-align: center;
  position: relative;
}
nav.NavMenu .tm_info li:after {
  content: "›";
  width: 1em;
  height: 1em;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
nav.NavMenu .tm_info li a {
  display: block;
  padding: 1.6em 0;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 1em;
}
nav.NavMenu .tm_info li.reserve {
  background: #5dc2d0;
}
nav.NavMenu .tm_info li.contact {
  background: #fda8a7;
}

/*フッターナビのスタイル*/
@media screen and (max-width: 768px) {
  .fcl {
    margin-bottom: 20px;
  }
  .F_NavMenu {
  }
  .nav-open2,
  .nav-open3 {
    color: #333;
    background: #fff;
    position: relative;
    padding: 1em;
    margin-bottom: 2px;
  }
  .nav-open2::before {
    content: "－";
    position: absolute;
    right: 20px;
  }
  .nav-open3::before {
    content: "＋";
    position: absolute;
    right: 20px;
  }
  .nav-open2.active::before {
    content: "＋";
  }
  .nav-open3.active::before {
    content: "－";
  }
  nav.F_NavMenu .single_list2 {
    color: #333;
    background: #fff;
    position: relative;
    /*padding: 1em;*/
    margin-bottom: 2px;
  }
  nav.F_NavMenu .single_list2:after {
    content: "›";
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  nav.F_NavMenu .tm_ttl {
    background: #c48080;
    color: #fff;
  }
  nav.F_NavMenu .tm_nav_child li {
    border-bottom: 1px solid #ddd;
    position: relative;
    background: #eee;
  }
  nav.F_NavMenu .tm_nav_child li:after {
    content: "›";
    width: 1em;
    height: 1em;
    line-height: 1;
    color: #333;
    text-align: center;
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  nav.F_NavMenu .tm_nav_child li a {
    display: block;
    padding: 1em 2em;
  }
  nav.F_NavMenu a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 1em;
  }
}
@media screen and (min-width: 769px) {
  .F_NavMenu {
    text-align: left;
    margin: 30px 0;
  }
  .F_NavMenu a {
    color: #777;
    text-decoration: none;
  }
  nav.F_NavMenu .tm_nav {
    display: block;
  }
  nav.F_NavMenu .tm_nav2 ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  nav.F_NavMenu .tm_nav2 ul li {
    margin-right: 30px;
    margin-bottom: 10px;
    position: relative;
    /*padding-right: 1em;*/
    /*font-size: 1.2rem;*/
    /*padding-left: 0.8em;*/
  }
  nav.F_NavMenu .tm_nav2 ul li::after {
    font-size: 14px;
    position: absolute;
    top: 3px;
    left: 0;
  }
  nav.F_NavMenu .single_list2 {
    color: initial;
    background: initial;
    position: initial;
    padding: initial;
    margin-bottom: initial;
  }
  nav.F_NavMenu .single_list2 {
    margin-bottom: 20px;
    float: left;
    margin-right: 2em;
    position: relative;
    white-space: nowrap;
  }
  nav.F_NavMenu li.nav-open2 {
    font-weight: bold;
    /*padding: 0.5em 0;*/
  }
  nav.F_NavMenu .tm_ttl {
    margin-bottom: 16px;
  }

  .fbox1 {
    display: flex;
    flex-wrap: wrap;
  }
  .fbox1 .p_cate {
    width: 20%;
  }
  .fbox1 .c_cate {
    width: 80%;
  }
}

.section07_ .tm_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .section07_ .tm_nav {
    display: block;
  }
}
.doctor_info {
  background: #e0f1f4;
}
.doctor_info .read-more-001 label {
  background: #e0f1f4;
}
.clear {
  clear: both;
}

/* ページ上部へ戻るボタン */
#return_top {
  opacity: 0.5;
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 100;
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  width: 55px;
  height: 55px;
  margin: 0;
  padding: 0;
  background: #000 url(../img/common/return_top.png) no-repeat center center;
  -moz-border-radius: 100%;
  -khtml-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}
#return_top:hover {
  opacity: 1;
}

/*   マージン設定  */
.mb0 {
  margin-bottom: 0px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb80 {
  margin-bottom: 80px;
}
.mt40 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .mb10 {
    margin-bottom: 20px;
  }
  .mb20 {
    margin-bottom: 40px;
  }
  .mb30 {
    margin-bottom: 60px;
  }
  .mb40 {
    margin-bottom: 80px;
  }
  .mb60 {
    margin-bottom: 120px;
  }
  .mb80 {
    margin-bottom: 160px;
  }
  .mt40 {
    margin-top: 80px;
  }
}
