@charset "UTF-8";

:root {
  --primary-green: #75C049;
  --secondary-green: #EDF7E3;
  --primary-orange: #D8741F;
  --secondary-orange: #F5E8D3;
  --text-dark: #46392E;
  --text-light: #666666;
  --bg-white: #FFFFFF;
  --bg-cream: rgb(246 241 229 / 50%);
  --font-main: "Noto Sans JP", sans-serif;
}

/* --- スマホ用の設定 --- */
@media screen and (max-width: 600px) {
  .pc {
    display: none !important;
    /* スマホではPCクラスを消す */
  }
}

/* --- PC用の設定 --- */
@media screen and (min-width: 601px) {
  .sp {
    display: none !important;
    /* PCではSPクラスを消す */
  }
}

/* ===================================================================
FileName	:	style.scss
Generator	:	Sass
Date : 18.10.30

↓レスポンシブ対応時に入れるタグ
@include mq(tab) {
  // タブレット時css
}
@include mq {
  // スマホ時css
}
=================================================================== */
/* ===================================================================
Layout Index
=================================================================== */
/* Main Img
--------------------------------------------------------------------*/
.ind_slider {
  padding-bottom: 40px;
}

.ind_slider .inner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ind_slider .caption {
  position: absolute;
}

.ind_slider .caption.type_01 {
  top: 9.5%;
  right: 3.8%;
}

.ind_slider .caption.type_01 .ttl {
  align-items: flex-end;
}

.ind_slider .caption.type_01 .ttl span {
  background: #72B639;
}

.ind_slider .caption.type_01 .ttl span:not(:first-child) {
  font-size: 2.2rem;
}

.ind_slider .caption.type_02 {
  bottom: 13.5%;
  left: 3.8%;
}

.ind_slider .caption.type_02 .ttl {
  align-items: flex-start;
}

.ind_slider .caption.type_02 .ttl span {
  background: #72B639;
}

.ind_slider .caption.type_03 {
  top: 9.5%;
  right: 3.8%;
}

.ind_slider .caption.type_03 .ttl {
  align-items: flex-end;
}

.ind_slider .caption.type_03 .ttl span {
  background: #FFB100;
}

.ind_slider .caption.type_04 {
  bottom: 13.5%;
  left: 3.8%;
}

.ind_slider .caption.type_04 .ttl {
  align-items: flex-start;
}

.ind_slider .caption.type_04 .ttl span {
  background: #EBA200;
}

.ind_slider .caption.type_05 {
  top: 9.5%;
  left: 3.8%;
}

.ind_slider .caption.type_05 .ttl {
  align-items: flex-start;
}

.ind_slider .caption.type_05 .ttl span {
  background: #72B639;
}

.ind_slider .ttl {
  position: static;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  max-width: none;
  width: auto;
  margin-bottom: 0;
}

.ind_slider .ttl span {
  padding: .1em .4em;
  font-size: 1.8rem;
  color: white;
  text-shadow: 0 0 9px rgba(0, 0, 0, 0.2);
}

.ind_slider .ttl span:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (max-width: 960px) {
  .ind_slider .ttl span {
    font-size: 1.9vw;
  }

  .ind_slider .caption.type_01 .ttl span:not(:first-child) {
    font-size: 2.3vw;
  }
}

@media screen and (max-width: 600px) {
  .ind_slider {
    padding-bottom: 20px;
  }

  .ind_slider .ttl span {
    font-size: 2.4vw;
  }

  .ind_slider .caption.type_01 .ttl span:not(:first-child) {
    font-size: 3.6vw;
  }
}

.bx-wrapper {
  margin-bottom: 40px;
  box-shadow: none;
  border: none;
  background: none;
}

.bx-wrapper .bx-pager {
  bottom: 15px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #F5F1E5;
}

.bx-wrapper .bx-controls-direction a {
  width: 20px;
}

.bx-wrapper .bx-prev {
  background-image: url(../img/index/ico_chevron-left.svg);
  background-position: 0 0;
}

.bx-wrapper .bx-next {
  background-image: url(../img/index/ico_chevron-right.svg);
  background-position: 0 0;
}

@media screen and (max-width: 600px) {
  .bx-wrapper {
    margin-bottom: 20px;
  }

  .bx-wrapper .bx-pager {
    bottom: 10px;
  }

  .bx-wrapper .bx-prev,
  .bx-wrapper .bx-next {
    display: none;
  }
}

/* Section Information
--------------------------------------------------------------------*/
.ind_sec_info {
  padding-bottom: 40px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.ind_sec_info .layout_inner {
  max-width: 430px;
  width: 100%;
  padding-left: 2%;
}

.ind_sec_info .ttl {
  padding-bottom: 1em;
  font-size: 1.8rem;
  color: #72B639;
}

.ind_sec_info .btn {
  text-align: right;
}

.ind_sec_info .sec_news {
  border-radius: 10px;
  background: white;
  max-width: 335px;
  width: 100%;
  padding: 25px;
}

.ind_sec_info .sec_news .ttl:before {
  content: '\f044';
  padding-right: .4em;
  font-family: FontAwesome;
}

.ind_sec_info .sec_news .list {
  padding-bottom: 20px;
  font-size: 1.4rem;
}

.ind_sec_info .sec_news .list li:not(:last-child) {
  padding-bottom: 20px;
}

.ind_sec_info .sec_news .summary .cat a {
  padding: 0;
  font-size: 1.2rem;
  color: #46392E;
  text-decoration: underline;
  background: none;
}

.ind_sec_info .sec_news .summary .cat a:before {
  content: '#';
}

.ind_sec_info .sec_news .summary .cat a:hover {
  text-decoration: none;
}

.ind_sec_info .medical_time {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

.ind_sec_info .medical_time .ttl:before {
  content: '\f017';
  padding-right: .4em;
  font-family: FontAwesome;
}

.ind_sec_info .medical_time .tbl {
  border: none;
}

.ind_sec_info .medical_time .tbl th {
  display: table-cell;
  padding: 0;
  font-size: 1.8rem;
  border: none;
  background: none;
}

.ind_sec_info .medical_time .tbl td {
  display: table-cell;
  padding: 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  border: none;
}

.ind_sec_info .medical_time .annotation {
  font-size: 1.6rem;
  color: #D36100;
}

.ind_sec_info .access {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.ind_sec_info .access a {
  text-decoration: none;
}

.ind_sec_info .access .ttl:before {
  content: '\f124';
  padding-right: .4em;
  font-family: FontAwesome;
}

.ind_sec_info .access .tel {
  font-size: 3rem;
  text-align: center;
  line-height: 1;
}

.ind_sec_info .access .tel a {
  color: #72B639;
}

.ind_sec_info .access .address {
  padding-bottom: 20px;
}

.ind_sec_info .access .txt_01 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
}

.ind_sec_info .access .txt_01 .zip {
  padding-right: 1.2em;
  font-size: 1.6rem;
}

.ind_sec_info .access .txt_01 .residence {
  font-size: 1.8rem;
}

.ind_sec_info .access .txt_02 {
  display: inline-block;
  width: 100%;
  text-align: right;
}

@media screen and (max-width: 960px) {
  .ind_sec_info {
    flex-direction: column;
  }

  .ind_sec_info .layout_inner {
    max-width: none;
    padding-left: 0;
  }

  .ind_sec_info .sec_news {
    max-width: none;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .ind_sec_info {
    padding-bottom: 20px;
  }

  .ind_sec_info .ttl {
    font-size: 1.6rem;
  }

  .ind_sec_info .sec_news {
    padding-right: 4%;
    padding-left: 4%;
    margin-bottom: 20px;
  }

  .ind_sec_info .medical_time {
    padding-right: 4%;
    padding-left: 4%;
    margin-bottom: 20px;
  }

  .ind_sec_info .medical_time .annotation {
    text-align: right;
  }

  .ind_sec_info .access {
    padding-right: 4%;
    padding-left: 4%;
  }

  .ind_sec_info .access .txt_01 {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Section Aims
--------------------------------------------------------------------*/
.ind_sec_aims {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

.ind_sec_aims .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.ind_sec_aims .img {
  max-width: 285px;
  width: 100%;
  margin-left: 3.4%;
}

.ind_sec_aims .img .img_01 {
  padding-bottom: 25px;
}

.ind_sec_aims .img .img_01 img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: 85% center;
  font-family: 'object-fit: cover; object-position: 85% center;';
}

.ind_sec_aims .img .img_02 {
  padding-bottom: 25px;
}

.ind_sec_aims .description {
  max-width: 430px;
  width: 100%;
}

.ind_sec_aims .lst_concept .ttl {
  margin-bottom: .6em;
  padding-bottom: .6em;
  font-size: 1.3rem;
  border-bottom: 1px solid #46392E;
}

.ind_sec_aims .lst_concept .txt {
  padding-bottom: .6em;
}

.ind_sec_aims .btn {
  text-align: right;
}

@media screen and (max-width: 960px) {
  .ind_sec_aims .inner {
    flex-direction: column;
  }

  .ind_sec_aims .img {
    max-width: none;
    margin-left: 0;
  }

  .ind_sec_aims .img .img_01 {
    padding-bottom: 20px;
  }

  .ind_sec_aims .img .img_01 img {
    height: 22vw;
    object-position: center 36%;
    font-family: 'object-position: center 36%;';
  }

  .ind_sec_aims .img .img_02,
  .ind_sec_aims .img .img_03 {
    display: none;
  }

  .ind_sec_aims .description {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .ind_sec_aims {
    padding-right: 4%;
    padding-left: 4%;
    margin-bottom: 20px;
  }

  .ind_sec_aims .img {
    max-width: none;
    margin-left: 0;
  }

  .ind_sec_aims .img .img_01 img {
    height: 32vw;
  }
}

/* Section Menu
--------------------------------------------------------------------*/
.ind_sec_menu .lst_menu {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ind_sec_menu .lst_menu li {
  border-radius: 10px;
  background: white;
}

.ind_sec_menu .lst_menu li:nth-of-type(-n+3) {
  max-width: 240px;
  width: 100%;
}

.ind_sec_menu .lst_menu li:nth-of-type(4),
.ind_sec_menu .lst_menu li:nth-of-type(5),
.ind_sec_menu .lst_menu li:nth-of-type(6),
.ind_sec_menu .lst_menu li:nth-of-type(7) {
  max-width: 180px;
  width: 100%;
}

.ind_sec_menu .lst_menu li:nth-of-type(5) .small br,
.ind_sec_menu .lst_menu li:nth-of-type(7) .small br {
  display: none;
}

.ind_sec_menu .lst_menu li>a {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 35px 0;
  text-decoration: none;
}

.ind_sec_menu .lst_menu li>a:hover .txt,
.ind_sec_menu .lst_menu li>a:hover .btn {
  transition: .3s ease-in-out;
  opacity: .7;
  filter: alpha(opacity=30);
}

.ind_sec_menu .lst_menu li:not(:last-child) {
  margin-bottom: 40px;
}

.ind_sec_menu .lst_menu li:not(.layout_house_call) .btn {
  margin-top: auto;
  padding: .4em 1.4em;
  color: white;
  border-radius: 14px;
  background: #72B639;
}

.ind_sec_menu .lst_menu li:not(.layout_house_call) .btn:before {
  content: '\f105';
  font-family: FontAwesome;
  padding-right: .6em;
}

.ind_sec_menu .lst_menu .ico {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 25px;
}

.ind_sec_menu .lst_menu .txt {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.ind_sec_menu .lst_menu .txt span {
  display: inline-block;
}

.ind_sec_menu .lst_menu .txt .large {
  padding-bottom: 10px;
  font-size: 1.8rem;
}

.ind_sec_menu .lst_menu .txt .small {
  width: 100%;
  padding: 0 16px;
}

.ind_sec_menu .lst_menu .layout_house_call {
  max-width: none;
  width: 100%;
  padding: 35px 25px;
}

.ind_sec_menu .lst_menu .layout_house_call .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.ind_sec_menu .lst_menu .layout_house_call .img {
  max-width: 310px;
  width: 100%;
  margin-left: 2%;
}

.ind_sec_menu .lst_menu .layout_house_call .img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: 0 100%;
  font-family: 'object-fit: cover; object-position: 0 100%;';
}

.ind_sec_menu .lst_menu .layout_house_call .description {
  max-width: 410px;
  width: 100%;
}

.ind_sec_menu .lst_menu .layout_house_call .ttl {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  font-size: 2rem;
  border: none;
}

.ind_sec_menu .lst_menu .layout_house_call .ttl img {
  width: 40px;
  margin-right: .6em;
}

.ind_sec_menu .lst_menu .layout_house_call .txt {
  align-items: flex-start;
  text-align: left;
}

.ind_sec_menu .lst_menu .layout_house_call .txt_orange {
  color: #D36100;
}

.ind_sec_menu .lst_menu .layout_house_call .btn {
  text-align: right;
}

@media screen and (max-width: 960px) {
  .ind_sec_menu .lst_menu li:not(.layout_house_call) {
    max-width: none;
    width: 48%;
  }

  .ind_sec_menu .lst_menu li:nth-of-type(5) .small br,
  .ind_sec_menu .lst_menu li:nth-of-type(7) .small br {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .ind_sec_menu .lst_menu li>a {
    flex-direction: row;
    padding: 6% 5%;
  }

  .ind_sec_menu .lst_menu li>a:after {
    content: '\f105';
    font-family: FontAwesome;
    margin-left: auto;
    font-size: 1.6rem;
  }

  .ind_sec_menu .lst_menu li:not(:last-child) {
    margin-bottom: 20px;
  }

  .ind_sec_menu .lst_menu .ico {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .ind_sec_menu .lst_menu .txt {
    padding-bottom: 0;
    align-items: flex-start;
  }

  .ind_sec_menu .lst_menu .txt .large {
    padding-bottom: 0;
    font-size: 3vw;
  }

  .ind_sec_menu .lst_menu .txt .small {
    display: none;
  }

  .ind_sec_menu .lst_menu .btn {
    display: none;
  }

  .ind_sec_menu .lst_menu .layout_house_call {
    max-width: none;
    padding: 4% 3%;
  }

  .ind_sec_menu .lst_menu .layout_house_call .inner {
    position: relative;
    flex-direction: column;
  }

  .ind_sec_menu .lst_menu .layout_house_call .img {
    position: absolute;
    top: 14%;
    max-width: none;
    margin-left: 0;
  }

  .ind_sec_menu .lst_menu .layout_house_call .img img {
    height: 32vw;
    object-position: 0 70%;
    font-family: 'object-position: 0 70%;';
  }

  .ind_sec_menu .lst_menu .layout_house_call .description {
    max-width: none;
  }

  .ind_sec_menu .lst_menu .layout_house_call .ttl {
    font-size: 3vw;
  }

  .ind_sec_menu .lst_menu .layout_house_call .ttl img {
    width: 24px;
    margin-right: 10px;
  }

  .ind_sec_menu .lst_menu .layout_house_call .txt {
    padding-top: 22%;
  }

  .ind_sec_menu .lst_menu .layout_house_call .btn {
    display: block;
  }
}

/* ===================================================================
Layout Clinic Introduction
=================================================================== */
/* Section Clinic About
--------------------------------------------------------------------*/
.sec_clinic_about {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_clinic_about {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_about {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-bottom: 25px;
}

.layout_about .img {
  max-width: 285px;
  width: 100%;
}

.layout_about .description {
  max-width: 430px;
  width: 100%;
}

.layout_about .img {
  margin-left: 2%;
}

.layout_about .img img {
  width: 100%;
  height: 194px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 960px) {
  .layout_about {
    flex-direction: column;
    flex-direction: column;
  }

  .layout_about .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_about .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_about .description {
    max-width: none;
  }

  .layout_about .img {
    margin-left: 0;
  }

  .layout_about .img img {
    height: 22vw;
    object-position: 0% 32%;
    font-family: 'object-position: 0% 32%;';
  }
}

@media screen and (max-width: 600px) {
  .layout_about .img img {
    height: 32vw;
    object-position: 0% 36%;
    font-family: 'object-position: 0% 36%;';
  }
}

/* Section Clinic Feature
--------------------------------------------------------------------*/
.sec_clinic_feature {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_clinic_feature {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.img_figure_feature {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}

.img_figure_feature figure:not(:last-child) {
  padding-right: 1%;
}

.sub_sec_feature_01 {
  padding-bottom: 25px;
}

.sub_sec_feature_01 .txt {
  padding-bottom: 25px;
}

.sub_sec_feature_01 .layout_inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.sub_sec_feature_01 .layout_inner .img {
  max-width: 285px;
  width: 100%;
}

.sub_sec_feature_01 .layout_inner .description {
  max-width: 430px;
  width: 100%;
}

.sub_sec_feature_01 .layout_inner .img {
  margin-left: 2%;
}

.sub_sec_feature_01 .lst_cherish {
  padding-bottom: 25px;
  font-size: 1.4rem;
  color: #72B639;
}

.sub_sec_feature_01 .lst_cherish li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
}

.sub_sec_feature_01 .lst_cherish li:not(:last-child) {
  padding-bottom: .8em;
}

@media screen and (max-width: 960px) {
  .sub_sec_feature_01 .layout_inner {
    flex-direction: column;
  }

  .sub_sec_feature_01 .layout_inner .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .sub_sec_feature_01 .layout_inner .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .sub_sec_feature_01 .layout_inner .description {
    max-width: none;
  }

  .sub_sec_feature_01 .layout_inner .img img {
    object-position: 0% 24%;
    font-family: 'object-position: 0% 24%;';
  }
}

@media screen and (max-width: 600px) {
  .sub_sec_feature_01 .layout_inner .img img {
    height: 30vw;
  }

  .sub_sec_feature_01 .layout_inner .img img {
    object-position: 0% 24%;
    font-family: 'object-position: 0% 24%;';
  }
}

.sub_sec_feature_02 {
  padding-bottom: 25px;
}

/* Section Clinic Intro
--------------------------------------------------------------------*/
.sec_clinic_intro {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.sec_clinic_intro h4 {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1;
  border: none;
}

.sec_clinic_intro .greeting {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.sec_clinic_intro .greeting .img {
  max-width: 285px;
  width: 100%;
}

.sec_clinic_intro .greeting .description {
  max-width: 430px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .sec_clinic_intro .greeting {
    flex-direction: column;
  }

  .sec_clinic_intro .greeting .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .sec_clinic_intro .greeting .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .sec_clinic_intro .greeting .description {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .sec_clinic_intro {
    padding-right: 4%;
    padding-left: 4%;
  }

  .sec_clinic_intro .greeting .img img {
    height: 30vw;
  }
}

.sub_sec_director {
  padding-bottom: 25px;
}

.sub_sec_director .greeting {
  flex-direction: row-reverse;
  padding-bottom: 25px;
}

.sub_sec_director .greeting .img {
  margin-left: 2%;
}

.sub_sec_director .career {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.sub_sec_director .career .img {
  max-width: 285px;
  width: 100%;
}

.sub_sec_director .career .description {
  max-width: 430px;
  width: 100%;
}

.sub_sec_director .career .img {
  margin-right: 2%;
}

.sub_sec_director .lst_career {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
}

.sub_sec_director .lst_career .date {
  width: 25%;
  padding: .6em 0;
  border-bottom: 1px dashed #46392E;
}

.sub_sec_director .lst_career .summary {
  width: 74%;
  margin-left: 2px;
  padding: .6em 0;
  border-bottom: 1px dashed #46392E;
}

@media screen and (max-width: 960px) {
  .sub_sec_director .greeting {
    flex-direction: column;
  }

  .sub_sec_director .greeting .img {
    margin-left: 0;
  }

  .sub_sec_director .greeting .img img {
    object-position: 0% 50%;
    font-family: 'object-position: 0% 50%;';
  }

  .sub_sec_director .career {
    flex-direction: column;
  }

  .sub_sec_director .career .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .sub_sec_director .career .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .sub_sec_director .career .description {
    max-width: none;
  }

  .sub_sec_director .career .img img {
    object-position: 0% 66%;
    font-family: 'object-position: 0% 66%;';
  }
}

@media screen and (max-width: 600px) {
  .sub_sec_director .career .img img {
    height: 30vw;
  }

  .sub_sec_director .career .img img {
    object-position: 0% 63%;
    font-family: 'object-position: 0% 63%;';
  }
}

.sub_sec_doctor {
  padding-bottom: 25px;
}

.sub_sec_doctor .greeting {
  flex-direction: row-reverse;
}

.sub_sec_doctor .greeting .img {
  margin-left: 2%;
}

.sub_sec_doctor .lst_career {
  padding-bottom: 15px;
}

.sub_sec_doctor .lst_career li {
  padding: .6em 0;
  border-bottom: 1px dashed #46392E;
}

.sub_sec_doctor .btn {
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 960px) {
  .sub_sec_doctor .greeting {
    flex-direction: column;
  }

  .sub_sec_doctor .greeting .img {
    margin-left: 0;
  }

  .sub_sec_doctor .greeting .img img {
    object-position: 0% 34%;
    font-family: 'object-position: 0% 34%;';
  }
}

.sub_sec_staff .greeting .img {
  margin-right: 2%;
}

/* ===================================================================
Layout Medical
=================================================================== */
/* Section Clinical Course
--------------------------------------------------------------------*/
.sec_clinical_course {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.sec_clinical_course .txt {
  padding-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .sec_clinical_course {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.lst_clinical_course li {
  padding: 30px 25px;
  border-top: 1px dashed #E0DEDC;
}

.lst_clinical_course li:nth-of-type(odd) .inner {
  flex-direction: row-reverse;
}

.lst_clinical_course li:nth-of-type(odd) .inner .img {
  margin-left: 2%;
}

.lst_clinical_course li:nth-of-type(even) .inner .img {
  margin-right: 2%;
}

.lst_clinical_course .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.lst_clinical_course .inner .img {
  max-width: 285px;
  width: 100%;
}

.lst_clinical_course .inner .description {
  max-width: 430px;
  width: 100%;
}

.lst_clinical_course .description h4 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: normal;
  color: #D36100;
  border: none;
}

.lst_clinical_course .btn {
  text-align: right;
}

@media screen and (max-width: 960px) {
  .lst_clinical_course li {
    padding: 25px 0;
  }

  .lst_clinical_course li:nth-of-type(odd) .inner {
    flex-direction: column;
  }

  .lst_clinical_course li:nth-of-type(odd) .inner .img {
    margin-left: 0;
  }

  .lst_clinical_course li:nth-of-type(even) .inner .img {
    margin-right: 0;
  }

  .lst_clinical_course .inner {
    flex-direction: column;
  }

  .lst_clinical_course .inner .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .lst_clinical_course .inner .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .lst_clinical_course .inner .description {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .lst_clinical_course .inner .img img {
    height: 30vw;
  }

  .lst_clinical_course .description h4 {
    font-size: 1.6rem;
  }
}

/* ===================================================================
Layout Child Dentistry
=================================================================== */
/* Section Child Dentistry
--------------------------------------------------------------------*/
.sec_child_dentistry {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_child_dentistry {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_child_dentistry {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

.layout_child_dentistry .img {
  max-width: 285px;
  width: 100%;
}

.layout_child_dentistry .description {
  max-width: 430px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .layout_child_dentistry {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.layout_child_dentistry.img_right {
  flex-direction: row-reverse;
}

.layout_child_dentistry.img_right .img {
  margin-right: 0;
  margin-left: 2%;
}

.layout_child_dentistry .img {
  margin-right: 2%;
}

@media screen and (max-width: 960px) {
  .layout_child_dentistry {
    flex-direction: column;
  }

  .layout_child_dentistry .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_child_dentistry .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_child_dentistry .description {
    max-width: none;
  }

  .layout_child_dentistry.img_right {
    flex-direction: column;
  }

  .layout_child_dentistry.img_right .img {
    margin-left: 0;
  }

  .layout_child_dentistry .img img {
    object-position: 0% 30%;
    font-family: 'object-position: 0% 30%;';
  }
}

@media screen and (max-width: 600px) {
  .layout_child_dentistry .img img {
    height: 30vw;
  }
}

.lst_child_dentistry_guide {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.lst_child_dentistry_guide li:last-child {
  margin-left: 2%;
}

.lst_child_dentistry_guide .inner {
  max-width: 360px;
  width: 100%;
}

.lst_child_dentistry_guide .img {
  padding-bottom: 20px;
}

/* 2025特設ページリンク設置
--------------------------------------------------------------------*/
.sec_child_dentistry .special-link {
  text-align: center;
}

.sec_child_dentistry .special-link p,
.sec_child_dentistry .special-link a {
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
}

.sec_child_dentistry .special-link a:hover {
  text-decoration: underline !important;
}

.sec_child_dentistry .special-link p {
  font-size: 2.0rem;
  color: #D36100;
}

.sec_child_dentistry .publicity-text {
  font-size: 1.2rem !important;
  font-weight: normal !important;
  color: #46392E !important;
}

/* Section Child Remediation
--------------------------------------------------------------------*/
.sec_child_remediation {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_child_remediation {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.sub_sec_tooth_align_type {
  padding-bottom: 40px;
}

.sub_sec_tooth_align_type .layout_inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border: 1px solid #46392E;
}

.sub_sec_tooth_align_type .layout_inner>.txt {
  width: 100%;
  padding-top: 25px;
}

@media screen and (max-width: 600px) {
  .sub_sec_tooth_align_type {
    padding-bottom: 20px;
  }

  .sub_sec_tooth_align_type .layout_inner {
    padding-right: 4%;
    padding-left: 4%;
    flex-direction: column;
  }
}

.tooth_align_normal {
  width: 25%;
  padding: 20px;
  border: 4px solid #FFE3A2;
}

.tooth_align_normal .ttl {
  padding-bottom: 20px;
  font-size: 1.4rem;
  color: #D36100;
  text-align: center;
}

.tooth_align_normal .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.tooth_align_normal .img figure {
  max-width: 110px;
  width: 100%;
  height: 100%;
}

.tooth_align_normal .img figure+figure {
  padding-top: 20px;
}

@media screen and (max-width: 960px) {
  .tooth_align_normal {
    width: 100%;
    margin-bottom: 20px;
  }

  .tooth_align_normal .img {
    justify-content: center;
    flex-direction: row;
  }

  .tooth_align_normal .img figure {
    max-width: 110px;
    width: 100%;
  }

  .tooth_align_normal .img figure+figure {
    margin-left: 2%;
    padding-top: 0;
  }
}

.tooth_align_fault {
  width: 73%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: 2%;
  padding: 20px;
  border: 4px solid #CAE8FA;
}

.tooth_align_fault li {
  width: 33.33333%;
}

.tooth_align_fault li:nth-of-type(-n+3) {
  padding-bottom: 15px;
}

.tooth_align_fault .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column-reverse;
}

.tooth_align_fault .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooth_align_fault .img img {
  width: 94px;
}

.tooth_align_fault .caption {
  padding-bottom: 15px;
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  .tooth_align_fault {
    width: 100%;
    margin-left: 0;
  }

  .tooth_align_fault li {
    width: 50%;
  }

  .tooth_align_fault li:nth-of-type(-n+3) {
    padding-bottom: 15px;
  }

  .tooth_align_fault .img img {
    width: 80px;
  }

  .tooth_align_fault .caption {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .tooth_align_fault {
    padding: 10px;
  }
}

.sub_sec_child_dent_treatment_type {
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .sub_sec_child_dent_treatment_type {
    padding-bottom: 20px;
  }
}

.tbl_child_dent_treatment_type th {
  width: 20%;
}

.tbl_child_dent_treatment_type td {
  width: 40%;
}

@media screen and (max-width: 600px) {
  .tbl_child_dent_treatment_type th {
    width: 100%;
  }

  .tbl_child_dent_treatment_type td {
    width: 100%;
  }

  .tbl_child_dent_treatment_type td:not(:last-child) {
    border-bottom-style: dashed;
  }
}

.tbl_remediation_consultant {
  margin-bottom: 40px;
}

.tbl_remediation_consultant th {
  width: 20%;
}

.tbl_remediation_consultant td {
  width: 40%;
}

@media screen and (max-width: 600px) {
  .tbl_remediation_consultant {
    margin-bottom: 20px;
  }

  .tbl_remediation_consultant th {
    width: 100%;
  }

  .tbl_remediation_consultant td {
    width: 100%;
  }

  .tbl_remediation_consultant td:not(:last-child) {
    border-bottom-style: dashed;
  }
}

/* ===================================================================
Layout Esthetic
=================================================================== */
/* Section Esthetic About
--------------------------------------------------------------------*/
.sec_esthetic_about {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_esthetic_about {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.sub_sec_esthetic_description {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .sub_sec_esthetic_description {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.sub_sec_esthetic_description .layout_inner .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.sub_sec_esthetic_description .layout_inner .img figure {
  width: 49%;
}

.sub_sec_esthetic_description .layout_inner .img figure:last-child {
  margin-left: 2%;
}

.sub_sec_esthetic_treatment_type {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .sub_sec_esthetic_treatment_type {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.tbl_esthetic_treatment_type thead th:nth-of-type(1),
.tbl_esthetic_treatment_type thead th:nth-of-type(3) {
  width: 20%;
}

.tbl_esthetic_treatment_type thead th:nth-of-type(2) {
  width: 60%;
}

@media screen and (max-width: 600px) {
  .tbl_esthetic_treatment_type thead {
    display: none;
  }

  .tbl_esthetic_treatment_type td:not(:last-child) {
    border-bottom-style: dashed;
  }
}

.tbl_esthetic_whitening_type thead th:nth-of-type(1),
.tbl_esthetic_whitening_type thead th:nth-of-type(3) {
  width: 20%;
}

.tbl_esthetic_whitening_type thead th:nth-of-type(2) {
  width: 60%;
}

.tbl_esthetic_whitening_type .txt_small {
  display: block;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .tbl_esthetic_whitening_type thead {
    display: none;
  }

  .tbl_esthetic_whitening_type td:not(:last-child) {
    border-bottom-style: dashed;
  }
}

/* ===================================================================
Layout renewal front,
=================================================================== */
/* Section renewalFront 20260227
--------------------------------------------------------------------*/
.renewal_front {
  /* Sections */
  /* 全体の枠組み */
  /* Specific Section Styles */
}

.renewal_front.ind_sec_aims {}

.wrapper:has(.renewal_front) {
  min-width: 788px;
}

.renewal_front h2 {
  margin-bottom: 0px;
}

.caption.type_06 {
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.caption.type_06 .ttl {
  top: 45%;
  left: 0;
  white-space: nowrap;
}

.caption.type_06 .ttl span {
  background: #D8741F;
  font-size: 20px;
  padding: .1em 15px;
}

.renewal_front .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: block;
}

.contents .renewal_front p {
  padding-bottom: 0;
  line-height: 1.6;
}

.renewal_front.ind_sec_aims {
  padding: 0;
}

.renewal_front img {
  height: auto;
  display: block;
  max-width: unset;
}

.renewal_front ul {
  list-style: none;
}

.renewal_front a {
  text-decoration: none;
  color: inherit;
}

.renewal_front p {
  font-size: 14px;
}

.renewal_front .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.renewal_front h2 {
  padding-left: 0px;
}

.renewal_front h2::before {
  content: none !important;
}

.renewal_front .english-title {
  color: #C5C5C5;
  font-size: 13px;
  padding-bottom: 0;
  margin-bottom: 0px;
}

.renewal_front .japanese-title {
  color: var(--primary-green);
  font-size: 20px;
  font-weight: bold;
}

.renewal_front .secondary-title {
  color: var(--primary-orange);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.renewal_front .bottom-title {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.renewal_front .btn {
  display: inline-block;
  padding: 4px 25px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.renewal_front .btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.renewal_front .btn-primary:hover {
  background-color: #68A639;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.renewal_front .btn-secondary {
  background-color: var(--primary-orange);
  color: white;
}

.renewal_front .btn-secondary:hover {
  background-color: #C18B4A;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.renewal_front section {
  padding: 80px 0;
}

/* news */
.news-section {}

.renewal_front .news-container {
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 20px 20px 20px 43px;
  display: flex;
  align-items: center;
}

.renewal_front .news-heading {
  color: var(--primary-green);
  font-size: 18px;
  margin: 0;
  padding-right: 40px;
  padding-left: 0px;
  flex-shrink: 0;
}

/* 1. 全体の基本設定 */
.renewal_front .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  height: 58px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* 2. Chrome, Safari, Edge用：標準プロパティと競合させないために個別に書く */
.renewal_front .news-list::-webkit-scrollbar {
  width: 4px !important;
}

/* 3. ボタンを物理的に抹消する */
.renewal_front .news-list::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* 4. 線（つまみ）の設定 */
.renewal_front .news-list::-webkit-scrollbar-thumb {
  background: #ccc !important;
  border-radius: 10px !important;
}

/* 5. トラック（背景） */
.renewal_front .news-list::-webkit-scrollbar-track {
  background: transparent !important;
}

/* 6. Firefox専用：@supportsを使ってChrome側に干渉させない */
@supports not selector(::-webkit-scrollbar) {
  .renewal_front .news-list {
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
  }
}

.renewal_front .news-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 6px;
}

.renewal_front .news-date {
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}

.renewal_front .news-category {
  font-size: 10px;
  margin-right: 30px;
  white-space: nowrap;
}

.renewal_front .news-title {
  font-size: 14px;
  position: relative;
  text-decoration: underline;
  font-weight: bold;
}

.renewal_front .news-title:hover {
  opacity: 0.7;
}

/* intro */
.renewal_front .intro {
  background-color: var(--bg-white);
  padding: 40px 0px 31px 0px;
  border-radius: 15px 15px 0px 0px;
}

.renewal_front .intro .secondary-title {
  margin-bottom: 15px;
}

.renewal_front .intro-cats {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0px 0px 0xp;
}

.renewal_front .intro-cats .cat-btn {
  background-color: #D99751;
  color: white;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 13px;
}

.renewal_front .intro-desc {
  text-align: center;
  font-size: 16px;
  max-width: 800px;
  margin: 32px auto;
}

.renewal_front .intro-images {
  display: flex;
  margin-top: 40px;
  padding: 0 24px;
}

.renewal_front .intro-images img {
  width: 33.333%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* greeting */
.renewal_front .greeting {
  position: relative;
  text-align: center;
  padding: 0px 0px 36px 0px;
  background-image: linear-gradient(to top,
      var(--bg-cream) 0%,
      var(--bg-cream) 30%,
      transparent 30%,
      transparent 100%);
}

.renewal_front .greeting::before {
  content: "";
  position: absolute;

  bottom: 32%;
  left: 0%;
  /* 例：中央に配置する場合 */

  /* 画像のサイズ（必要に応じて調整してください） */
  width: 100%;
  height: 100px;

  /* 基準点（bottom: 30%）が画像の中心に来るように調整 */
  transform: translateY(50%);

  /* 画像の設定 */
  background-image: url('../img/front/bg_top_00.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

}

.renewal_front .greeting .section-title {
  margin-bottom: 22px;
}

.renewal_front .greeting .btn-primary {
  margin-top: 45px;
  position: relative;
}

.renewal_front .greeting-images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  position: relative;
}

.renewal_front .greeting-images img {
  width: 100%;
}

.renewal_front .greeting-desc {
  font-size: 16px;
}

.renewal_front .greeting-img-circle {
  border-radius: 50%;
  overflow: hidden;
}

.renewal_front .left-image,
.renewal_front .right-image {
  display: flex;
  align-items: center;
}

.renewal_front .greeting-img-1 {
  width: 182px;
  height: 182px;
  position: relative;
  z-index: 1;
}

.renewal_front .greeting-img-2 {
  width: 127px;
  height: 127px;
  position: relative;
  right: 12px;
  z-index: 2;
}

.renewal_front .greeting-img-3 {
  width: 126px;
  height: 126px;
  position: relative;
  top: 20px;
  left: 27px;

  z-index: 2;
}

.renewal_front .greeting-img-4 {
  width: 166px;
  height: 166px;
  position: relative;
  bottom: 40px;
  z-index: 1;
}

/* menu */
.renewal_front .menu {
  background-color: var(--bg-white);
  padding: 40px 0px 0px 0px;
}

.renewal_front .menu .section-title {
  margin-bottom: 15px;
}

.renewal_front .menu .japanese-title {
  margin-bottom: 0px;
}

.renewal_front .menu .secondary-title {
  font-size: 16px;
  margin-bottom: 5px;
}

.renewal_front .menu>p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.renewal_front .menu>p:last-of-type {
  margin-top: 40px;
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.renewal_front .menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 140px);
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 34px;
}

.renewal_front .menu-item {
  width: 140px;
  height: 118px;
  box-sizing: border-box;
  border: 2px solid #75C049;
  border-radius: 10px;
  padding: 27px 0px 20px 0px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.renewal_front .menu-item span .arrow {
  color: #75C049;
  margin-left: 4px;
  display: inline;
}

.renewal_front .menu-item:hover {
  background-color: var(--secondary-green);
}

.renewal_front .menu-item img {
  margin: 0 auto 10px;
  width: 35px;
  height: auto;
}

.menu-grid .menu-item:nth-child(5) img {
  width: 35px;
  height: auto;
}

.menu-grid .menu-item:nth-child(6) img {
  width: 27px;
  height: auto;
}

.menu-grid .menu-item:nth-child(7) img {
  width: 32px;
  height: auto;
}

.menu-grid .menu-item:nth-child(8) img {
  width: 30px;
  height: auto;
}

.menu-grid .menu-item:nth-child(9) img {
  width: 37px;
  height: auto;
}

.menu-grid .menu-item:nth-child(11) img {
  width: 50px;
  height: auto;
}



.menu-grid .menu-item:nth-child(13) img {
  width: 27px;
  height: auto;
}

.menu-grid .menu-item:nth-child(14) img {
  width: 38px;
  height: auto;
}

.renewal_front .menu-item span {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

.menu .menu-desc {
  padding: 0 23px;
}

/* policy */
.renewal_front .policy {
  position: relative;
  background-color: var(--bg-cream);
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 130px 0px 120px 0px;
  z-index: 1;
}

/* 上の背景画像 */
.renewal_front .policy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../img/front/bg_top.png') no-repeat center / cover;
  z-index: -1;
}

/* 下の背景画像 */
.renewal_front .policy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../img/front/bg_bottom.png') no-repeat center / cover;
  z-index: -1;
}

.renewal_front .policy .section-title {
  margin-bottom: 50px;
  padding-top: 10px;
}

.renewal_front .policy-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.renewal_front .policy-content {
  max-width: 427px;
  width: 100%;
}

.renewal_front .policy-content h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #46392E;
  font-weight: bold;

}

.renewal_front .policy-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.renewal_front .policy-img {
  width: 283px;
  height: 290px;
}

.renewal_front .policy-img img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: unset;
  width: 100%;
  height: 100%;
}

.renewal_front .policy-circles {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  justify-content: center;
}

.renewal_front .policy-circle {
  width: 118px;
  height: 118px;
  background-color: #D8741F;
  border-radius: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 10px 13px 10px;
  font-size: 20px;
}

.renewal_front .policy-circle small {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
  padding-top: 7px;
  border-top: 2px solid #ffffff40;
}

.renewal_front .child {
  background-color: var(--bg-white);
  padding: 40px 0px 10px 0px;
}

.renewal_front .child .section-title {
  margin-bottom: 30px;
}

.renewal_front .child .japanese-title {
  margin-bottom: 0px;
}

.renewal_front .child-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.renewal_front .child-content {
  flex: 1;
}

.renewal_front .child-content h3 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #46392E;
}

.renewal_front .child-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.renewal_front .child-content>div {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.renewal_front .child-img {
  width: 283px;
  height: 197px;
}

.renewal_front .child-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

/* director */
.renewal_front .director {
  position: relative;
  background-color: var(--bg-cream);
  padding: 130px 0px 54px 0px;
  z-index: 1;
}

/* 上の背景画像 */
.renewal_front .director::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('../img/front/bg_top.png') no-repeat center / cover;
  z-index: -1;
}

.renewal_front .director h2 {
  margin-bottom: 38px;
}

.renewal_front .director>.container>div:last-child {
  text-align: center;
  margin-top: 52px;
}

.renewal_front .director-profile {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.renewal_front .director-profile .director-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.renewal_front .director-profile p:last-child {
  font-weight: bold;
  font-size: 12px;
}

.renewal_front .director-staff-wrap {
  display: flex;
  gap: 22px;
}

.renewal_front .director-staff-wrap>div {
  flex: 1;
  display: flex;
  gap: 19px;
}

.renewal_front .director-staff-wrap>div img {
  width: 160px;
  height: 145px;
  -o-object-fit: cover;
  object-fit: cover;
}

.renewal_front .director-staff-wrap>div p:last-child {
  font-weight: bold;
  font-size: 12px;
}

.renewal_front .director-staff-wrap .staff-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.renewal_front .director-img {
  width: 160px;
}

.renewal_front .director-img img {
  width: 160px;
  height: 145px;
  -o-object-fit: cover;
  object-fit: cover;
}

.renewal_front .column {
  background-color: var(--bg-white);
  padding: 42px 0px 50px 0px;
  border-radius: 0 0 15px 15px;
}

.renewal_front .column .section-title {
  margin-bottom: 0px;
}

.renewal_front .column .section-title p {
  font-size: 16px;
}

.renewal_front .column .japanese-title {
  margin-bottom: 0;
}

.renewal_front .column .section-title p:last-of-type {
  font-weight: 700;
  margin-top: 15px;
}

.renewal_front .column>.container>div:last-child {
  text-align: center;
  margin-top: 44px;
}

.renewal_front .column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.renewal_front .column-item {
  background: white;
}



.renewal_front .column-item:nth-child(n+4) {
  display: none;
}

.renewal_front .column-item img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
}

.renewal_front .column-item p:nth-of-type(1) {
  font-size: 12px;
  margin-top: 10px;
}

.renewal_front .column-item p:nth-of-type(2) {
  font-size: 14px;
  font-weight: bold;
}

.renewal_front .info-column {
  display: flex;
  justify-content: space-between;
  margin: 15px 0px 11px 0px;
}

.renewal_front .column-tag {
  display: inline-block;
  border: 1px solid #D8741F;
  color: #D8741F;
  padding: 0px 7px;
  font-size: 11px;
}

@media (max-width: 600px) {

  /*  */
  .wrapper:has(.renewal_front) {
    margin: 0;
    padding-bottom: 0;
    width: 100%;
    min-width: unset;
  }

  body:has(.renewal_front) {
    background: var(--bg-cream);
  }

  .renewal_front.ind_sec_aims {
    margin-bottom: 0;
  }

  .renewal_front .container {
    padding: 0 14px;
  }

  .renewal_front .english-title {
    color: #C5C5C5;
    font-size: 13px;
  }

  .renewal_front .japanese-title {
    font-size: 20px;
    letter-spacing: 0.6px;
  }

  .renewal_front .secondary-title {
    font-size: 16px;
  }

  .renewal_front h3 {
    letter-spacing: 0.6px;
  }

  .caption.type_06 {
    top: 47%;
    left: 0;
    transform: translate(0%, -50%);
  }

  .renewal_front_slider.ind_slider .caption.type_01 {
    right: 0;
  }

  .renewal_front_slider.ind_slider .caption.type_03 {
    right: 0;
    top: 55%;
  }


  .renewal_front_slider.ind_slider .caption.type_04 {
    left: 0;
  }
  .renewal_front_slider.ind_slider .caption.type_02 {
    left: 0;
    bottom: 40%;
  }


  .caption.type_06 .ttl {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .caption.type_06 .ttl span {
    font-size: 16px !important;
    font-weight: normal;
    background: #D99751;

  }

  .renewal_front_slider.ind_slider .ttl span {
    padding: 5px 15px;
  }

  .renewal_front_slider.ind_slider .ttl span:not(:last-child) {
    font-size: 16px !important;
    font-weight: normal;
  }

  .renewal_front_slider.ind_slider .ttl span:not(:first-child) {
    font-size: 16px !important;
    font-weight: normal;
  }




  /* intro */
  .renewal_front .intro {
    padding: 40px 0px 34px 0px;
  }

  .renewal_front .intro-cats .cat-btn {
    padding: 6px 9px;
  }

  .renewal_front .intro-desc {
    text-align: left;
    margin: 26px auto 0 auto;
  }

  .renewal_front .intro-images {
    padding: 0px;
  }

  /* news */
  .renewal_front.news-section {
    margin: 30px 0px 0px 0px;
    position: relative;
    z-index: 1;
    padding: 0px 15px 75px 15px;
    ;
    z-index: 1;
    background: unset;
  }

  .renewal_front.news-section::after {
    margin: 0px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('../img/front/SP_bg_top_02.png') no-repeat center / cover;
    background-size: cover;
    z-index: -1;
  }

  .renewal_front .news-container {
    padding: 17px 10px 17px 20px;
  }

  .renewal_front .news-date {
    font-size: 11px;
    margin-right: 25px;
  }

  .renewal_front .news-title {
    font-size: 13px;
  }

  /* greeting */
  .renewal_front .greeting {
    padding: 0px 0px 50px 0px;
  }

  .renewal_front .greeting::before {
    content: none;
  }

  .renewal_front .greeting .container {
    padding: 0px;
  }

  .renewal_front .greeting-desc {
    font-size: 13px;
    text-align: left;
    padding: 0 14px;
  }

  .renewal_front .greeting .btn-primary {
    margin-top: 30px;
  }

  .renewal_front .greeting-images {
    display: block;
    margin-top: 80px;
    padding-top: 15px;
    /* background: var(--bg-cream); */
    background: #F6F1E5;
  }

  .renewal_front .greeting-images::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0%;
    width: 100%;
    height: 50px;

    /* 基準点（bottom: 30%）が画像の中心に来るように調整 */
    transform: translateY(50%);

    /* 画像の設定 */
    background-image: url('../img/front/SP_bg_top_00.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

  }

  .renewal_front .greeting-img-circle {
    border-radius: 0;
  }

  .renewal_front .greeting-img-1 {
    width: 246px;
    height: 324px;
    position: relative;
    z-index: 1;
  }

  .renewal_front .greeting-img-2 {
    width: 147px;
    height: 90px;
    position: absolute;
    right: 10px;
    top: 150px;
  }

  .renewal_front .right-image {
    position: absolute;
    right: 0;
    bottom: -20px;
  }

  .renewal_front .greeting-img-3 {
    width: 203px;
    height: 147px;
    position: relative;
    top: unset;
  }

  /* menu */
  .renewal_front .menu {
    padding: 32px 0px 0px 0px;
  }

  .renewal_front .menu .section-title {
    margin-bottom: 0px;
  }

  .renewal_front .menu .japanese-title {
    margin-bottom: 14px;
  }

  .renewal_front .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 27px;
    margin-bottom: 32px;
    gap: 11px;
  }

  .renewal_front .menu-item {
    width: 162px;
    height: 118px;
    margin: 0 auto;
  }

  .renewal_front .menu-item span {}

  .menu .menu-desc {
    padding: 0;
    font-size: 13px;
  }

  /* policy */
  .renewal_front .policy {
    padding: 70px 0px 75px 0px;
  }

  .renewal_front .policy::before {
    background: url('../img/front/SP_bg_top_01.png') no-repeat center / cover;
    height: 60px;
  }

  .renewal_front .policy::after {
    background: url('../img/front/SP_bg_top_02.png') no-repeat center / cover;
    height: 60px;
  }

  .renewal_front .policy .section-title {
    margin-bottom: 20px;
  }

  .renewal_front .policy-inner {
    flex-direction: column;
    gap: 22px;
  }

  .renewal_front .policy-content {
    display: flex;
    flex-direction: column;
    order: 2;
  }

  .renewal_front .policy-content p {
    font-size: 13px;
  }

  .renewal_front .policy-img {
    width: 100%;
    height: 100px;
    order: 1;
  }

  .renewal_front .policy-content h3 {
    order: 1;
    text-align: center;
    margin-bottom: 15px;
  }

  .renewal_front .policy-content p {
    order: 3;
  }

  .renewal_front .policy-circles {
    order: 2;
    display: flex;
    justify-content: center;
    gap: 11px;
    background-color: #fcfaf5;
    position: relative;
    z-index: 1;
    margin-top: 0px;
    margin-bottom: 15px;
  }


  .renewal_front .policy-circle {
    background-color: #D8741F;
    color: white;
    width: 220px;
    padding: 0px 10px 10px 10px;
    border-radius: 15px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .renewal_front .policy-circle small {
    display: block;
    font-size: 12px;
    font-weight: normal;
    padding-top: 10px;
    position: relative;
    letter-spacing: 0.5px;
    top: 8px;
  }

  /* child */
  .renewal_front .child {
    padding: 20px 0px 0px 0px;
  }

  .renewal_front .child-inner {
    flex-direction: column;

  }

  .renewal_front .child-content {
    order: 2;
  }

  .renewal_front .child-img {
    width: 100%;
    height: 100px;
    order: 1;
  }

  /* director */
  .renewal_front .director {
    padding: 90px 0px 40px 0px;
    margin-top: 10px;
  }

  .renewal_front .director::before {
    height: 60px;
    background: url('../img/front/SP_bg_top_01.png') no-repeat center / cover;
  }

  .renewal_front .director-profile {
    gap: 15px;
  }

  .renewal_front .director-profile .director-info .info-desc {
    font-size: 13px;
  }

  .renewal_front .director-profile .director-info .info-name {
    font-size: 12px;
    margin-top: 7px;
    text-align: center;
  }

  .renewal_front .director-staff-wrap {
    display: flex;
    gap: 15px;
  }

  .renewal_front .director-staff-wrap>div {
    flex-direction: column;
    gap: 7px;

  }


  .renewal_front .director-staff-wrap>div p:last-child {
    text-align: center;
  }

  .renewal_front .director>.container>div:last-child {
    margin-top: 25px;
  }

  /* column */
  .renewal_front .column-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }

  .renewal_front .column-item:nth-child(n+4) {
    display: block;
  }


  .renewal_front .column-item p:nth-of-type(1) {
    font-size: 11px;
  }

  .renewal_front .column-tag {
    font-size: 10px;
  }

  .renewal_front .column>.container>div:last-child {
    margin-top: 30px;
  }

}



/* ===================================================================
Layout renewal Child Dentistry,
=================================================================== */
/* Section renewalChild Dentistry 20260220
--------------------------------------------------------------------*/
.renewal_child_dentistry .sec_child_dentistry {
  padding: 35px 28px !important;
}

.renewal_child_dentistry .sec_child_dentistry h2 {
  color: #46392E;
  font-size: 18px;
  font-weight: bold;
  padding-left: 0px;
  margin-bottom: 20px;
}

.renewal_child_dentistry .sec_child_dentistry h2::before,
.renewal_child_dentistry .sec_child_dentistry h3::before {
  content: unset !important;
}

.renewal_child_dentistry .sec_child_dentistry h3 {
  color: #D36100;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry {
    padding: 26px 14px !important;
  }

  .renewal_child_dentistry .sec_child_dentistry h2 {
    font-size: 14px !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.5px;
  }

  .renewal_child_dentistry .sec_child_dentistry h3 {
    font-size: 14px !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.4px;
  }

  .renewal_child_dentistry .sec_child_dentistry p {
    font-size: 13px !important;
  }
}

/* ==========================================================
   box1: くすやま歯科クリニック小児歯科（トップ）
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box1 .sec_title {
  text-align: center;
  color: #73B639;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .sec_title::before {
  content: unset !important;
}


.renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 25px;
  gap: 20px;
  flex-direction: row;
  border-bottom: none;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry .description {
  min-width: 320px;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry .description h3 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: bold;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry .description p {
  font-size: 13px;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry .img {
  width: 40%;
  min-width: 320px;
  margin-left: 0%;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .lst_child_dentistry_guide {
  display: flex;
  gap: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .lst_child_dentistry_guide li {
  flex: 0 0 244px;
  margin-left: 0px !important;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .lst_child_dentistry_guide .img {
  margin: 0;
  height: 100%;
  padding-bottom: 0px;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .lst_child_dentistry_guide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.renewal_child_dentistry .sec_child_dentistry.box1 .box_bottom_txt {
  text-align: center;
  color: #d36417;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box1 .sec_title {
    font-size: 14px;
    text-align: left;
    margin-bottom: 15px;
  }


  .renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry {
    flex-direction: column-reverse;
    gap: 0px;
    padding-bottom: 0px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box1 .layout_child_dentistry .img {
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box1 .lst_child_dentistry_guide li {
    flex: 1;
  }

  .renewal_child_dentistry .sec_child_dentistry.box1 .box_bottom_txt {
    text-align: left;
  }
}

/* ==========================================================
   box2: お困りごと
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box2 {}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-title {}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-subtitle {}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 227px));
  column-gap: 25px;
  row-gap: 16px;
  margin-bottom: 29px;
}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-item {
  text-align: center;
  overflow: hidden;
}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  height: 148px;

}

.trouble-item-text {
  font-size: 13px;
  font-weight: bold;
  padding: 0 5px;
}

.renewal_child_dentistry .sec_child_dentistry.box2 .trouble-footer {
  text-align: center;
  font-size: 16px;
  color: #D36100;
  font-weight: bold;
}

@media (max-width:768px) {
  .renewal_child_dentistry .sec_child_dentistry.box2 .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    column-gap: 9px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box2 .trouble-item {
    padding-bottom: 0px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box2 .trouble-item img {
    height: 104px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box2 .trouble-footer {
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
  }

  .trouble-item-text {
    letter-spacing: 0.3px;
    padding: 0px;
  }
}

/* ==========================================================
   box3: 小児矯正
   ========================================================== */


.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 25px;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-image {
  flex-shrink: 0;
  width: 140px;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-image img {
  width: 100%;
  height: 140px;
  display: block;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-text {
  flex: 1;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-title::before {
  content: unset !important;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-description {
  font-size: 13;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-button-container {
  text-align: center;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-button {
  display: inline-block;
  background-color: #7ab93c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 3px 22px;
  border-radius: 30px;
  font-size: 12px;
  transition: background-color 0.3s;
}

.renewal_child_dentistry .sec_child_dentistry.box3 .ortho-button:hover {
  background-color: #6da634;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box3 .ortho-content {
    flex-wrap: wrap !important;
  }

  .renewal_child_dentistry .sec_child_dentistry.box3 .ortho-image {
    width: 100%;
    max-width: none;
  }

  .renewal_child_dentistry .sec_child_dentistry.box3 .ortho-image img {
    aspect-ratio: 4 / 3;
    height: 112px;
    object-fit: cover;
  }

  .renewal_child_dentistry .sec_child_dentistry.box3 .ortho-title {
    font-size: 16px;
  }
}

/* ==========================================================
   box4: 診療・治療方針
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box4 {}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-main-title {}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-section-top {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 24px;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-text-area {
  flex: 1;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-subtitle {
  margin-bottom: 15px;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-text {
  font-size: 13px;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-text.highlight {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #46392E;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-image-area {
  width: 42%;
  min-width: 320px;
  flex-shrink: 0;
}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-image-area img {}

.renewal_child_dentistry .sec_child_dentistry.box4 .policy-section-bottom {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box4 .policy-section-top {
    flex-direction: column-reverse;
  }

  .renewal_child_dentistry .sec_child_dentistry.box4 .policy-image-area {
    width: 100%;
    max-width: none;
    margin-top: 0px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box4 .policy-image-area img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }

  .renewal_child_dentistry .sec_child_dentistry.box4 .policy-text.highlight {
    font-weight: normal;
    text-decoration: none;
  }
}

/* ==========================================================
   box5: 診察から治療・予防ケア
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box5 h2 {
  text-align: center;
  margin-bottom: 0px;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-title {}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-icon-area {
  background-color: #F5F7D8;
  width: 89%;
  padding-top: 89%;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  clip-path: inset(0 0 22% 0);
  top: 30px;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-icon-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-icon-inner img {
  width: 26px;
  height: auto;
  position: absolute;
  top: 30px;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-step-title {
  color: #73B639;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  position: relative;
  top: 8px;
}

.renewal_child_dentistry .sec_child_dentistry.box5 .process-step-text {
  font-size: 14px;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box5 .process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box5 .process-step {
    flex: 0 0 calc((100% - 15px) / 2);
  }

  .renewal_child_dentistry .sec_child_dentistry.box5 .process-icon-inner img {
    width: 20px;
    top: 25px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box5 .process-step-title {
    font-size: 14px;

  }

  .renewal_child_dentistry .sec_child_dentistry.box5 .process-step-text {
    font-size: 13px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box5 .process-icon-area {
    top: 15px;
    width: 98%;
    padding-top: 98%;
  }
}

/* ==========================================================
   box7: 予防ケア（家庭・医院）
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box6 {}

.renewal_child_dentistry .sec_child_dentistry.box6 .preventive-title {}

.renewal_child_dentistry .sec_child_dentistry.box6 .preventive-subtitle {}

.renewal_child_dentistry .sec_child_dentistry.box6 .preventive-images {
  display: flex;
  margin-bottom: 25px;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .preventive-intro-text {
  font-size: 13px;
  margin-bottom: 35px;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-columns {
  display: flex;
  gap: 25px;
  margin-bottom: 24px;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-column {
  flex: 1;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-title-box {
  background-color: #E7A73B;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-icon {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-icon img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-column:nth-child(2) .care-icon {
  width: 26px;
  height: 27px;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-title-text {
  display: flex;
  flex-direction: column;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-title-main {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-title-sub {
  font-size: 13px;
  font-weight: bold;
}

.renewal_child_dentistry .sec_child_dentistry.box6 .care-description {
  font-size: 13px;

}

.renewal_child_dentistry .sec_child_dentistry.box6 .preventive-footer {
  text-align: center;
  font-size: 16px;
  color: #D36100;
  font-weight: bold;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box6 .care-columns {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .care-column {
    flex: unset
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .care-title-main {
    font-size: 14px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .care-title-sub {
    font-size: 11px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .preventive-footer {
    font-size: 14px;
    margin-top: 20px;
    text-align: left;
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .preventive-intro-text {
    margin-bottom: 25px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box6 .care-title-box {
    padding: 10px 15px;
  }

}

/* ==========================================================
   box8: キッズクラブ
   ========================================================== */
.renewal_child_dentistry .sec_child_dentistry.box7 {
  text-align: center;

}

.renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-title {
  color: #73B639;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-subtitle {
  color: #D36100;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-description {
  font-size: 13px;
  margin-bottom: 20px;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .pdf-notice {
  color: #D36100;
  font-size: 13px;
  margin-bottom: 27px;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-flyers {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .flyer-item {
  flex: 1;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .flyer-item a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .flyer-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.renewal_child_dentistry .sec_child_dentistry.box7 .flyer-item img {
  border: 1px solid #eee;
  display: block;
}

.renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-footer {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-description {
    font-size: 13px;
    text-align: left;
    margin-bottom: 10px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .pdf-notice {
    font-size: 13px;
    margin-bottom: 17px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-flyers {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .flyer-item {
    flex: unset;
  }

  .renewal_child_dentistry .sec_child_dentistry.box7 .kids-club-footer {
    font-size: 13px;
  }
}

/* ==========================================================
   box9: 予約・相談
   ========================================================== */
.sec_child_dentistry.box8 {
  background-color: #fff;
  padding: 15px 30px 20px 30px !important;
  border-radius: 0px;
  border: 1px solid #73B639;
}

.sec_child_dentistry.box8 .contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid transparent;
  position: relative;
  margin-bottom: 10px;
  padding: 5px 0px 10px 0px;
}

.sec_child_dentistry.box8 .contact-actions::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background-color: #73B639;
  transform: translateX(-50%);
}

.sec_child_dentistry.box8 .contact-box {
  flex: 1;
  text-align: center;
}

.sec_child_dentistry.box8 .contact-label {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sec_child_dentistry.box8 .tel a {
  font-size: 35px;
  text-decoration: none;
  color: #72B639;
}

.sec_child_dentistry.box8 .contact-phone-number {
  font-size: 20px;
  font-weight: bold;
  color: #6fb633;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.sec_child_dentistry.box8 .contact-phone-number i {
  font-size: 16px;
  background-color: #6fb633;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

.sec_child_dentistry.box8 .contact-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #06c755;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.sec_child_dentistry.box8 .contact-line-btn:hover {
  opacity: 0.8;
}

.sec_child_dentistry.box8 .contact-line-btn i {
  font-size: 16px;
}

.sec_child_dentistry.box8 .contact-notes {
  font-size: 15px;
}

.sec_child_dentistry.box8 .contact-notes p {
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 0px;
}

@media (max-width: 768px) {
  .sec_child_dentistry.box8 {
    padding: 15px 10px !important;
  }

  .sec_child_dentistry.box8 .contact-box {
    width: 100%;
  }

  .sec_child_dentistry.box8 .contact-box .btn_line {
    max-width: 100%;
    width: 100%;
  }

  .sec_child_dentistry.box8 .contact-actions {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .sec_child_dentistry.box8 .contact-actions::after {
    display: none;
  }

  .sec_child_dentistry.box8 .contact-box:first-child {
    width: 100%;
    border-bottom: 1px solid #73B639;
    padding-bottom: 15px;
  }

  .sec_child_dentistry.box8 .contact-label {
    font-size: 16px;
  }

  .sec_child_dentistry.box8 .tel a {
    font-size: 34px;
  }

  .sec_child_dentistry.box8 .contact-phone-number {
    font-size: 16px;
    gap: 5px;
  }

  .sec_child_dentistry.box8 .contact-phone-number i {
    font-size: 12px;
    padding: 6px 8px;
  }

  .sec_child_dentistry.box8 .contact-line-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .sec_child_dentistry.box8 .contact-line-btn i {
    font-size: 12px;
  }

  .sec_child_dentistry.box8 .contact-notes {
    font-size: 14px;
    text-align: left;
    margin-top: 20px;
  }
}

/* swiper */
/* 画面幅いっぱいに広げるためのスタイル */
.child_dentistry_swipe {
  width: 100%;
  position: relative;
  /* left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; */
  overflow: hidden;
}

.child_dentistry_swipe .swiper {
  width: 100%;
  height: 179px;
}

.child_dentistry_swipe .swiper-slide {
  width: 100%;
  height: 179px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.child_dentistry_swipe .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-title {
  font-size: 18px;
  font-weight: bold;
  color: #46392E;
  text-align: center;
  margin-bottom: 10px;
}

.swiper-txt {
  font-size: 14px;
  font-weight: bold;
  color: #D36100;
  text-align: center;
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  .child_dentistry_swipe .swiper {
    height: 120px;
  }

  .child_dentistry_swipe .swiper-slide {
    height: 120px;
  }

  .swiper-txt {
    margin-bottom: 25px;
  }

}


/* ===================================================================
Layout Implant
=================================================================== */
/* Section Implant About
--------------------------------------------------------------------*/
.sec_implant_about {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_implant_about {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_implant_about {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

@media screen and (max-width: 600px) {
  .layout_implant_about {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.layout_implant_about .img {
  max-width: 285px;
  width: 100%;
}

.layout_implant_about .description {
  max-width: 430px;
  width: 100%;
}

.layout_implant_about .img {
  margin-left: 2%;
}

@media screen and (max-width: 960px) {
  .layout_implant_about {
    flex-direction: column;
    flex-direction: column;
  }

  .layout_implant_about .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_implant_about .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_implant_about .description {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .layout_implant_about .img img {
    height: 30vw;
  }
}

.sub_sec_implant_treatment_type {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .sub_sec_implant_treatment_type {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.tbl_implant_treatment_type {
  margin-bottom: 40px;
}

.tbl_implant_treatment_type th {
  width: 20%;
}

.tbl_implant_treatment_type td:nth-of-type(1) {
  width: 40%;
}

.tbl_implant_treatment_type td:nth-of-type(2) {
  width: 20%;
}

@media screen and (max-width: 600px) {
  .tbl_implant_treatment_type {
    margin-bottom: 20px;
  }

  .tbl_implant_treatment_type th {
    width: 100%;
  }

  .tbl_implant_treatment_type td:nth-of-type(1),
  .tbl_implant_treatment_type td:nth-of-type(2) {
    width: 100%;
  }

  .tbl_implant_treatment_type td:not(:last-child) {
    border-bottom-style: dashed;
  }
}

.sub_sec_implant_maintenance {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .sub_sec_implant_maintenance {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.tbl_implant_consultation th {
  width: 20%;
}

.tbl_implant_consultation td {
  width: 80%;
}

@media screen and (max-width: 600px) {

  .tbl_implant_consultation th,
  .tbl_implant_consultation td {
    width: 100%;
  }

  .tbl_implant_consultation .pc_on {
    display: none;
  }
}

/* ===================================================================
Layout Preventive Dentistry
=================================================================== */
/* Section Preventive Dentistry About
--------------------------------------------------------------------*/
.sec_preventive_dentistry_about {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_preventive_dentistry_about {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_preventive_dentistry {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

.layout_preventive_dentistry .img {
  max-width: 285px;
  width: 100%;
}

.layout_preventive_dentistry .description {
  max-width: 430px;
  width: 100%;
}

.layout_preventive_dentistry:nth-of-type(2) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .layout_preventive_dentistry:nth-of-type(2) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.layout_preventive_dentistry.img_right {
  flex-direction: row-reverse;
}

.layout_preventive_dentistry.img_right .img {
  margin-right: 0;
  margin-left: 2%;
}

.layout_preventive_dentistry .img {
  margin-right: 2%;
}

@media screen and (max-width: 960px) {
  .layout_preventive_dentistry {
    flex-direction: column;
  }

  .layout_preventive_dentistry .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_preventive_dentistry .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_preventive_dentistry .description {
    max-width: none;
  }

  .layout_preventive_dentistry.img_right {
    flex-direction: column;
  }

  .layout_preventive_dentistry.img_right .img {
    margin-left: 0;
  }

  .layout_preventive_dentistry .img img {
    object-position: 0% 30%;
    font-family: 'object-position: 0% 30%;';
  }
}

@media screen and (max-width: 600px) {
  .layout_preventive_dentistry {
    padding-bottom: 20px;
  }

  .layout_preventive_dentistry .img img {
    height: 30vw;
  }
}

.lst_preventive_cleaning_guide {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.lst_preventive_cleaning_guide>li:last-child {
  margin-left: 2%;
}

.lst_preventive_cleaning_guide .inner {
  max-width: 360px;
  width: 100%;
}

.lst_preventive_cleaning_guide .img {
  padding-bottom: 20px;
}

.lst_preventive_cleaning_guide .lst_cleaning li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
}

.lst_preventive_cleaning_guide .lst_cleaning .txt_small {
  font-size: 1rem;
}

/* Section Preventive Dentistry Thinking
--------------------------------------------------------------------*/
.sec_preventive_dentistry_thinking {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_preventive_dentistry_thinking {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.sub_sec_preventive_lead {
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .sub_sec_preventive_lead {
    padding-bottom: 20px;
  }
}

.layout_preventive_thinking {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.layout_preventive_thinking .img {
  max-width: 285px;
  width: 100%;
}

.layout_preventive_thinking .description {
  max-width: 430px;
  width: 100%;
}

.layout_preventive_thinking+.layout_preventive_thinking {
  padding-top: 30px;
}

.layout_preventive_thinking.img_right {
  flex-direction: row-reverse;
}

.layout_preventive_thinking.img_right .img {
  margin-right: 0;
  margin-left: 2%;
}

.layout_preventive_thinking .img {
  margin-right: 2%;
}

@media screen and (max-width: 960px) {
  .layout_preventive_thinking {
    flex-direction: column;
  }

  .layout_preventive_thinking .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_preventive_thinking .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_preventive_thinking .description {
    max-width: none;
  }

  .layout_preventive_thinking.img_right {
    flex-direction: column;
  }

  .layout_preventive_thinking.img_right .img {
    margin-left: 0;
  }

  .layout_preventive_thinking .img img {
    object-position: 0% 30%;
    font-family: 'object-position: 0% 30%;';
  }
}

@media screen and (max-width: 600px) {
  .layout_preventive_thinking .img img {
    height: 30vw;
  }

  .layout_preventive_thinking+.layout_preventive_thinking {
    padding-top: 20px;
  }
}

/* ===================================================================
Layout Oral Surgery
=================================================================== */
/* Section Oral Surgery About
--------------------------------------------------------------------*/
.sec_oral_surgery_about {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_oral_surgery_about {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.tbl_oral_surgery_guide {
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .tbl_oral_surgery_guide {
    margin-bottom: 20px;
  }

  .tbl_oral_surgery_guide td:not(:last-child) {
    border-bottom: 1px dashed #46392E;
  }
}

.lst_medical_contents {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.7em;
}

.lst_medical_contents li {
  position: relative;
}

.lst_medical_contents li:not(:last-child) {
  padding-bottom: 25px;
}

.lst_medical_contents li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: -1.4em;
  margin: auto 0;
  font-size: 1.4rem;
}

.lst_medical_contents .txt {
  padding-top: .4em;
}

@media screen and (max-width: 960px) {
  .lst_medical_contents {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .lst_medical_contents li:not(:last-child) {
    padding-bottom: 1em;
  }
}

/* Section Oral Surgery Doctor
--------------------------------------------------------------------*/
.sec_oral_surgery_doctor {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.sec_oral_surgery_doctor .greeting {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.sec_oral_surgery_doctor .greeting .img {
  max-width: 285px;
  width: 100%;
}

.sec_oral_surgery_doctor .greeting .description {
  max-width: 430px;
  width: 100%;
}

.sec_oral_surgery_doctor .greeting .img {
  margin-left: 2%;
}

.sec_oral_surgery_doctor .ttl {
  margin-bottom: 0;
  border: none;
}

.sec_oral_surgery_doctor .lst_career {
  padding-bottom: 15px;
}

.sec_oral_surgery_doctor .lst_career li {
  padding: .6em 0;
  border-bottom: 1px dashed #46392E;
}

@media screen and (max-width: 960px) {
  .sec_oral_surgery_doctor .greeting {
    flex-direction: column;
    flex-direction: column;
  }

  .sec_oral_surgery_doctor .greeting .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .sec_oral_surgery_doctor .greeting .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .sec_oral_surgery_doctor .greeting .description {
    max-width: none;
  }

  .sec_oral_surgery_doctor .greeting .img {
    margin-left: 0;
  }

  .sec_oral_surgery_doctor .greeting .img img {
    object-position: 0% 34%;
    font-family: 'object-position: 0% 34%;';
  }
}

@media screen and (max-width: 600px) {
  .sec_oral_surgery_doctor {
    padding-right: 4%;
    padding-left: 4%;
  }

  .sec_oral_surgery_doctor .greeting .img img {
    height: 30vw;
  }
}

/* ===================================================================
Layout House Call
=================================================================== */
/* Section House Call Oral Care
--------------------------------------------------------------------*/
.sec_house_call_oral_care {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_house_call_oral_care {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_house_call_oral_care {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-direction: row-reverse;
}

.layout_house_call_oral_care .img {
  max-width: 285px;
  width: 100%;
}

.layout_house_call_oral_care .description {
  max-width: 430px;
  width: 100%;
}

.layout_house_call_oral_care .img {
  margin-left: 2%;
}

@media screen and (max-width: 960px) {
  .layout_house_call_oral_care {
    flex-direction: column;
    flex-direction: column;
  }

  .layout_house_call_oral_care .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_house_call_oral_care .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_house_call_oral_care .description {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .layout_house_call_oral_care {
    padding-bottom: 20px;
  }

  .layout_house_call_oral_care .img img {
    height: 30vw;
  }
}

/* Section House Call About
--------------------------------------------------------------------*/
.sec_house_call_about {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_house_call_about {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.sub_sec_house_call_about_area {
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .sub_sec_house_call_about_area {
    padding-bottom: 20px;
  }
}

.sub_sec_house_call_service_guide {
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .sub_sec_house_call_service_guide {
    padding-bottom: 20px;
  }
}

.lst_house_call_service_guide {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1.7em;
}

.lst_house_call_service_guide>li {
  position: relative;
}

.lst_house_call_service_guide>li:not(:last-child) {
  padding-bottom: 25px;
}

.lst_house_call_service_guide>li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.4em;
  margin: auto 0;
  font-size: 1.4rem;
}

.lst_house_call_service_guide .ttl {
  font-size: 1.4rem;
}

.lst_house_call_service_guide .ttl+p {
  padding-top: .4em;
}

.lst_house_call_service_guide .txt_orange {
  color: #D36100;
}

.lst_house_call_service_guide .lst_inner {
  padding-bottom: 1em;
  padding-left: 1.6em;
  list-style: disc;
}

@media screen and (max-width: 960px) {
  .lst_house_call_service_guide {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .lst_house_call_service_guide>li:not(:last-child) {
    padding-bottom: 1em;
  }
}

.tbl_house_call_cost {
  margin-bottom: 25px;
}

.tbl_house_call_cost th,
.tbl_house_call_cost td {
  width: 50%;
}

@media screen and (max-width: 600px) {
  .tbl_house_call_cost {
    margin-bottom: 1em;
  }

  .tbl_house_call_cost th,
  .tbl_house_call_cost td {
    width: 100%;
  }
}

.sub_sec_house_call_document>p {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 25px;
}

.sub_sec_house_call_document .dl {
  padding-top: 25px;
}

.sub_sec_house_call_document .response_devise {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 25px 5%;
  flex-wrap: wrap;
}

.sub_sec_house_call_document .response_devise .tel {
  line-height: 1;
}

.sub_sec_house_call_document .response_devise .summary {
  padding-top: 1em;
}

@media screen and (max-width: 960px) {
  .sub_sec_house_call_document>p {
    max-width: none;
  }
}

@media screen and (max-width: 600px) {
  .sub_sec_house_call_document>p {
    padding-bottom: 1em;
  }

  .sub_sec_house_call_document .dl {
    padding: 1em 0;
  }

  .sub_sec_house_call_document .response_devise {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    padding: 10px 5%;
  }

  .sub_sec_house_call_document .response_devise .summary {
    padding-top: 0;
    font-size: 2.8vw;
  }
}

.lst_document_guide {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding-bottom: 25px;
}

.lst_document_guide li:not(:last-child):after {
  content: '/';
  padding: 0 10px;
}

@media screen and (max-width: 960px) {
  .lst_document_guide {
    flex-direction: column;
    max-width: none;
    padding-bottom: 1em;
    padding-left: 1em;
  }

  .lst_document_guide li:not(:last-child):after {
    content: none;
  }
}

/* ===================================================================
Layout Denture
=================================================================== */
/* Section Denture About
--------------------------------------------------------------------*/
.sec_denture_about {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

.sec_denture_about .layout_inner .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.sec_denture_about .layout_inner .img figure {
  width: 49%;
}

.sec_denture_about .layout_inner .img figure:last-child {
  margin-left: 2%;
}

.sec_denture_about .tbl {
  margin-bottom: 40px;
}

.sec_denture_about .tbl th {
  width: 40%;
}

.sec_denture_about .tbl td {
  width: 30%;
}

@media screen and (max-width: 600px) {
  .sec_denture_about {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }

  .sec_denture_about .tbl {
    margin-bottom: 20px;
  }

  .sec_denture_about .tbl th,
  .sec_denture_about .tbl td {
    width: 100%;
  }
}

.sub_sec_denture_other .lst {
  padding-left: 1.7em;
}

.sub_sec_denture_other .lst li {
  position: relative;
}

.sub_sec_denture_other .lst li:not(:last-child) {
  padding-bottom: 25px;
}

.sub_sec_denture_other .lst li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.4em;
  margin: auto 0;
  font-size: 1.4rem;
}

.sub_sec_denture_other .lst p {
  padding-top: .4em;
}

@media screen and (max-width: 600px) {
  .sub_sec_denture_other .lst li:not(:last-child) {
    padding-bottom: 1em;
  }
}

/* ===================================================================
Layout Device
=================================================================== */
/* Section Device About
--------------------------------------------------------------------*/
.sec_device_about {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

.sec_device_about .layout_inner .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.sec_device_about .layout_inner .img figure {
  width: 49%;
}

.sec_device_about .layout_inner .img figure:last-child {
  margin-left: 2%;
}

@media screen and (max-width: 600px) {
  .sec_device_about {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

/* Section Hospital Landscape
--------------------------------------------------------------------*/
.sec_hospital_landscape {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_hospital_landscape {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }
}

.sub_sec_hospital_landscape .img {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 25px;
}

.sub_sec_hospital_landscape .img figure {
  width: 32%;
}

.sub_sec_hospital_landscape .img figure:not(:nth-child(3n)) {
  margin-right: 2%;
}

.sub_sec_hospital_landscape .img figure:not(:nth-of-type(n+3)) {
  padding-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .sub_sec_hospital_landscape .img figure:not(:nth-of-type(n+3)) {
    padding-bottom: 1em;
  }
}

/* Section Facility Introduction
--------------------------------------------------------------------*/
.sec_facility_intro {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.sec_facility_intro .lst_commitment:not(:last-child) {
  padding-bottom: 25px;
}

.sec_facility_intro .lst_commitment.img_right .inner {
  flex-direction: row-reverse;
}

@media screen and (max-width: 600px) {
  .sec_facility_intro {
    padding-right: 4%;
    padding-left: 4%;
  }
}

.layout_facility_intro {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-direction: row-reverse;
}

.layout_facility_intro .img {
  max-width: 285px;
  width: 100%;
}

.layout_facility_intro .description {
  max-width: 430px;
  width: 100%;
}

.layout_facility_intro .img {
  margin-left: 2%;
}

.layout_facility_intro .img img {
  width: 100%;
  height: 194px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 960px) {
  .layout_facility_intro {
    flex-direction: column;
    flex-direction: column;
  }

  .layout_facility_intro .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_facility_intro .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_facility_intro .description {
    max-width: none;
  }

  .layout_facility_intro .img {
    margin-left: 0;
  }

  .layout_facility_intro .img img {
    height: 22vw;
    object-position: 0% 32%;
    font-family: 'object-position: 0% 32%;';
  }
}

@media screen and (max-width: 600px) {
  .layout_facility_intro {
    padding-bottom: 20px;
  }

  .layout_facility_intro .img img {
    height: 32vw;
    object-position: 0% 36%;
    font-family: 'object-position: 0% 36%;';
  }
}

/* ===================================================================
Layout Access
=================================================================== */
/* Section Medical Time Reserv
--------------------------------------------------------------------*/
.sec_medical_time_reserv {
  border-radius: 10px;
  background: white;
  margin-bottom: 40px;
  padding: 25px;
}

.sec_medical_time_reserv .medical_time {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}

.sec_medical_time_reserv .medical_time .tbl_green {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.sec_medical_time_reserv .medical_time .annotation {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.sec_medical_time_reserv .medical_time .annotation.no-flex {
  display: block;
}

.sec_medical_time_reserv .medical_time .annotation.type_a {
  padding-bottom: 1em;
  font-size: 1.2rem;
}

.sec_medical_time_reserv .medical_time .annotation.type_a li:not(:last-child) {
  padding-right: 1.6em;
}

.sec_medical_time_reserv .medical_time .annotation.type_b,
.sec_medical_time_reserv .medical_time .annotation.type_c {
  font-size: 1.6rem;
  color: #D36100;
}

.sec_medical_time_reserv .medical_time .annotation.type_b li:last-child {
  padding-left: 1em;
}

.sec_medical_time_reserv .medical_time .annotation.type_b li:last-child:before {
  content: none;
}


.sec_medical_time_reserv .response_devise .txt span {
  display: block;
}

.sec_medical_time_reserv .response_devise .txt .type_b {
  font-size: 1.2rem;
}

@media screen and (max-width: 960px) {
  .sec_medical_time_reserv .medical_time .tbl_green {
    font-size: 1rem;
  }

  .sec_medical_time_reserv .medical_time .annotation {
    flex-direction: column;
  }

  .sec_medical_time_reserv .medical_time .annotation.type_b li:last-child {
    padding-left: 0;
  }

  .sec_medical_time_reserv .medical_time .annotation.type_b li:last-child:before {
    content: '※';
  }

  .sec_medical_time_reserv .response_devise .txt .type_b {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .sec_medical_time_reserv {
    margin-bottom: 20px;
    padding-right: 4%;
    padding-left: 4%;
  }

  .sec_medical_time_reserv .medical_time {
    padding-bottom: 1em;
  }

  .sec_medical_time_reserv .medical_time .tbl_green {
    order: 1;
  }

  .sec_medical_time_reserv .medical_time .annotation.type_a {
    order: 3;
  }

  .sec_medical_time_reserv .medical_time .annotation.type_b,
  .sec_medical_time_reserv .medical_time .annotation.type_c {
    order: 2;
    font-size: 1.2rem;
  }

  .sec_medical_time_reserv .response_devise .txt .type_b {
    font-size: 2.8vw;
  }
}

/* Section Access
--------------------------------------------------------------------*/
.sec_access {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

.sec_access .map {
  padding: 30px;
  border: 1px solid #46392E;
}

@media screen and (max-width: 600px) {
  .sec_access {
    padding-right: 4%;
    padding-left: 4%;
  }

  .sec_access .map {
    padding: 1em;
  }
}

.layout_access {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-bottom: 25px;
}

.layout_access .img {
  max-width: 285px;
  width: 100%;
}

.layout_access .description {
  max-width: 430px;
  width: 100%;
}

.layout_access .img {
  margin-left: 2%;
}

.layout_access .txt_orange {
  color: #D36100;
}

.layout_access .address {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  padding-bottom: 1em;
}

.layout_access .txt_01 {
  font-size: 2rem;
}

.layout_access .txt_02 {
  margin-left: auto;
  font-size: 1.2rem;
  text-align: right;
}

.layout_access .txt_02 a:before {
  content: '>';
}

@media screen and (max-width: 960px) {
  .layout_access {
    flex-direction: column;
    flex-direction: column;
  }

  .layout_access .img {
    max-width: none;
    margin: 0;
    padding-bottom: 25px;
  }

  .layout_access .img img {
    width: 100%;
    height: 27vw;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }

  .layout_access .description {
    max-width: none;
  }

  .layout_access .img {
    margin-left: 0;
  }

  .layout_access .txt_01 {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 600px) {
  .layout_access {
    padding-bottom: 1em;
  }

  .layout_access .img img {
    height: 30vw;
  }

  .layout_access .address {
    padding-bottom: 0;
  }

  .layout_access .txt_01 {
    font-size: 1.4rem;
  }
}

/* ===================================================================
Layout 404
=================================================================== */
.sec_404 {
  border-radius: 10px;
  background: white;
  padding: 25px;
}

@media screen and (max-width: 600px) {
  .sec_404 {
    padding-right: 4%;
    padding-left: 4%;
  }
}

/* ===================================================================
Layout Archive/Category
=================================================================== */
.lst_archive_category li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .lst_archive_category li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.lst_archive_category h2 a {
  color: #72B639;
  text-decoration: none;
}

.lst_archive_category h2 a:hover {
  text-decoration: underline;
}

/* ===================================================================
Layout Single
=================================================================== */
.single .summary {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #E0DEDC;
}

.article_content {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #E0DEDC;
}

@media screen and (max-width: 600px) {
  .article_content {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.article_content img {
  margin-bottom: 1em;
}

.article_content ul {
  padding-left: 1.8em;
}

.article_content ul li {
  position: relative;
}

.article_content ul li:not(:last-child) {
  padding-bottom: 1em;
}

.article_content ul li:before {
  content: '\f058';
  padding-right: .4em;
  font-family: FontAwesome;
  position: absolute;
  top: -2px;
  bottom: 0;
  left: -1.4em;
  margin: auto 0;
  font-size: 1.4rem;
}

.article_content ul:not(:last-child) {
  padding-bottom: 1em;
}

.article_content ol {
  padding-left: 2em;
  list-style: decimal;
}

.article_content ol:not(:last-child) {
  padding-bottom: 1em;
}

.article_content table:not(:last-child) {
  margin-bottom: 1em;
}

/* ===================================================================
Layout Sidebar List
=================================================================== */
.sidebar section:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #E0DEDC;
}

.side_lst_news li:not(:last-child) {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #E0DEDC;
}