@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
  overflow: hidden;
}
.sp {
  display: none;
}
.area {
  padding: 70px 20px;
  box-sizing: border-box;
}
.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}
.ttl01 {
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}
.ttl01.blue::after {
  position: absolute;
  content: "";
  background: url("../img/common/line_b.png") no-repeat center/619px 67px;
  width: 619px;
  height: 67px;
  bottom: -40px;
  right: 50%;
  transform: translate(50%, 50%);
}
.ttl01.white::after {
  position: absolute;
  content: "";
  background: url("../img/common/line_w.png") no-repeat center/619px 67px;
  width: 619px;
  height: 67px;
  bottom: -10px;
  right: 50%;
  transform: translate(50%, 50%);
}
.ttl01.short::after {
  position: absolute;
  content: "";
  background: url("../img/common/line_s.png") no-repeat center/276px 30px;
  width: 276px;
  height: 30px;
  bottom: -20px;
  right: 50%;
  transform: translate(50%, 50%);
}
.logo img {
  max-width: 312px;
}
.breadcrumb {
  font-size: 75%;
  margin-top: 15px;
  color: #4e2f06;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .area {
    padding: 30px 20px;
  }
  .inner {
    max-width: 100%;
  }
  .ttl01 {
    font-size: 140%;
  }
  .ttl01.blue::after {
    background: url("../img/common/line_b.png") no-repeat center/309px 33px;
    width: 309px;
    height: 33px;
    bottom: -30px;
  }
  .ttl01.white::after {
    background: url("../img/common/line_w.png") no-repeat center/309px 33px;
    width: 309px;
    height: 33px;
    bottom: -10px;
  }
  .logo img {
    max-width: 200px;
  }
  .breadcrumb {
    padding: 0 20px;
  }
}

/* sp_nav
-------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* toggle_menu */
  #btn_nav {
    position: fixed;
    top: 12px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 18px;
    padding: 0 0 15px;
  }
  #btn_nav span {
    display: inline-block;
    background: #e2909d;
    width: 25px;
    height: 2px;
    transition: 0.5s;
    position: relative;
  }
  #btn_nav.active span {
    background: #fff;
    transform: translateY(8px) rotate(225deg);
  }
  #btn_nav.active span:nth-child(2) {
    transform: scaleX(0);
  }
  #btn_nav.active span:last-child {
    transform: translateY(-8px) rotate(-225deg);
  }
  #btn_nav::after {
    content: "MENU";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 75%;
    color: #e2909d;
    transition: 0.5s;
  }
  #btn_nav.active::after {
    content: "CLOSE";
    color: #fff;
  }
  #nav_sp nav,
  #nav_sp nav::after {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  #nav_sp nav {
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: auto;
    text-align: center;
    background: rgba(226, 144, 157, 0.6);
    right: -100%;
    z-index: 998;
    transition: 0.5s;
  }
  #nav_sp nav::after {
    content: "";
    background: rgba(226, 144, 157, 0.9);
    left: -100%;
    z-index: -1;
    transition: 0.7s;
  }
  #nav_sp nav.active {
    right: 0;
  }
  #nav_sp nav.active::after {
    left: 0;
  }
  #nav_sp ul li:first-child {
    border-top: 1px solid #fff;
  }
  #nav_sp ul li {
    border-bottom: 1px solid #fff;
  }
  #nav_sp ul li a {
    display: block;
    color: #fff;
    padding: 10px;
  } /* toggle_menu end */
}

/* index
-------------------------------------------------------*/
#index_main {
  background: url("../img/index/area01_bg.png?v=20250803") repeat-y center/cover;
}
#index_main .visual_bg {
  background: url("../img/index/visual_bg.png?v=20250803") no-repeat
    center/cover;
}
.visual_bg #header {
  box-sizing: border-box;
  /* border-bottom: 1px solid #fff; */
}
.visual_bg #header .inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  padding: 20px 25px 20px 40px;
}
.visual_bg #nav_pc ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: center;
}
.visual_bg #nav_pc ul li {
  padding: 0 15px;
  text-align: center;
}
.visual_bg #nav_pc ul li img {
  max-width: 38px;
}
.visual_bg #nav_pc ul li p {
  margin-top: 4px;
  color: #4e2f06; /* 文字色（自由に変更可） */
  font-weight: bold; /* 太字にすると縁が映える */
  text-shadow: -1.2px -1.2px 0 #fff, 1.2px -1.2px 0 #fff, -1.2px 1.2px 0 #fff,
    1.2px 1.2px 0 #fff;
}
.visual_bg .visual_txt {
  padding: 0 0 40px;
  position: relative;
}

.visual_banner {
  position: absolute;
  right: 30px;
  top: 30px;
}

.visual_banner li {
  max-width: 260px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  .visual_banner li {
    max-width: 160px;
  }
}
@media screen and (max-width: 1000px) {
  .visual_banner {
    position: relative;
    max-width: 260px;
    margin: 0 auto;
    right: inherit;
    top: inherit;
    margin-top: -50px;
  }

  .visual_banner li {
    max-width: 100%;
  }
}

#index_main #area01.area {
  padding: 70px 20px 120px;
}
#index_main #area01 .inner {
  max-width: 780px;
}
#index_main #area01 .ttl01 {
  margin: 0 0 100px;
}
#index_main #area01 .ttl01 img {
  max-width: 714px;
}
#index_main #area01 .box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
#index_main #area01 .box .img {
  width: 30%;
  padding: 0 30px 0 0;
}
#index_main #area01 .box .img img {
  max-width: 211px;
}
#index_main #area01 .box .txt {
  font-size: 110%;
  color: #4c371f;
  width: 70%;
  line-height: 1.6;
}
#index_main #area01 .box .txt span {
  font-size: 80%;
}

#index_main #area01 span.txt_s {
  font-size: 80%;
}

@media screen and (max-width: 768px) {
  #index_main {
    text-align: center;
  }
  #index_main .visual_bg {
    background: url("../img/index/visual_bg_sp.png?v=20250803") no-repeat
      center/cover;
  }
  .visual_bg #header .inner {
    padding: 10px;
  }
  .visual_bg .wrap {
    width: 100%;
  }
  .visual_bg .wrap .logo {
    text-align: center;
  }
  .visual_bg #nav_pc ul.pc {
    display: none;
  }
  .visual_bg .inner {
    padding: 0;
  }
  #index_main #area01.area {
    padding: 30px 20px 60px;
  }
  #index_main #area01 .box {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  #index_main #area01 .ttl01 img {
    max-width: 400px;
    margin: 0 auto;
  }
  #index_main #area01 .box .img {
    width: 100%;
    padding: 0 0 20px;
    text-align: center;
  }
  #index_main #area01 .box .txt {
    font-size: 100%;
    width: 100%;
    text-align: left;
  }
  #index_main #area01 .ttl01 {
    margin: 0 0 60px;
  }
}

#index #area02 {
  background: url("../img/index/area02_bg.png");
}
#index #area02.area {
  padding: 20px 20px 70px;
}
#index #area02 .ttl01 {
  margin: 0 0 70px;
  position: relative;
}
#index #area02 .ttl01::before {
  position: absolute;
  content: "";
  display: block;
  background: url("../img/index/area02_top.png") no-repeat center/1390px 67px;
  /*width: 1390px;*/
  width: 1385px;
  height: 67px;
  top: -120px;
  right: 50%;
  transform: translate(50%, 50%);
}
#index #area02 .ttl01 img {
  max-width: 911px;
}
#index #area02 .top {
  position: relative;
}
#index #area02 .top .flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#index #area02 .top .flex .box {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  /* align-items: flex-start; */
  align-items: center;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#index #area02 .top .flex .box:first-child {
  /* margin: 0 1% 0 0; */
}
#index #area02 .top .flex .box .img {
  margin: 0 20px 0 0;
  width: 40%;
  text-align: center;
}
#index #area02 .top .flex .box .img img {
  max-width: 320px;
}
#index #area02 .top .flex .box .txt_box {
  color: #66c4c4;
  width: 60%;
  max-width: 360px;
}
#index #area02 .top .flex .box .txt_box .ttl {
  font-size: 160%;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.2;
}
#index #area02 .top .flex .box .txt_box .txt {
  line-height: 2;
  font-size: 120%;
}
#index #area02 .top .icon01 {
  position: absolute;
  top: -116px;
  left: -40px;
}
#index #area02 .top .icon01 img {
  max-width: 99px;
}
#index #area02 .top .icon02 {
  position: absolute;
  top: -50px;
  right: -20px;
}
#index #area02 .top .icon02 img {
  max-width: 78px;
}
#index #area02 .bottom {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#index #area02 .bottom .box {
  background: #fff;
  padding: 20px;
  width: 33%;
  border-radius: 10px;
  box-sizing: border-box;
}
#index #area02 .bottom .box:not(:last-child) {
  margin: 0 2% 0 0;
}
#index #area02 .bottom .box .img {
  margin: 0 0 20px;
  text-align: center;
}
#index #area02 .bottom .box .img img {
  max-width: 190px;
}
#index #area02 .bottom .box .ttl {
  font-size: 110%;
  font-weight: bold;
  line-height: 1.2;
  color: #66c4c4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #index #area02.area {
    padding: 30px 20px;
  }
  #index #area02 .ttl01::before {
    top: -131px;
  }
  #index #area02 .ttl01 {
    margin: 0 0 50px;
  }
  #index #area02 .top .flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #index #area02 .top .flex .box .img {
    width: 100%;
    margin: 0;
  }
  #index #area02 .top .flex .box .txt_box {
    width: 100%;
  }
  #index #area02 .top .flex .box {
    width: 100%;
  }
  #index #area02 .top .flex .box:first-child {
    margin: 0 0 20px;
    flex-flow: wrap;
    row-gap: 20px;
  }
  #index #area02 .top .flex .box .txt_box .ttl {
    font-size: 150%;
    margin: 0 0 10px;
  }
  #index #area02 .bottom {
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  #index #area02 .bottom .box {
    width: 47%;
    margin: 0 0 20px;
  }
  #index #area02 .bottom .box:not(:last-child) {
    margin: 0;
  }
  #index #area02 .bottom .box:nth-child(odd) {
    margin: 0 3% 20px 0;
  }
  #index #area02 .bottom .box .img {
    text-align: center;
  }
  #index #area02 .bottom .box .ttl {
    font-size: 120%;
  }
  #index #area02 .top .icon02 {
    right: 0px;
    top: -30px;
  }
  #index #area02 .top .icon02 img {
    max-width: 50px;
  }
  #index #area02 .top .icon01 {
    top: -66px;
    left: -10px;
  }
  #index #area02 .top .icon01 img {
    max-width: 60px;
  }
}

#index #area03 {
  background: url("../img/index/area03_bg.png");
}
#index #area03.area {
  padding: 70px 20px 100px;
}
#index #area03 .inner {
  position: relative;
}
#index #area03 .ttl01 img {
  max-width: 154px;
}
#index #area03 ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: flex-start;
  margin: 0;
}
#index #area03 ul li {
  width: 24%;
}
#index #area03 ul li:not(:last-child) {
  margin: 0 1% 0 0;
}
#index #area03 ul li:nth-child(even) {
  padding: 60px 0 0;
}
#index #area03 ul li img {
  max-width: 253px;
}
#index #area03 ul li:nth-child(2) img {
  max-width: 243px;
}
#index #area03 ul li:nth-child(3) img {
  max-width: 251px;
}
#index #area03 ul li:last-child img {
  max-width: 249px;
}
#index #area03 .icon01 {
  position: absolute;
  bottom: -46px;
  right: 50%;
  transform: translate(50%, 50%);
}
#index #area03 .icon01 img {
  max-width: 401px;
}
#index #area03 .icon02 {
  position: absolute;
  bottom: -100px;
  right: -10px;
}
#index #area03 .icon02 img {
  max-width: 112px;
}
@media screen and (max-width: 768px) {
  #index #area03 {
    overflow: hidden;
  }
  #index #area03.area {
    padding: 30px 20px;
  }
  #index #area03 ul {
    flex-flow: row wrap;
    /* justify-content: flex-start; */
    align-items: flex-start;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  #index #area03 ul li:not(:last-child) {
    margin: 0;
  }
  #index #area03 ul li:first-child,
  #index #area03 ul li:nth-child(2) {
    margin: 0 0 20px;
  }
  #index #area03 ul li {
    width: 48%;
    text-align: center;
  }
  #index #area03 ul li:nth-child(even) {
    padding: 0 0 0 2%;
  }
  #index #area03 .icon02 {
    display: none;
  }
  #index #area03 .icon01 {
    position: inherit;
    text-align: center;
    bottom: 9px;
  }
}

/* news
-------------------------------------------------------*/
#news_main {
  background: url("../img/common/sub_header_bg.png") no-repeat center/cover;
}
#news_main .ttl {
  padding: 60px 0 0;
}

#news {
  font-size: 120%;
}
#news #area01 h3 img {
  max-width: 236px;
}
#news #area01 .ttl01 {
  margin: 0 0 120px;
}
#news #area01 .topic {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #c7ece3;
  color: #4c371f;
}
#news #area01 .topic .ttl {
  margin: 0 0 30px;
  position: relative;
  padding: 0 0 0 20px;
}
#news #area01 .topic .ttl::before {
  content: "";
  position: absolute;
  background: url("../img/news/news_icon.png") no-repeat center/ 16px 16px;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  display: flex;
}
#news #area01 .topic .ttl span {
  color: #00a79b;
  font-weight: bold;
  font-size: 120%;
}
#news #area01 .topic .txt {
  line-height: 1.6;
}
#news #area01 .topic .txt_h4 {
  font-weight: bold;
}
#news #area01 .topic .brown_box {
  background: #f4efe8;
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 30px;
  display: grid;
  row-gap: 12px;
}
#news #area01 .topic .brown_box .txt_s {
  line-height: 1.5;
  font-size: 90%;
}
@media screen and (max-width: 768px) {
  #news_main .ttl {
    text-align: center;
    padding: 20px 0 0;
  }
  #news #area01 h3 img {
    max-width: 200px;
  }
  #news_main .ttl img {
    margin: 0 auto;
  }
  #news #area01 .ttl01 {
    margin: 0 0 80px;
  }
  #news #area01 .topic .ttl {
    margin: 0 0 20px;
  }
}

/* first
-------------------------------------------------------*/

#first {
  line-height: 1.5;
  color: #4c371f;
}

#first .ttl01 {
  margin-bottom: 80px;
}

#first .first_box {
  line-height: 2;
  font-size: 120%;
}

#first #area01 h3 img {
  max-width: 396px;
}

#first #area02 h3 img {
  max-width: 360px;
}

#first #area02.area {
  padding: 0px 20px 70px 20px;
}

.first_box dl {
  margin-bottom: 80px;
}

.first_box dl dt {
  font-size: 140%;
  font-weight: bolder;
  color: #00a79b;
  margin-bottom: 20px;
  padding-left: 43px;
  position: relative;
}

.first_box dl dt.first_cont01:before {
  content: "";
  display: block;
  background: url("../img/first/icon01.png") no-repeat center/ 27px 37px;
  width: 27px;
  height: 37px;
  position: absolute;
  left: 0px;
  top: -5px;
}

.first_box dl dt.first_cont02:before {
  content: "";
  display: block;
  background: url("../img/first/icon02.png") no-repeat center/ 41px 41px;
  width: 41px;
  height: 41px;
  position: absolute;
  left: -5px;
  top: -10px;
}

.first_box dl dt.first_cont03:before {
  content: "";
  display: block;
  background: url("../img/first/icon03.png") no-repeat center/ 24px 47px;
  width: 24px;
  height: 47px;
  position: absolute;
  left: 5px;
  top: -15px;
}

.first_box dl dt.first_cont04:before {
  content: "";
  display: block;
  background: url("../img/first/icon04.png") no-repeat center/ 42px 44px;
  width: 42px;
  height: 44px;
  position: absolute;
  left: -5px;
  top: -15px;
}

.first_box dl dd strong {
  font-weight: bold;
}

.first_box dl .img_mynumber {
  width: 100%;
  text-align: right;
  margin-top: -1.5em;
}
.first_box dl .img_mynumber img {
  max-width: 30%;
}
@media screen and (max-width: 768px) {
  .first_box dl .img_mynumber {
    text-align: center;
    margin-top: 0.5em;
  }
  .first_box dl .img_mynumber img {
    max-width: 90%;
  }
  #first #area01 h3 img {
    max-width: 296px;
  }

  #first #area02 h3 img {
    max-width: 260px;
  }
}

/* doctor
-------------------------------------------------------*/
#doctor .ttl01 {
  margin: 0 0 100px;
}
#doctor #area01 .ttl01 img {
  max-width: 240px;
}
#doctor #area01 .box,
#doctor #area02 .box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}
#doctor #area01 .box .img {
  width: 30%;
  padding: 0 10px 0 0;
}
#doctor #area01 .box .img img,
#doctor #area02 .box .img img {
  max-width: 161px;
}
#doctor #area01 .box .txt,
#doctor #area02 .box .txt {
  font-size: 120%;
  width: 100%;
  text-align: left;
  color: #4c371f;
  line-height: 2;
}
#doctor #area01 .box .txt span,
#doctor #area02 .box .txt span {
  font-weight: bold;
}
#doctor .bottom_box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#doctor .bottom_box .txt_box {
  background: #f4efe8;
  border-radius: 10px;
  padding: 20px;
  width: 48%;
  box-sizing: border-box;
}
#doctor .bottom_box .txt_box:first-child {
  margin: 0 2% 0 0;
}
#doctor .bottom_box .txt_box .ttl {
  font-size: 110%;
  font-weight: bold;
  margin: 0 0 20px;
}
#doctor .bottom_box .txt_box .txt {
  line-height: 1.6;
}
#doctor #area02 .ttl01 {
}
#doctor #area02 .ttl01 img {
  max-width: 240px;
}
#doctor #area02 .doctor_box:not(:last-child) {
  margin: 0 0 70px;
}
#doctor #area02 .doctor_box .img {
  margin: 0 0 20px;
  text-align: center;
}
#doctor #area02 .doctor_box .img img {
  max-width: 163px;
}
#doctor #area02 .doctor_box .name {
  text-align: center;
  font-size: 110%;
  font-weight: bold;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  #doctor #area01 .ttl01 img {
    max-width: 200px;
  }
  #doctor .ttl01 {
    margin: 0 0 80px;
  }
  #doctor #area01 .box,
  #doctor #area02 .box {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #doctor #area01 .box .img,
  #doctor #area02 .box .img {
    width: 100%;
    padding: 0 0 20px 0;
    text-align: center;
  }
  #doctor .bottom_box {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #doctor .bottom_box .txt_box {
    width: 100%;
  }
  #doctor .bottom_box .txt_box:first-child {
    margin: 0 0 20px 0;
  }
  #doctor #area02 .doctor_box:not(:last-child) {
    margin: 0 0 40px;
  }
}

/* treatment
-------------------------------------------------------*/
#treatment {
  line-height: 2;
  font-size: 120%;
}
#treatment .area {
  padding: 70px 20px 0;
}
#treatment .ttl01 {
  margin: 0 0 100px;
}
#treatment .box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#treatment .box.flip {
  flex-flow: row-reverse;
}
#treatment .box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#treatment .box .img {
  width: 38%;
  margin: 0 2% 0 0;
}
#treatment .box.flip .img {
  margin: 0 0 0 2%;
  text-align: right;
}
#treatment .box .img img {
  max-width: 323px;
}
#treatment .box .txt_box {
  width: 60%;
}
#treatment .box .txt_box .top_txt {
  margin: 0 0 30px;
}
#treatment .sub_ttl {
  font-size: 140%;
  font-weight: bold;
  color: #00a79b;
  border-bottom: 1px solid #cce9e9;
  margin: 0 0 20px;
  padding: 0 0 10px;
}
#treatment .ttl_pink {
  background: #ffecfe;
  padding: 5px 5px 5px 75px;
  color: #ec729d;
  font-weight: bold;
  font-size: 160%;
  position: relative;
  margin: 0 0 20px;
}
#treatment .ttl_pink::before {
  content: "";
  display: block;
  background: url("../img/treatment/area02_icon.png") no-repeat center/ 53px
    38px;
  width: 53px;
  height: 38px;
  position: absolute;
  left: 10px;
  top: 7px;
}
#treatment .txt_h4 {
  margin-top: 48px;
  font-weight: bold;
}
#treatment #area01 .ttl01 img {
  max-width: 75px;
}
#treatment #area02 .ttl01 img {
  max-width: 112px;
}
#treatment #area03 .ttl01 img {
  max-width: 182px;
}
#treatment #area04 .ttl01 img {
  max-width: 182px;
}

#treatment #area05 .ttl01 img {
  max-width: 216px;
}
#treatment #area05 .box {
  justify-content: space-evenly;
}

#treatment #area03 .box {
  margin: 0 0 50px;
}
#treatment #area03 .txt_box02:not(:last-child) {
  margin: 0 0 30px;
}
#treatment #area03 .brown_box {
  background: #f4efe8;
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 30px;
}
#treatment #area03 .brown_box .sub_ttl {
  color: #4c371f;
  font-weight: bold;
  font-size: 110%;
  margin: 0 0 10px;
  border-bottom: none;
  padding: 0;
}
#treatment #area03 .brown_box .txt:not(:last-child) {
  margin: 0 0 20px;
}
#treatment #area03 .wrap:not(:last-child) {
  margin: 0 0 70px;
}
#treatment #area03 .wrap .brown_box dt {
  margin-top: 10px;
  font-weight: bold;
}
#treatment #area03 .wrap .brown_box dt:first-child {
  margin-top: 0;
}
#treatment #area03 .wrap span {
  color: #ff0000;
}
#treatment #area03 .wrap .txt_s {
  border: 1px solid #4c371f;
  border-radius: 8px;
  padding: 8px;
  font-size: 80%;
}
#treatment #area03 .wrap .txt_s .border_b {
  border-bottom: 1px solid;
}
#treatment #area04.area {
  padding: 70px 20px;
}

#area05 {
  margin-bottom: 50px;
}

#treatment #area05 .priceTB_box {
  width: 80%;
}

#treatment #area05 table.priceTB {
  border: 1px solid #66c4c4;
  border-collapse: collapse;
  width: 100%;
}

#treatment #area05 table.priceTB th {
  border: 1px solid #66c4c4;
  background: #83cdcf;
  color: #fff;
  text-align: left;
  width: 60%;
  padding: 15px;
}

table.priceTB td {
  border: 1px solid #66c4c4;
  text-align: right;
  width: 40%;
  padding: 15px;
}

.price_cap {
  text-align: right;
  font-size: 90%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  #treatment .area {
    padding: 40px 20px 0;
  }
  #treatment #area04.area {
    padding: 40px 20px;
  }
  #treatment .ttl01 {
    margin: 0 0 70px;
  }
  #treatment .sub_ttl {
    font-size: 120%;
    margin: 0 0 10px;
    padding: 0;
  }
  #treatment .ttl_pink {
    padding: 5px 5px 5px 55px;
    font-size: 140%;
  }
  #treatment .ttl_pink::before {
    background: url("../img/treatment/area02_icon.png") no-repeat center/ 35px
      25px;
    width: 35px;
    height: 25px;
    left: 10px;
    top: 7px;
  }
  #treatment .box {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  #treatment #area05 .box {
    display: block;
  }
  #treatment #area05 .priceTB_box {
    width: 100%;
  }

  #treatment .box .img {
    width: 100%;
    margin: 0 0 20px;
    text-align: center;
  }
  #treatment .box .txt_box {
    width: 100%;
  }
  #treatment .box.flip {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #treatment .box.flip .img {
    margin: 0 0 20px;
    text-align: center;
  }
  #treatment #area03 .box {
    margin: 0 0 30px;
  }
  #treatment #area03 .wrap:not(:last-child) {
    margin: 0 0 40px;
  }
  #treatment #area01 .ttl01 img {
    max-width: 60px;
  }
  #treatment #area02 .ttl01 img {
    max-width: 89px;
  }
  #treatment #area03 .ttl01 img {
    max-width: 145px;
  }
  #treatment #area04 .ttl01 img {
    max-width: 145px;
  }

  #treatment #area05 .ttl01 img {
    max-width: 165px;
  }
}

/* hospital
-------------------------------------------------------*/
#hospital #area01 .ttl01 {
  margin: 0 0 100px;
}
#hospital #area01 .ttl01 img {
  max-width: 144px;
}
#hospital #area01 .box {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#hospital #area01 .box .img {
  padding: 0 5% 0 0;
  width: 30%;
}
#hospital #area01 .box .img img {
  max-width: 375px;
}
#hospital #area01 .box .txt_box {
  width: 65%;
  line-height: 2;
  font-size: 120%;
}
#hospital #area01 .box .about {
  margin: 0 0 20px;
}
#hospital #area01 .box .about dl {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 10px;
  line-height: 1.6;
}
#hospital #area01 .box .about dl dt {
  font-weight: bold;
  width: 35%;
  font-size: 110%;
}
#hospital #area01 .box .about dl dd {
  width: 65%;
  font-size: 110%;
}
#hospital #area01 .box .about dl dd span {
  font-size: 80%;
}
#hospital #area01 .box .time table {
  border: 1px solid #7dae23;
  margin: 0 0 10px;
  width: 80%;
  box-sizing: border-box;
}
#hospital #area01 .box .time .green {
  background: #7dae23;
  color: #fff;
  font-size: 110%;
  font-weight: bold;
}
#hospital #area01 .box .time table tr:not(:last-child) {
  border: 1px solid #7dae23;
}
#hospital #area01 .box .time table th {
  border: 1px solid #7dae23;
  padding: 15px 10px;
  color: #7dae23;
  font-weight: bold;
  background: #fff;
}
#hospital #area01 .box .time table td {
  padding: 15px 10px;
  background: #fff;
}
#hospital #area01 .box .time .bottom_txt {
  line-height: 1.5;
  text-align: left;
  font-size: 90%;
}
#hospital #area02 {
  background: url("../img/hospital/bg.png");
}
#hospital #area02 .ttl01 {
  margin: 0 0 100px;
}
#hospital #area02 .ttl01 img {
  max-width: 147px;
}
#hospital #area03 .ttl01 {
  margin: 0 0 100px;
}
#hospital #area03 .ttl01 img {
  max-width: 139px;
}
#hospital #area03 .wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#hospital .left {
  background: #ddf3f4;
  padding: 40px 60px;
  border-radius: 10px;
  width: 28%;
  margin: 0 2% 0 0;
}
#hospital .left .box:not(:last-child) {
  margin: 0 0 40px;
}
#hospital .left .box img {
  max-width: 227px;
  margin: 0 0 20px;
}
#hospital .left .box:nth-child(2) img {
  max-width: 252px;
}
#hospital .left .box:last-child img {
  max-width: 201px;
}
#hospital .right {
  width: 70%;
}
#hospital .right img {
  max-width: 555px;
}

#hospital #area02 .mainImage img {
  text-align: center;
  margin: 0 0 20px;
}
#hospital #area02 .thumbnails {
  margin: 0 auto;
  width: 100%;
}
#hospital #area02 .thumbnails ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
#hospital #area02 .thumbnails ul li {
  width: 18%;
  margin: 0 2% 20px 0;
}
#hospital #area02 .thumbnails ul li:hover {
  opacity: 0.7;
  transition: 0.3s;
  cursor: pointer;
}
#hospital #area02 .thumbnails ul li:nth-child(5n) {
  margin: 0 0 20px;
}
#hospital #area02 .thumbnails img {
}
@media screen and (max-width: 768px) {
  #hospital #area01 .ttl01 {
    margin: 0 0 70px;
  }
  #hospital #area02 .ttl01 {
    margin: 0 0 70px;
  }
  #hospital #area03 .ttl01 {
    margin: 0 0 70px;
  }
  #hospital #area01 .ttl01 img {
    max-width: 115px;
  }
  #hospital #area02 .ttl01 img {
    max-width: 117px;
  }
  #hospital #area03 .ttl01 img {
    max-width: 117px;
  }
  #hospital #area01 .box {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  #hospital #area01 .box .img {
    padding: 0 0 20px 0;
    width: 100%;
    text-align: center;
  }
  #hospital #area01 .box .img img {
    max-width: 250px;
  }
  #hospital #area01 .box .txt_box {
    width: 100%;
  }
  #hospital #area01 .box .about dl {
    flex-wrap: wrap;
  }
  #hospital #area01 .box .about dl dt {
    font-size: 100%;
    width: 100%;
    border-bottom: 2px solid #4c371f;
  }
  #hospital #area01 .box .about dl dd {
    font-size: 100%;
    width: 100%;
  }
  #hospital #area01 .box .time table {
    width: 100%;
  }
  #hospital #area01 .box .time .green {
    font-size: 100%;
  }
  #hospital #area01 .box .time table td {
    padding: 5px;
  }
  #hospital #area01 .box .time table th {
    padding: 5px !important;
  }
  #hospital #area03 .wrap {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  #hospital .left {
    padding: 20px;
    width: 100%;
    margin: 0 0 20px 0;
    box-sizing: border-box;
  }
  #hospital .left .box img {
    max-width: 181px;
    margin: 0 0 10px;
  }
  #hospital .left .box:not(:last-child) {
    margin: 0 0 20px;
  }
  #hospital .left .box:nth-child(2) img {
    max-width: 201px;
  }
  #hospital .left .box:last-child img {
    max-width: 160px;
  }
  #hospital .right {
    width: 100%;
  }
  #hospital #area02 .thumbnails ul li {
    margin: 0 2% 10px 0;
  }
  #hospital #area02 .thumbnails ul li:nth-child(5n) {
    margin: 0 0 10px;
  }
}

/* footer
-------------------------------------------------------*/
#footer {
  text-align: center;
}
#footer.area {
  padding: 0;
}
#footer .inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}
#footer .top {
  background: #66c4c4;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .clinic {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 46%;
  padding: 70px 2%;
}
#footer .top .clinic .ttl01 img {
  max-width: 200px;
}
#footer .top .clinic .logo img {
  max-width: 312px;
  margin: 0 0 15px;
}
#footer .clinic .txt,
#footer .access .txt {
  color: #fff;
  font-size: 100%;
  margin: 10px 0 30px;
}
#footer .clinic .txt_s,
#footer .access .txt_s {
  color: #fff;
  font-size: 90%;
  text-align: left;
  line-height: 1.6;
  width: 100%;
  margin: 10px 0;
}
#footer .tel {
  margin: 20px 0;
}
#footer .tel img {
  max-width: 374px;
}
#footer .clinic table {
  border: 1px solid #7dae23;
  margin: 0 0 10px;
  width: 100%;
  box-sizing: border-box;
}
#footer .clinic .green {
  background: #7dae23;
  color: #fff;
  font-size: 110%;
  font-weight: bold;
}
#footer .clinic table tr:not(:last-child) {
  border: 1px solid #7dae23;
}
#footer .clinic table th {
  border: 1px solid #7dae23;
  padding: 15px 10px;
  color: #7dae23;
  font-weight: bold;
  background: #fff;
}
#footer .clinic table td {
  padding: 15px 10px;
  background: #fff;
}
#footer .clinic .bottom_txt {
  color: #fff;
  line-height: 1.5;
  text-align: left;
  font-size: 90%;
}
#footer .access {
  width: 48%;
  padding: 70px 2%;
  border-left: 1px dashed #fff;
}
#footer .access .ttl01 img {
  max-width: 100px;
}
#footer .access .map img {
  max-width: 430px;
}
#footer .access .map .gmap {
  width: 100%;
}
#footer .bottom {
  padding: 50px 20px;
}
#footer .bottom .logo {
  margin: 0 0 20px;
}
#footer .bottom .copy {
  font-size: 75%;
}
#footer .gcal {
  background: url("../img/index/area01_bg.png") repeat-y top/cover;
  padding: 70px 20px 100px;
}
#footer .gcal .ttl img {
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  #footer .inner {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
  }
  #footer .clinic {
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
  }
  #footer .clinic .green {
    font-size: 100%;
  }
  #footer .clinic table td {
    padding: 5px;
  }
  footer .clinic table th {
    padding: 5px !important;
  }
  #footer .access {
    width: 100%;
    border-top: 1px dashed #fff;
    border-left: none;
    padding: 30px 0 0;
  }
  #footer .bottom {
    padding: 30px 20px;
  }
  #footer .gcal {
    padding: 30px 20px;
  }
}

.rinji_news {
  border: 3px solid #ff0000;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: left;
}

.rinji_news b {
  font-weight: bolder;
  color: #ff0000;
  display: block;
  font-size: 110%;
}

.gcal {
}

.gcal p {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.gcal iframe {
  width: 100%;
}
