@charset "UTF-8";
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*お知らせ色*/
/*お知らせタイトル背景*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*お知らせアイコン*/
/*お知らせ背景*/
/*◇◆◇◆◇◆フッター◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*◇◆◇◆◇◆フッターリンク◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*tdサブ背景*/
/*td文字*/
/*tdサブ文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆汎用◇◆◇◆◇◆*/
/*緑*/
/*緑*/
/*緑*/
/*緑*/
/*白透過*/
/*緑*/
/*ピンク*/
/*ピンク*/
/*薄い緑*/
/*緑*/
/*緑*/
/*ピンク*/
/*ピンク*/
/*緑*/
/*ピンク*/
/*薄い緑*/
/*ピンク*/
/*灰色*/
/*薄い緑*/
/*ピンク*/
/*黄土色*/
/*薄い緑*/
/*緑*/
/*ピンク*/
/*薄い緑*/
/*薄い緑*/
/*赤*/
/*ピンク*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "notoserifjp_regular";
  src: url(../font/NotoSerifJP-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "notoserifjp_medium";
  src: url(../font/NotoSerifJP-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "notoserifjp_bold";
  src: url(../font/NotoSerifJP-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.txt_red {
  color: #ff0000;
  display: contents;
}

/* img -------------------------------------- */
.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l, .img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 768px), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 768px), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/*  -------------------------------------- */
.c_red {
  color: red;
}

/*ハンバーガー*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 99999999;
  background-color: #F4FFF0;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr .hbg_menu {
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr .hbg_menu ul {
  width: 100%;
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main_nav_sp .drawr .hbg_menu ul li {
  margin: 0 0 2rem 0;
  line-height: 130%;
}
.main_nav_sp .drawr .hbg_menu ul li a {
  color: #464646;
  text-decoration: none;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
}
.main_nav_sp .drawr .hbg_menu ul li ul {
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main_nav_sp .drawr .hbg_menu ul li ul li {
  margin: 0 0 1rem 0;
}
.main_nav_sp .drawr .hbg_menu ul li ul li a {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.2rem;
}
.main_nav_sp .drawr .hbg_menu ul li ul li ul {
  margin: 1rem 0 2rem 0;
}
.main_nav_sp .drawr .hbg_menu ul li ul li ul li a {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1rem;
}
.main_nav_sp .drawr .hbg_menu ul li.treatment a::after {
  font-family: "fontello";
  content: "\f004";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr .hbg_menu ul li.treatment .sub_nav_box {
  width: 100%;
  display: none;
}
.main_nav_sp .drawr .hbg_menu ul li.treatment .sub_nav_box .sub_nav_box_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.main_nav_sp .drawr .hbg_menu ul li.treatment .sub_nav_box .sub_nav_box_list ul {
  width: 48%;
}
.main_nav_sp .drawr .hbg_menu ul li.treatment .sub_nav_box .sub_nav_box_list ul li a::after {
  content: "";
}
.main_nav_sp .drawr .hbg_menu ul li.treatment .sub_nav_box .sub_nav_box_list ul li ul {
  width: 100%;
}
.main_nav_sp .drawr .hbg_menu ul li.open_treatment a::after {
  font-family: "fontello";
  content: "\f005";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr .hbg_menu ul.list1 {
  border-right: #707070 1px solid;
}
.main_nav_sp .drawr .hbg_menu ul.list3 {
  border-right: #707070 1px solid;
  margin: 0;
}
.main_nav_sp .drawr .hbg_menu ul.list3 li ul {
  margin: 0 0 0 0;
}
.main_nav_sp .drawr .hbg_menu ul.list4 {
  margin: 0;
}
.main_nav_sp .drawr .hbg_menu ul.list4 li ul {
  margin: 0 0 0 0;
}
.main_nav_sp .drawr .hbg_menu ul.footer_blobal li {
  margin: 0 0 1rem 0;
}
.main_nav_sp .drawr {
  /*
  ul.hbg{
    list-style-type: none;
    border-top: $color_white 1px solid;
    width: 90%;
    margin: 20vw auto 20vw auto;
    li{
      width: 100%;
      text-align: center;        
      &.treatment{
        &:hover{
          cursor: pointer;
          cursor: hand;
        }
      }        
      a{
        color: $color_white;
        font-size: 1.6rem;
        text-decoration: none;
        padding: 1rem;
        border-bottom: $color_white 1px solid;
        box-sizing: border-box;
        letter-spacing: 0.05em;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;        
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-direction:row;
        flex-direction:row;
        line-height: 140%;
        span{
          display: none;          
        }
      }
      ul.main_nav_sub{
        display: none;
        width: 100%;            
        list-style-type: none;
        &.open_nav{
         display: block;
        }
        li{
          a{
            background-color: $color2;
            color: $bace_color;        
            border-bottom: none;
            text-align: center;
            border-bottom: $color1 1px solid;
            &::after{
              content: "" !important;
            }            
          }
        }
      }          

      &.treatment_hbg{
        a{
          &::after{
            font-family: 'fontello';                
            content: "\00f004";
            font-size: 0.8rem;
            margin: 0 0 0 0.5rem;
          }     
        }
      }   
      &.open_treatment{
        a{
          &::after{
            font-family: 'fontello';                
            content: "\00f005";
            font-size: 0.8rem;
            margin: 0 0 0 0.5rem;
          }     
        }
      }           
    }
  }
  */
}

@media screen and (min-width: 768px), print {
  .main_nav_sp {
    display: none;
  }
}
.toggle {
  display: none;
  height: 14vw;
}

.toggle-label {
  cursor: pointer;
  display: block;
  width: 14%;
  height: 10vw;
  padding: 0 0 0.5vw 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

.toggle-label {
  cursor: pointer;
  width: 100%;
}

.toggle-label .toggle-icon,
.toggle-label .toggle-icon:before,
.toggle-label .toggle-icon:after {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 28px;
  background: #ffffff;
  content: "";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.toggle-label .toggle-text {
  position: relative;
  display: block;
  top: calc(100% - 10px);
  height: 14px;
  color: #ffffff;
  text-align: center;
}

.toggle-label .toggle-text:before {
  position: absolute;
  width: 100%;
  left: 0;
  content: "MENU";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: visible;
  opacity: 1;
  font-size: 1rem;
}

.toggle-label .toggle-text:after {
  position: absolute;
  width: 100%;
  left: 0;
  content: "CLOSE";
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  font-size: 1rem;
}

.toggle-label .toggle-icon {
  -webkit-transform: translate3d(-50%, -5px, 0);
          transform: translate3d(-50%, -5px, 0);
}

.toggle-label .toggle-icon:before {
  -webkit-transform: translate3d(-50%, -11.5px, 0);
          transform: translate3d(-50%, -11.5px, 0);
}

.toggle-label .toggle-icon:after {
  -webkit-transform: translate3d(-50%, 5px, 0);
          transform: translate3d(-50%, 5px, 0);
}

.toggle:checked ~ .toggle-label .toggle-icon {
  background-color: transparent;
}

.toggle:checked ~ .toggle-label .toggle-icon:before,
.toggle:checked ~ .toggle-label .toggle-icon:after {
  top: 0;
}

.toggle:checked ~ .toggle-label .toggle-icon:before {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 1.5px;
}

.toggle:checked ~ .toggle-label .toggle-icon:after {
  -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
          transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 8.5px;
}

.toggle:checked ~ .toggle-label .toggle-text:before {
  visibility: hidden;
  opacity: 0;
}

.toggle:checked ~ .toggle-label .toggle-text:after {
  visibility: visible;
  opacity: 1;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 15%;
  max-width: 15%;
  position: fixed;
  cursor: pointer;
  right: 0;
  top: 0;
  z-index: 99999999999;
  padding: 0 0 0.6rem 0;
  background-color: #8EB884;
  height: 12vw;
}

/*見出し*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
h1 {
  margin: 0;
}

h2.top_title {
  text-align: center;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 160%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
h2.top_title::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1.8rem;
  background: url(../img/icon_h2.svg) no-repeat;
  background-size: contain;
  /*margin: 0 auto -0.5rem auto;*/
  margin: 0 0 0 0;
}
h2.top_title.twodoctors {
  line-height: 120%;
}
h2.top_title.twodoctors::before {
  content: "";
  /*margin: 0 auto 0 auto;*/
  margin: 0;
}
h2.low {
  text-align: center;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 160%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
h2.low::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1.8rem;
  background: url(../img/icon_h2.svg) no-repeat;
  background-size: contain;
  /*margin: 0 auto -0.5rem auto;*/
  margin: 0 0 0 0;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #ffffff;
  background-color: #3DA179;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
}
h3.pink {
  background-color: #d9a5b9;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #8EB884;
  background-color: #F9FCF5;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2rem;
  padding: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  width: calc(100% - 0.8rem);
  -webkit-box-shadow: 0.8rem 0.8rem 0 #E8F2E6;
          box-shadow: 0.8rem 0.8rem 0 #E8F2E6;
}
h4.first {
  margin: 0 0 1.5rem 0;
}

h5.low {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.9rem;
  color: #E997B5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
h5.low span {
  width: calc(100% - 2.5rem);
}
h5.low::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  background: url(../img/h5.svg) no-repeat;
  background-size: contain;
  margin: 0.2rem 0.5rem 0 0;
}
h5.first {
  margin: 0 0 1rem 0;
}

p {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    text-align: center;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 4rem;
    line-height: 160%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  h2.top_title::before {
    content: "";
    display: block;
    width: 62px;
    height: 41.333px;
    background: url(../img/icon_h2.svg) no-repeat;
    background-size: contain;
    /*margin: 0 auto -8px auto;*/
    margin: 0;
  }
  h2.top_title.twodoctors {
    line-height: 160%;
  }
  h2.top_title.twodoctors::before {
    content: "";
    /*margin: 0 auto -8px auto;*/
    margin: 0;
  }
  h2.low {
    text-align: center;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 4rem;
    line-height: 160%;
    letter-spacing: 0.1em;
    margin: 100px 0 48px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  h2.low::before {
    content: "";
    display: block;
    width: 62px;
    height: 41.333px;
    background: url(../img/icon_h2.svg) no-repeat;
    background-size: contain;
    /*margin: 0 auto -8px auto;*/
    margin: 0;
  }
  h2.first {
    margin: 0 0 48px 0;
  }
  h3.low {
    color: #ffffff;
    background-color: #3DA179;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 3.2rem;
    padding: 9px 15px 10px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 80px 0 20px 0;
    line-height: 160%;
  }
  h3.pink {
    background-color: #d9a5b9;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #8EB884;
    background-color: #F9FCF5;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.8rem;
    padding: 8px 16px 8px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 60px 0 20px 0;
    line-height: 120%;
    width: calc(100% - 10px);
    -webkit-box-shadow: 10px 10px 0 #E8F2E6;
            box-shadow: 10px 10px 0 #E8F2E6;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #E997B5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 60px 0 10px 0;
  }
  h5.low span {
    width: calc(100% - 43px);
  }
  h5.low::before {
    content: "";
    display: block;
    width: 33px;
    height: 22px;
    background: url(../img/h5.svg) no-repeat;
    background-size: contain;
    margin: 5px 10px 0 0;
  }
  h5.first {
    margin: 0 0 10px 0;
  }
  p {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #8EB884;
  border: #8EB884 1px solid;
  width: 8%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-size: 1.1rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #464646;
  border: #8EB884 1px solid;
}
table.timetable tr td i {
  font-size: 4vw;
  color: #464646;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #648E5A;
  background-color: #F0FCEC;
  font-weight: bold;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 1.2rem;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #464646;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
table.timetable.timetable_pink tr th {
  color: #ffffff;
  background-color: #D2A0AF;
  border: #D2A0AF 1px solid;
}
table.timetable.timetable_pink tr td {
  border: #D2A0AF 1px solid;
}
table.timetable.timetable_pink tr td.time {
  color: #D2A0AF;
  background-color: #FFE9F1;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #8EB884;
    border: #8EB884 1px solid;
    width: 8%;
    height: 40px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 150px;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: normal;
    font-size: 1.3rem;
    padding: 0;
    vertical-align: middle;
    color: #464646;
    height: 54px;
    box-sizing: border-box;
    border-bottom: #8EB884 1px solid;
  }
  table.timetable tr td i {
    font-size: 1.8rem;
    color: #464646;
  }
  table.timetable tr td.time {
    text-align: center;
    color: #648E5A;
    background-color: #F0FCEC;
    font-weight: bold;
    font-size: 1.6rem;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 1.4rem;
    margin: 2px 0 0 0;
    width: 100%;
    color: #464646;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 150%;
    text-align: left;
  }
  table.timetable.timetable_pink tr th {
    color: #ffffff;
    background-color: #D2A0AF;
    border: #D2A0AF 1px solid;
  }
  table.timetable.timetable_pink tr td {
    border: #D2A0AF 1px solid;
  }
  table.timetable.timetable_pink tr td.time {
    color: #D2A0AF;
    background-color: #FFE9F1;
  }
  .access_timetable table.timetable tr th {
    font-size: 1.8rem;
  }
  .access_timetable table.timetable tr td {
    font-size: 1.8rem;
  }
  .access_timetable table.timetable caption {
    font-size: 1.8rem;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
table.low_table caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #ffffff;
  border: #CCCCCC 1px solid;
  background-color: #3DA179;
}
table.low_table tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #464646;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}
table.low_table.lts_price tr th {
  width: 50%;
}
table.low_table.lts_price tr td {
  width: 50%;
  text-align: right;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #ffffff;
    border: #CCCCCC 1px solid;
    background-color: #3DA179;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #464646;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  table.low_table.lts_price {
    width: 50%;
    margin: 0 auto 20px auto;
  }
  table.low_table.lts_price tr th {
    width: 50%;
  }
  table.low_table.lts_price tr td {
    width: 50%;
    text-align: right;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 1200px;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #ffffff;
  border: #CCCCCC 1px solid;
  background-color: #3DA179;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #464646;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}
table.low_table_slide.lts_price tr th {
  width: 50%;
}
table.low_table_slide.lts_price tr td {
  width: 50%;
  text-align: right;
}
table.low_table_slide.fever_table tr th:nth-child(1) {
  width: 24%;
}
table.low_table_slide.fever_table tr th:nth-child(2) {
  width: 38%;
}
table.low_table_slide.fever_table tr th:nth-child(3) {
  width: 38%;
}
table.low_table_slide.fever_table tr td:nth-child(1) {
  width: 24%;
}
table.low_table_slide.fever_table tr td:nth-child(2) {
  width: 38%;
}
table.low_table_slide.fever_table tr td:nth-child(3) {
  width: 38%;
}
table.low_table_slide.lifestyle_table tr th {
  width: 50%;
}
table.low_table_slide.lifestyle_table tr td {
  width: 50%;
}
table.low_table_slide.checkup_table tr th {
  width: 25%;
}
table.low_table_slide.checkup_table tr th:nth-child(2) {
  width: 75%;
}
table.low_table_slide.checkup_table tr td {
  width: 75%;
}
table.low_table_slide.vaccination_table tr th:nth-child(1) {
  width: 10%;
}
table.low_table_slide.vaccination_table tr th:nth-child(2) {
  width: 30%;
}
table.low_table_slide.vaccination_table tr th:nth-child(3) {
  width: 20%;
}
table.low_table_slide.vaccination_table tr th:nth-child(4) {
  width: 20%;
}
table.low_table_slide.vaccination_table tr th:nth-child(5) {
  width: 20%;
}
table.low_table_slide.vaccination_table tr td.td1 {
  width: 100px;
  color: #ffffff;
  border: #CCCCCC 1px solid;
  background-color: #3DA179;
}
table.low_table_slide.vaccination_table tr td.td2 {
  width: 220px;
}
table.low_table_slide.vaccination_table tr td.td3 {
  width: 220px;
}
table.low_table_slide.vaccination_table tr td.td4 {
  width: 220px;
}
table.low_table_slide.vaccination_table tr td.td5 {
  width: 220px;
}
table.low_table_slide.vaccination_table tr td.td6 {
  width: 220px;
}
table.low_table_slide.vaccination_table tr td.td7 {
  width: 440px;
}
table.low_table_slide.course_table {
  width: 800px;
  margin: 3rem 0 2rem 0;
}
table.low_table_slide.course_table tr th {
  text-align: center;
}
table.low_table_slide.course_table tr th.menu {
  width: 40%;
}
table.low_table_slide.course_table tr th.course {
  width: 20%;
}
table.low_table_slide.course_table tr td {
  text-align: center;
}
table.low_table_slide.course_table tr td:nth-child(1) {
  width: 40%;
  text-align: left;
}
table.low_table_slide.course_table tr td:nth-child(2) {
  width: 20%;
}
table.low_table_slide.course_table tr td:nth-child(3) {
  width: 20%;
}
table.low_table_slide.course_table tr td:nth-child(4) {
  width: 20%;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #ffffff;
    border: #CCCCCC 1px solid;
    background-color: #3DA179;
  }
  table.low_table_slide tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #464646;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide.lts_price tr th {
    width: 50%;
  }
  table.low_table_slide.lts_price tr td {
    width: 50%;
    text-align: right;
  }
  table.low_table_slide.fever_table tr th:nth-child(1) {
    width: 20%;
  }
  table.low_table_slide.fever_table tr th:nth-child(2) {
    width: 40%;
  }
  table.low_table_slide.fever_table tr th:nth-child(3) {
    width: 40%;
  }
  table.low_table_slide.fever_table tr td:nth-child(1) {
    width: 20%;
  }
  table.low_table_slide.fever_table tr td:nth-child(2) {
    width: 40%;
  }
  table.low_table_slide.fever_table tr td:nth-child(3) {
    width: 40%;
  }
  table.low_table_slide.lifestyle_table tr th {
    width: 50%;
  }
  table.low_table_slide.lifestyle_table tr td {
    width: 50%;
  }
  table.low_table_slide.vaccination_table tr th:nth-child(1) {
    width: 10%;
  }
  table.low_table_slide.vaccination_table tr th:nth-child(2) {
    width: 30%;
  }
  table.low_table_slide.vaccination_table tr th:nth-child(3) {
    width: 20%;
  }
  table.low_table_slide.vaccination_table tr th:nth-child(4) {
    width: 20%;
  }
  table.low_table_slide.vaccination_table tr th:nth-child(5) {
    width: 20%;
  }
  table.low_table_slide.vaccination_table tr td.td1 {
    width: 100px;
    color: #ffffff;
    border: #CCCCCC 1px solid;
    background-color: #3DA179;
  }
  table.low_table_slide.vaccination_table tr td.td2 {
    width: 220px;
  }
  table.low_table_slide.vaccination_table tr td.td3 {
    width: 220px;
  }
  table.low_table_slide.vaccination_table tr td.td4 {
    width: 220px;
  }
  table.low_table_slide.vaccination_table tr td.td5 {
    width: 220px;
  }
  table.low_table_slide.vaccination_table tr td.td6 {
    width: 220px;
  }
  table.low_table_slide.vaccination_table tr td.td7 {
    width: 440px;
  }
  table.low_table_slide.course_table {
    width: 1200px;
    margin: 80px 0 20px 0;
  }
  table.low_table_slide.course_table tr th {
    text-align: center;
  }
  table.low_table_slide.course_table tr th.menu {
    width: 40%;
  }
  table.low_table_slide.course_table tr th.course {
    width: 20%;
  }
  table.low_table_slide.course_table tr td {
    text-align: center;
  }
  table.low_table_slide.course_table tr td:nth-child(1) {
    width: 40%;
    text-align: left;
  }
  table.low_table_slide.course_table tr td:nth-child(2) {
    width: 20%;
  }
  table.low_table_slide.course_table tr td:nth-child(3) {
    width: 20%;
  }
  table.low_table_slide.course_table tr td:nth-child(4) {
    width: 20%;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
table.low_table_spblock caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #ffffff;
  background-color: #3DA179;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #464646;
  background-color: #ffffff;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_spblock tr td span {
  color: #648E5A;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #648E5A;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.low_table_spblock caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock tr th {
    width: 30%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #ffffff;
    background-color: #3DA179;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #464646;
    background-color: #ffffff;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #648E5A;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #648E5A;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
}
/*テーブル線上下のみ*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
table.low_table2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table2 tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #ffffff;
  border-bottom: #8EB884 1px solid;
  background-color: #8EB884;
}
table.low_table2 tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #464646;
  border-bottom: #8EB884 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #8EB884 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #8EB884 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  table.low_table2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table2 tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #ffffff;
    border-bottom: #8EB884 1px solid;
    background-color: #8EB884;
  }
  table.low_table2 tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #464646;
    border-bottom: #8EB884 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #8EB884 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #8EB884 1px solid;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide2 {
  width: 1000px;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide2 tr th {
  width: 40%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #ffffff;
  border-bottom: #8EB884 1px solid;
  background-color: #8EB884;
}
table.low_table_slide2 tr td {
  width: 60%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #464646;
  border-bottom: #8EB884 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #8EB884 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #8EB884 1px solid;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  table.low_table_slide2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide2 tr th {
    width: 40%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #ffffff;
    border-bottom: #8EB884 1px solid;
    background-color: #8EB884;
  }
  table.low_table_slide2 tr td {
    width: 60%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #464646;
    border-bottom: #8EB884 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #8EB884 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #8EB884 1px solid;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
table.low_table_spblock2 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock2 tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #ffffff;
  background-color: #8EB884;
  border-bottom: #8EB884 1px solid;
}
table.low_table_spblock2 tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #464646;
  background-color: #ffffff;
  border-bottom: #8EB884 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #648E5A;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #648E5A;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #8EB884 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock2 {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.low_table_spblock2 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock2 tr th {
    width: 30%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #ffffff;
    background-color: #8EB884;
    border-bottom: #8EB884 1px solid;
  }
  table.low_table_spblock2 tr td {
    width: 70%;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #464646;
    background-color: #ffffff;
    border-bottom: #8EB884 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #648E5A;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #648E5A;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #8EB884 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #8EB884 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #464646;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #8EB884 1px solid;
}
table.low_table3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table3 tr th {
  width: 30%;
  padding: 1rem;
  border-bottom: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  background-color: #8EB884;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table3 tr td {
  width: 70%;
  padding: 1rem;
  border-bottom: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #464646;
  background-color: #ffffff;
}
table.low_table3 tr:first-child th {
  border-top-left-radius: 0.7rem;
}
table.low_table3 tr:first-child td {
  border-top-right-radius: 0.7rem;
}
table.low_table3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
  border-bottom: #8EB884 1px solid;
}
table.low_table3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #464646;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #8EB884 1px solid;
  }
  table.low_table3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 0.5rem 0 0 0;
  }
  table.low_table3 tr th {
    width: 30%;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    background-color: #8EB884;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table3 tr td {
    width: 70%;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #464646;
    background-color: #ffffff;
  }
  table.low_table3 tr:first-child th {
    border-top-left-radius: 10px;
  }
  table.low_table3 tr:first-child td {
    border-top-right-radius: 10px;
  }
  table.low_table3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #8EB884 1px solid;
  }
  table.low_table3 tr:last-child td {
    border-bottom-right-radius: 10px;
  }
}
/* -----------------------------------------------------------
　テーブルサブタイトル
----------------------------------------------------------- */
table.low_table_subtitle3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #464646;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #8EB884 1px solid;
}
table.low_table_subtitle3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 1rem 0 0 0;
}
table.low_table_subtitle3 tr th {
  width: 100%;
  border-bottom: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_subtitle3 tr th .sub_title {
  background-color: #F0FCEC;
  color: #ffffff;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
table.low_table_subtitle3 tr th .sub_title.st_top {
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_subtitle3 tr th .sub_text {
  background-color: #62CFA3;
  color: #464646;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
table.low_table_subtitle3 tr td {
  width: 100%;
  padding: 0.5rem;
  border-bottom: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #464646;
  background-color: #ffffff;
}
table.low_table_subtitle3 tr:first-child th {
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_subtitle3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
}
table.low_table_subtitle3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table_subtitle3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #464646;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #8EB884 1px solid;
  }
  table.low_table_subtitle3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 16px 0 0 0;
  }
  table.low_table_subtitle3 tr th {
    width: 100%;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    background-color: #8EB884;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_subtitle3 tr th .sub_title {
    background-color: #F0FCEC;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  table.low_table_subtitle3 tr th .sub_title.st_top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  table.low_table_subtitle3 tr th .sub_text {
    background-color: #62CFA3;
    color: #464646;
    margin: 0;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
  }
  table.low_table_subtitle3 tr td {
    width: 100%;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #464646;
    background-color: #ffffff;
  }
  table.low_table_subtitle3 tr:first-child th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  table.low_table_subtitle3 tr:last-child th {
    border-bottom-left-radius: 0.7rem;
  }
  table.low_table_subtitle3 tr:last-child td {
    border-bottom-right-radius: 0.7rem;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide3 {
  width: 1200px;
  border-collapse: separate;
  border-spacing: 0;
  color: #464646;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 0.7rem;
  border-top: #F0FCEC 1px solid;
}
table.low_table_slide3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide3 tr th {
  width: auto;
  padding: 1rem;
  border-bottom: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  background-color: #8EB884;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
table.low_table_slide3 tr td {
  width: auto;
  padding: 1rem;
  border-bottom: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #464646;
  background-color: #ffffff;
}
table.low_table_slide3 tr:first-child th {
  border-top-left-radius: 0.7rem;
}
table.low_table_slide3 tr:first-child td {
  border-top-right-radius: 0.7rem;
}
table.low_table_slide3 tr:last-child th {
  border-bottom-left-radius: 0.7rem;
  border-bottom: #8EB884 1px solid;
}
table.low_table_slide3 tr:last-child td {
  border-bottom-right-radius: 0.7rem;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  table.low_table_slide3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #464646;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 0.7rem;
    border-top: #8EB884 1px solid;
  }
  table.low_table_slide3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
    line-height: 160%;
  }
  table.low_table_slide3 tr th {
    width: auto;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    background-color: #8EB884;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
  }
  table.low_table_slide3 tr td {
    width: auto;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #464646;
    background-color: #ffffff;
  }
  table.low_table_slide3 tr:first-child th {
    border-top-left-radius: 10px;
  }
  table.low_table_slide3 tr:first-child td {
    border-top-right-radius: 10px;
  }
  table.low_table_slide3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #8EB884 1px solid;
  }
  table.low_table_slide3 tr:last-child td {
    border-bottom-right-radius: 10px;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #464646;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
}
table.low_table_spblock3 caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock3 tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  background-color: #8EB884;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
}
table.low_table_spblock3 tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: #F0FCEC 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
  color: #464646;
  background-color: #ffffff;
}
table.low_table_spblock3 tr td span {
  color: #648E5A;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #648E5A;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #8EB884 1px solid;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}
table.low_table_spblock3 tr:last-child td {
  border-bottom-left-radius: 0.7rem;
  border-bottom-right-radius: 0.7rem;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #464646;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
  }
  table.low_table_spblock3 caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock3 tr th {
    width: 30%;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: none;
    background-color: #8EB884;
    color: #ffffff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
  }
  table.low_table_spblock3 tr td {
    width: 70%;
    padding: 20px;
    border-bottom: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
    color: #464646;
    background-color: #ffffff;
  }
  table.low_table_spblock3 tr td span {
    color: #F0FCEC;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #F0FCEC;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #8EB884 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #8EB884 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #8EB884 1px solid;
  }
  table.low_table_spblock3 tr:last-child td {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.img_right {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_right img {
  width: 80%;
  height: auto;
}

.img_right2 {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_right2 img {
  width: 80%;
  height: auto;
}

.img_center {
  margin: 0 0 10px 0;
  text-align: center;
}
.img_center img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 500px;
    height: auto;
  }
  .img_right2 {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right2 img {
    width: 750px;
    height: auto;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
/*リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*標準 disc*/
ul.list_normal {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_normal li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準2列 disc*/
ul.list_normal_two {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_two li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準3列 disc*/
ul.list_normal_three {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_three li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準4列 disc*/
ul.list_normal_four {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_four li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準 maru*/
ul.list_maru {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left top 0.4rem;
  background-size: 1.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
}

/*標準2列 maru*/
ul.list_maru_two {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_two li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left top 0.4rem;
  background-size: 1.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
}

/*標準3列 maru*/
ul.list_maru_three {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_three li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left top 0.4rem;
  background-size: 1.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
}

/*標準2列 maru*/
ul.list_maru_line {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_line li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left top 0.4rem;
  background-size: 1.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
}

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_four {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_normal_four li {
    width: 22%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 24px;
    margin: 0 0 10px 0;
    padding: 0 0 0 33px;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 24px;
    margin: 0 0 10px 0;
    padding: 0 0 0 33px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 24px;
    margin: 0 0 10px 0;
    padding: 0 0 0 33px;
  }
  /*並び maru*/
  ul.list_maru_line {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.list_maru_line li {
    width: auto;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 4px;
    background-size: 24px;
    margin: 0 30px 10px 0;
    padding: 0 0 0 33px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
}

/*数字*/
dl.num_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 120%;
  width: 100%;
}
dl.num_list dt {
  width: 6%;
  margin: 0 0 1rem 0;
}
dl.num_list dd {
  width: 94%;
  margin: 0 0 1rem 0;
}

/*記号*/
dl.symbol_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 120%;
  width: 100%;
}
dl.symbol_list dt {
  width: 6%;
  margin: 0 0 1rem 0;
}
dl.symbol_list dd {
  width: 94%;
  margin: 0 0 1rem 0;
}
dl.symbol_list.ajst {
  margin: 0;
}
dl.symbol_list.ajst dt {
  width: 8%;
}
dl.symbol_list.ajst dd {
  width: 90%;
}

/*タイトルボックス*/
dl.title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #3DA179;
  color: #ffffff;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dt:first-child {
  border-top: #CCCCCC 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dd ul {
  margin: 0;
}

ul.point_list {
  list-style-type: none;
}
ul.point_list li {
  width: 100%;
  margin: 0 0 3rem 0;
  color: #464646;
  background-color: #F9FCF5;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.7rem;
  padding: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 140%;
  width: calc(100% - 0.8rem);
  -webkit-box-shadow: 0.8rem 0.8rem 0 #E8F2E6;
          box-shadow: 0.8rem 0.8rem 0 #E8F2E6;
}
ul.point_list li span {
  color: #8EB884;
  font-size: 2.2rem;
  display: block;
  margin: 0 0 1rem 0;
}

ul.color_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.color_box li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.5rem;
  text-align: center;
  line-height: 140%;
  padding: 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  position: relative;
}
ul.color_box li:nth-child(odd)::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(232, 255, 226)), to(rgb(192, 227, 184)));
  background: linear-gradient(to bottom, rgb(232, 255, 226) 0%, rgb(192, 227, 184) 100%);
}
ul.color_box li:nth-child(odd) p::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background: url("../img/icon_01.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto 0.5rem auto;
}
ul.color_box li:nth-child(even)::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 245, 249)), to(rgb(251, 202, 221)));
  background: linear-gradient(to bottom, rgb(255, 245, 249) 0%, rgb(251, 202, 221) 100%);
}
ul.color_box li:nth-child(even) p::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: block;
  background: url("../img/icon_02.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto 0.5rem auto;
}
ul.color_box li::after {
  content: "";
  width: 88%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 6%;
  z-index: 1;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}
ul.color_box li p {
  margin: 0;
  position: relative;
  z-index: 2;
  font-size: 0.97rem;
}
ul.color_box li p span {
  font-size: 1.2rem;
}
ul.color_box li p span.ajs {
  margin: 0 0 0 0;
}
ul.color_box li p span.ajs span {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 16px 0;
  }
  dl.bio_list dd {
    width: 1100px;
    margin: 0 0 16px 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 16px 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 16px 0;
  }
  dl.num_list.smail {
    width: 700px;
  }
  dl.num_list.smail dt {
    width: 20px;
    margin: 0 0 10px 0;
  }
  dl.num_list.smail dd {
    width: 680px;
    margin: 0 0 10px 0;
  }
  /*記号*/
  dl.symbol_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.symbol_list dt {
    width: 20px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list dd {
    width: 1180px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list.smail {
    width: 700px;
  }
  dl.symbol_list.smail dt {
    width: 20px;
    margin: 0 0 16px 0;
  }
  dl.symbol_list.smail dd {
    width: 680px;
    margin: 0 0 16px 0;
  }
  dl.symbol_list.ajst {
    width: 1100px;
    margin: 0;
  }
  dl.symbol_list.ajst dt {
    width: 30px;
  }
  dl.symbol_list.ajst dd {
    width: 1070px;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #3DA179;
    color: #ffffff;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #CCCCCC 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dd ul {
    margin: 0;
  }
  ul.point_list {
    list-style-type: none;
  }
  ul.point_list li {
    width: 100%;
    color: #464646;
    background-color: #F9FCF5;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 8px 16px 8px 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 40px 0;
    line-height: 120%;
    width: calc(100% - 10px);
    -webkit-box-shadow: 10px 10px 0 #E8F2E6;
            box-shadow: 10px 10px 0 #E8F2E6;
  }
  ul.point_list li span {
    color: #8EB884;
    font-size: 3rem;
    display: inline-block;
    margin: 0 20px 0 0;
  }
  ul.color_box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.color_box li {
    width: 380px;
    height: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.2rem;
    text-align: center;
    line-height: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 32px 0;
    position: relative;
  }
  ul.color_box li:nth-child(odd)::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(232, 255, 226)), to(rgb(192, 227, 184)));
    background: linear-gradient(to bottom, rgb(232, 255, 226) 0%, rgb(192, 227, 184) 100%);
  }
  ul.color_box li:nth-child(odd) p::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background: url("../img/icon_01.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0 auto 15px auto;
  }
  ul.color_box li:nth-child(even)::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 245, 249)), to(rgb(251, 202, 221)));
    background: linear-gradient(to bottom, rgb(255, 245, 249) 0%, rgb(251, 202, 221) 100%);
  }
  ul.color_box li:nth-child(even) p::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background: url("../img/icon_02.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0 auto 15px auto;
  }
  ul.color_box li::after {
    content: "";
    width: 92%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 4%;
    z-index: 1;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
  }
  ul.color_box li p {
    margin: 0;
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
  }
  ul.color_box li p span {
    font-size: 2.8rem;
  }
  ul.color_box li p span.ajs {
    margin: 0 0 -40px 0;
  }
  ul.color_box li p span.ajs span {
    font-size: 2rem;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 0;
  height: 0;
  border: none;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-top: 2rem solid #8EB884;
  text-align: center;
  display: block;
  margin: 1.5rem auto 2.5rem auto;
}

/*強調*/
.emphasis {
  background-color: #F0FCEC;
  border: #8EB884 1px solid;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}
.emphasis ul.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
}
.low_tel span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
  font-weight: bold;
}
.low_tel span i {
  font-size: 1.4rem;
}

.text_bold {
  font-weight: bold;
}

.text_center {
  text-align: center;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 30px solid #8EB884;
    text-align: center;
    display: block;
    margin: 30px auto 40px auto;
  }
  /*二列*/
  .two_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #F0FCEC;
    border: #8EB884 1px solid;
    padding: 33px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  .emphasis ul.mb_none {
    margin: 0;
  }
  .emphasis.recruitment_box {
    width: 40%;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
  }
  .low_tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .low_tel span i {
    font-size: 1.8rem;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_center {
    text-align: center;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
ul.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.5rem;
  color: #464646;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.5rem;
  color: #464646;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 768px), print {
  ul.pankuzu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    width: 1200px;
    margin: 36px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.2rem;
    color: #464646;
    margin: 0 11px;
  }
  ul.pankuzu_list li a {
    font-size: 1.8rem;
    color: #464646;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

.lightbox_frame {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lightbox_frame .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox_frame .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame .img_box a img {
  width: 100%;
}
.lightbox_frame .img_box a span {
  display: block;
  text-align: center;
  color: #464646;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

.lightbox_frame2 {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lightbox_frame2 .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lightbox_frame2 .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame2 .img_box a img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .lightbox {
    z-index: 9999999 !important;
  }
  .lightbox_frame {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame .img_box a img {
    width: 380px;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #464646;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
  }
}
/* -----------------------------------------------------------
　バナー
----------------------------------------------------------- */
.banner_01 {
  width: 96%;
  margin: 0 auto 2rem auto;
  border: #8EB884 2px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #F0FCEC;
  padding: 1rem;
  text-decoration: none;
  color: #464646;
}
.banner_01 img {
  width: 70%;
  display: block;
  margin: 0 auto 1rem auto;
}
.banner_01 .banner_title {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #464646;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #464646;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #464646;
}

@media screen and (min-width: 768px), print {
  .banner_01 {
    width: 800px;
    height: 300px;
    margin: 0 auto 40px auto;
    border: #8EB884 2px solid;
    border-radius: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    background-color: #F0FCEC;
    padding: 20px;
    text-decoration: none;
    color: #464646;
    position: relative;
  }
  .banner_01 img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    display: block;
    margin: 0;
  }
  .banner_01 .banner_title {
    position: absolute;
    top: 20px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 3rem;
    font-weight: bold;
    color: #464646;
    margin: 0 0 0 0;
  }
  .banner_01 .banner_text {
    position: absolute;
    top: 80px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 1.6rem;
    font-weight: normal;
    color: #464646;
    margin: 0 0 1rem 0;
    line-height: 160%;
    width: 500px;
  }
  .banner_01 ul {
    position: absolute;
    top: 80px;
    left: 240px;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  color: #648E5A;
}

.low_button {
  background: url("../img/icon_arrow_green.svg") no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  background-color: #ffffff;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 3rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3DA179;
  border: #3DA179 2px solid;
  font-size: 1.4rem;
  font-weight: normal;
}
.low_button.large {
  padding: 1.5rem 3.5rem 1.5rem 3rem;
  font-size: 2.1rem;
}

ul.link_list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
ul.link_list li {
  width: auto;
}

ul.link_list_button {
  list-style-type: none;
  margin: 2rem 0 0 0;
}
ul.link_list_button li {
  width: 100%;
}
ul.link_list_button li a {
  background: url("../img/icon_arrow_green.svg") no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  background-color: #ffffff;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 3rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3DA179;
  border: #3DA179 2px solid;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    color: #648E5A;
  }
  .low_link_text:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    background: url("../img/icon_arrow_green.svg") no-repeat;
    background-position: right 20px center;
    background-size: 11px;
    background-color: #ffffff;
    width: auto;
    height: auto;
    margin: 0 0 30px 0;
    text-align: left;
    text-decoration: none;
    padding: 10px 60px 10px 40px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3DA179;
    border: #3DA179 2px solid;
    font-size: 1.6rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button.large {
    padding: 15px 90px 15px 60px;
    font-size: 2.4rem;
  }
  .low_button:hover {
    background-color: #F0FCEC;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.link_list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ul.link_list li {
    width: auto;
  }
  ul.link_list li:first-child {
    margin: 0 20px 0 0;
  }
  ul.link_list_button {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 16px 0 0 0;
  }
  ul.link_list_button li {
    width: auto;
    margin: 0 20px 0 0;
  }
  ul.link_list_button li a {
    background: url("../img/icon_arrow_green.svg") no-repeat;
    background-position: right 20px center;
    background-size: 11px;
    background-color: #ffffff;
    width: auto;
    height: auto;
    margin: 0 0 30px 0;
    text-align: left;
    text-decoration: none;
    padding: 10px 60px 10px 40px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3DA179;
    border: #3DA179 2px solid;
    font-size: 1.6rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.link_list_button li a:hover {
    background-color: #F0FCEC;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　下層サブタイトル
----------------------------------------------------------- */
.sub_title_bg {
  margin: 2rem 0 0 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 252, 242)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgb(244, 252, 242) 0%, rgb(255, 255, 255) 100%);
}
.sub_title_bg .sub_title_box {
  width: 96%;
  margin: 0 auto 0 auto;
}
.sub_title_bg .sub_title_box figure {
  text-align: center;
  margin: 0 0 1rem 0;
}
.sub_title_bg .sub_title_box figure img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.sub_title_bg .sub_title_box .sub_title h2.low_sub {
  text-align: center;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  line-height: 160%;
  text-align: left;
  padding: 0 0 0 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  position: relative;
}
.sub_title_bg .sub_title_box .sub_title h2.low_sub span {
  font-size: 1.6rem;
}
.sub_title_bg .sub_title_box .sub_title h2.low_sub::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1.8rem;
  background: url(../img/icon_h2.svg) no-repeat;
  background-size: contain;
  margin: 0 0 0 0;
  position: absolute;
  top: calc(50% - 0.9rem);
  left: 0;
}
.sub_title_bg .sub_title_box .sub_title p {
  padding: 0 0 0 3.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .sub_title_bg {
    margin: 100px 0 0 0;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 252, 242)), to(rgb(255, 255, 255)));
    background: linear-gradient(to bottom, rgb(244, 252, 242) 0%, rgb(255, 255, 255) 100%);
  }
  .sub_title_bg .sub_title_box {
    width: 1200px;
    margin: 0 auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sub_title_bg .sub_title_box figure {
    width: 600px;
    text-align: center;
    margin: 0 0 0 0;
  }
  .sub_title_bg .sub_title_box figure img {
    width: 500px;
    height: auto;
    display: block;
    margin: 0;
  }
  .sub_title_bg .sub_title_box .sub_title {
    width: 600px;
    padding: 123px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sub_title_bg .sub_title_box .sub_title h2.low_sub {
    text-align: center;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 4rem;
    line-height: 160%;
    text-align: left;
    padding: 0 0 0 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 30px 0;
    position: relative;
  }
  .sub_title_bg .sub_title_box .sub_title h2.low_sub span {
    font-size: 3rem;
  }
  .sub_title_bg .sub_title_box .sub_title h2.low_sub::before {
    content: "";
    display: block;
    width: 62px;
    height: 41.333px;
    background: url(../img/icon_h2.svg) no-repeat;
    background-size: contain;
    margin: 0 0 0 0;
    position: absolute;
    top: calc(50% - 20.65px);
    left: 0;
  }
  .sub_title_bg .sub_title_box .sub_title p {
    padding: 0 0 0 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sub_title_bg .sub_title_box .sub_title.short_space {
    padding: 60px 0 0 0;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　院長紹介
----------------------------------------------------------- */
.img_doctor {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_doctor img {
  width: 70%;
  height: auto;
}

.doctor_name {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 300px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.machine_box {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box figure {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box figure figcaption {
  text-align: center;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}
.machine_box figure img {
  width: 100%;
  margin: 0 0 1rem 0;
}

.machine_box2 {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box2 section {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box2 section h3 {
  margin: 0 0 1rem 0;
}
.machine_box2 section img {
  width: 100%;
  margin: 0 0 1rem 0;
}

/*スライダー*/
.slider-pro {
  margin: 0 auto 2rem auto !important;
}
.slider-pro p.sp-layer {
  font-size: 2.4rem !important;
}

@media screen and (min-width: 768px), print {
  .machine_box {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .machine_box2 {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .machine_box2 section {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box2 section h3 {
    margin: 0 0 20px 0;
  }
  .machine_box2 section img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　流れ
----------------------------------------------------------- */
.flow_box {
  border: #8EB884 1px solid;
  background-color: #FBFFF9;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box .img_flow {
  display: block;
  width: 80%;
  margin: 0 auto 2rem auto;
}
.flow_box .img_flow img {
  width: 100%;
  height: auto;
}
.flow_box .flow_box_text .flow_box_title {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #8EB884;
  color: #ffffff;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #8EB884 1px solid;
    background-color: #FBFFF9;
    padding: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 36px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flow_box .img_flow {
    display: block;
    width: 330px;
    margin: 0 0 0 0;
  }
  .flow_box .img_flow img {
    width: 100%;
    height: auto;
  }
  .flow_box .flow_box_text {
    width: 720px;
  }
  .flow_box .flow_box_text .flow_box_title {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #8EB884;
    color: #ffffff;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.8rem;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
dl.access_info {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
}
dl.access_info dt {
  width: 25%;
  margin: 0 0 1rem 0;
}
dl.access_info dt span {
  background-color: #8EB884;
  color: #ffffff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.2rem;
  height: 8vw;
  letter-spacing: 0.1em;
}
dl.access_info dd {
  width: 70%;
  margin: 0 0 1rem 0;
  padding: 0.3rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

iframe.accessmap {
  width: 96%;
  height: 500px;
  display: block;
  margin: 0 auto;
}

.low_timetable_title {
  width: 96%;
  margin: 2rem auto 0.5rem auto;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  color: #D2A0AF;
}

@media screen and (min-width: 768px), print {
  dl.access_info {
    width: 550px;
    margin: 20px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.6rem;
    line-height: 160%;
  }
  dl.access_info dt {
    width: 25%;
    margin: 0 0 20px 0;
  }
  dl.access_info dt span {
    background-color: #8EB884;
    color: #ffffff;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    font-size: 1.6rem;
    border-radius: 0.2rem;
    height: 40px;
    letter-spacing: 0.1em;
  }
  dl.access_info dd {
    width: 70%;
    margin: 0 0 20px 0;
    padding: 6px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
  .low_timetable_title {
    margin: 40px 0 4px 0;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2rem;
    color: #D2A0AF;
  }
}
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.5rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #648E5A;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #464646;
  border-top: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
}
#mailformpro table tr th span {
  color: #ff0000;
  display: inline-block;
  padding: 0 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #8EB884 1px solid;
  border-left: #8EB884 1px solid;
  border-right: #8EB884 1px solid;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#mailformpro table tr td ol {
  list-style-type: none;
}
#mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
  font-size: 1.2rem;
  width: 90%;
  margin: 0 0 0.6rem 0;
}
#mailformpro table tr td select {
  font-size: 1.2rem;
  width: 90%;
}
#mailformpro table tr td select.time {
  width: 12%;
}
#mailformpro table tr td textarea {
  font-size: 1.2rem;
  width: 90%;
  min-height: 40vw;
}
#mailformpro table tr:last-child td {
  border-bottom: #8EB884 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 1.8rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #648E5A;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #ff0000;
    display: inline-block;
    padding: 0 0.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #8EB884 1px solid;
    border-left: #8EB884 1px solid;
    border-right: #8EB884 1px solid;
    padding: 1.5rem 3rem 1.5rem 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    vertical-align: middle;
    line-height: 140%;
  }
  #mailformpro table tr td ol {
    list-style-type: none;
  }
  #mailformpro table tr td ol li {
    margin: 0 0 5px 0;
  }
  #mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
    font-size: 1.6rem;
    width: 300px;
    margin: 0 1rem 0 0;
  }
  #mailformpro table tr td select {
    font-size: 1.6rem;
    width: 300px;
  }
  #mailformpro table tr td select.time {
    width: 60px;
  }
  #mailformpro table tr td textarea {
    font-size: 1.6rem;
    width: 600px;
    min-height: 300px;
  }
}
/*アニメーション用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　ファーストビュー
----------------------------------------------------------- */
.first_view_anime {
  -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
          animation: fvfadein 0.5s ease 1s 1 normal backwards;
}

.first_view_anime2 {
  -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
          animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
}

@-webkit-keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvfadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px), print {
  .first_view_anime {
    -webkit-animation: fvfadein 0.5s ease 1s 1 normal backwards;
            animation: fvfadein 0.5s ease 1s 1 normal backwards;
  }
  .first_view_anime2 {
    -webkit-animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
            animation: fvfadein 0.5s ease 1.5s 1 normal backwards;
  }
  @-webkit-keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fvfadein {
    from {
      opacity: 0;
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* -----------------------------------------------------------
　お知らせのアニメーション
----------------------------------------------------------- */
.greeting_anime1 {
  -webkit-animation: greeting_fadein 0.5s ease 2s 1 normal backwards;
          animation: greeting_fadein 0.5s ease 2s 1 normal backwards;
}

.greeting_anime2 {
  -webkit-animation: greeting_fadein 0.5s ease 2.5s 1 normal backwards;
          animation: greeting_fadein 0.5s ease 2.5s 1 normal backwards;
}

@-webkit-keyframes greeting_fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes greeting_fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 768px), print {
  .greeting_anime1 {
    -webkit-animation: none;
            animation: none;
  }
  .greeting_anime2 {
    -webkit-animation: none;
            animation: none;
  }
}
/* -----------------------------------------------------------
　アニメーション
----------------------------------------------------------- */
/*左から*/
.scroll_left {
  /*transform: translateX(-200px);*/
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.scroll_left.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*右から*/
.scroll_right {
  /*transform: translateX(200px);*/
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.scroll_right.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*下から*/
.scroll_up {
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
}

.scroll_up.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px), print {
  /*左から*/
  .scroll_left {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_left.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*右から*/
  .scroll_right {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
  .scroll_right.blockIn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*下から*/
  .scroll_up {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
  }
  .scroll_up.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  /*下からPCのみ*/
  .scroll_up_pc {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    opacity: 0;
  }
  .scroll_up_pc.blockIn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  /*左から*/
  .scroll_left {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
  .scroll_left.blockIn {
    -webkit-transform: none;
            transform: none;
  }
  /*右から*/
  .scroll_right {
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
  .scroll_right.blockIn {
    -webkit-transform: none;
            transform: none;
  }
  .greeting_anime_left {
    -webkit-animation: greeting_fadein_left 0.5s ease 2s 1 normal backwards;
            animation: greeting_fadein_left 0.5s ease 2s 1 normal backwards;
  }
  .greeting_anime_right {
    -webkit-animation: greeting_fadein_right 0.5s ease 2s 1 normal backwards;
            animation: greeting_fadein_right 0.5s ease 2s 1 normal backwards;
  }
  /*左から*/
  @-webkit-keyframes greeting_fadein_left {
    from {
      opacity: 0;
      -webkit-transform: translateX(-200px);
              transform: translateX(-200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes greeting_fadein_left {
    from {
      opacity: 0;
      -webkit-transform: translateX(-200px);
              transform: translateX(-200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  /*左から*/
  @-webkit-keyframes greeting_fadein_right {
    from {
      opacity: 0;
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes greeting_fadein_right {
    from {
      opacity: 0;
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.scroll_treatment_up li {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
.scroll_treatment_up li:nth-child(1) {
  -webkit-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.scroll_treatment_up li:nth-child(2) {
  -webkit-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
}
.scroll_treatment_up li:nth-child(3) {
  -webkit-transition: all 0.5s ease-in 0.3s;
  transition: all 0.5s ease-in 0.3s;
}
.scroll_treatment_up li:nth-child(4) {
  -webkit-transition: all 0.5s ease-in 0.4s;
  transition: all 0.5s ease-in 0.4s;
}
.scroll_treatment_up li:nth-child(5) {
  -webkit-transition: all 0.5s ease-in 0.5s;
  transition: all 0.5s ease-in 0.5s;
}
.scroll_treatment_up li:nth-child(6) {
  -webkit-transition: all 0.5s ease-in 0.6s;
  transition: all 0.5s ease-in 0.6s;
}
.scroll_treatment_up li:nth-child(7) {
  -webkit-transition: all 0.5s ease-in 0.7s;
  transition: all 0.5s ease-in 0.7s;
}
.scroll_treatment_up li:nth-child(8) {
  -webkit-transition: all 0.5s ease-in 0.8s;
  transition: all 0.5s ease-in 0.8s;
}
.scroll_treatment_up li:nth-child(9) {
  -webkit-transition: all 0.5s ease-in 0.9s;
  transition: all 0.5s ease-in 0.9s;
}
.scroll_treatment_up li:nth-child(10) {
  -webkit-transition: all 0.5s ease-in 1s;
  transition: all 0.5s ease-in 1s;
}

.scroll_treatment_up.blockIn li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* -----------------------------------------------------------
　診療内容 divタイプ
----------------------------------------------------------- */
.scroll_treatment_up2 .tc_up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
.scroll_treatment_up2 .tc_up.tcup1 {
  -webkit-transition: all 0.5s ease-in 0.1s;
  transition: all 0.5s ease-in 0.1s;
}
.scroll_treatment_up2 .tc_up.tcup2 {
  -webkit-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
}
.scroll_treatment_up2 .tc_up.tcup3 {
  -webkit-transition: all 0.5s ease-in 0.3s;
  transition: all 0.5s ease-in 0.3s;
}
.scroll_treatment_up2 .tc_up.tcup4 {
  -webkit-transition: all 0.5s ease-in 0.4s;
  transition: all 0.5s ease-in 0.4s;
}
.scroll_treatment_up2 .tc_up.tcup5 {
  -webkit-transition: all 0.5s ease-in 0.5s;
  transition: all 0.5s ease-in 0.5s;
}
.scroll_treatment_up2 .tc_up.tcup6 {
  -webkit-transition: all 0.5s ease-in 0.6s;
  transition: all 0.5s ease-in 0.6s;
}
.scroll_treatment_up2 .tc_up.tcup7 {
  -webkit-transition: all 0.5s ease-in 0.7s;
  transition: all 0.5s ease-in 0.7s;
}
.scroll_treatment_up2 .tc_up.tcup8 {
  -webkit-transition: all 0.5s ease-in 0.8s;
  transition: all 0.5s ease-in 0.8s;
}
.scroll_treatment_up2 .tc_up.tcup9 {
  -webkit-transition: all 0.5s ease-in 0.9s;
  transition: all 0.5s ease-in 0.9s;
}

.scroll_treatment_up2 .tc_up.blockIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #464646;
  background-color: #ffffff;
  padding: 0 0 16vw 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
  scroll-padding-top: 14vw;
}

@media screen and (min-width: 768px), print {
  html {
    font-size: 62.5%;
    overflow-y: scroll;
    font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #464646;
    background-color: #ffffff;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 60px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

section {
  height: auto;
  overflow: hidden;
  margin: 0;
}

.sentence {
  height: auto;
  overflow: hidden;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

@media screen and (min-width: 768px), print {
  body {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-width: 1280px;
    -webkit-text-size-adjust: 100%;
  }
  section {
    height: auto;
    overflow: hidden;
    margin: 0;
  }
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .pc_none_span {
    display: none;
  }
  .sp_none_span {
    display: inline;
  }
}
/* -----------------------------------------------------------
　枠
----------------------------------------------------------- */
.wrapper {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.wrapper_low {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0;
}

.main_low {
  width: 96%;
  height: auto;
  margin: 0 auto 2rem auto;
  padding: 0;
}

.main_low_long {
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  padding: 0;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .main {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
  }
  .main_low {
    width: 1200px;
    height: auto;
    margin: 66px auto 80px auto;
    padding: 0;
  }
  .main_low_long {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  background-color: #8EB884;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 12vw;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 14vw;
  margin: 0;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #8EB884;
  padding: 2vw 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*ハンバーガー*/
}
header.header .header_box .header_top .container {
  width: 15%;
}
header.header .header_box .header_top {
  /*ロゴ*/
}
header.header .header_box .header_top .head_logo {
  width: 70%;
  margin: 0 0 0 2%;
}
header.header .header_box .header_top .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_box .header_top .head_logo a img {
  width: 100%;
  height: auto;
}
header.header .header_box {
  /*電話番号*/
}
header.header .header_box .header_tel {
  display: none;
}

.side_tel {
  display: none;
}

.side_reserve_link {
  display: none;
}

.side_interviewsheet_link {
  display: none;
}

.side_reserve_text {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    background-color: #ffffff;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 999999999;
    width: 100%;
    height: 120px;
  }
  header.header .header_box {
    width: 100%;
    height: 120px;
    margin: 0;
    position: relative;
    /*ロゴとハンバーガー*/
  }
  header.header .header_box .header_top {
    width: 440px;
    height: 152px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: #8EB884;
    /*ハンバーガー*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top {
    /*ロゴ*/
  }
  header.header .header_box .header_top .head_logo {
    width: 398px;
    margin: 0 0 39px 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 398px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 398px;
    height: auto;
  }
  header.header .header_box {
    /*電話番号*/
  }
  header.header .header_box .header_tel {
    display: inline-block;
    position: absolute;
    top: 28px;
    right: 10px;
    z-index: 1;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.6rem;
    color: bace_color2;
    text-align: right;
    margin: 0;
  }
  .side_tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100px;
    height: 100px;
    text-decoration: none;
    color: #ffffff;
    background-color: #D2A0AF;
    border-left: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "notoserifjp_bold";
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    position: fixed;
    top: 119px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_tel img {
    width: 36.191px;
    height: 35px;
    margin: 0 0 7px 0;
  }
  .side_reserve_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100px;
    height: 100px;
    text-decoration: none;
    color: #ffffff;
    background-color: #8EB884;
    border-left: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    border-bottom: #ffffff 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "notoserifjp_bold";
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    position: fixed;
    top: 219px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_reserve_link i {
    font-size: 3.5rem;
    margin: -5px 0 8px 0;
  }
  .side_reserve_link:hover {
    background-color: #648E5A;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_reserve_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: fixed;
    width: 100px;
    height: 353px;
    background-color: #C9DFC3;
    color: #464646;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    top: 319px;
    right: 0;
    z-index: 9999999999;
  }
  .side_reserve_text span {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: pre;
    display: inline-block;
    text-orientation: upright;
  }
  .side_reserve_text span em {
    margin: -10px 0 0 0;
    font-style: normal;
  }
  .side_interviewsheet_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100px;
    height: 100px;
    text-decoration: none;
    color: #ffffff;
    background-color: #D2A0AF;
    border-left: #ffffff 1px solid;
    border-bottom: #ffffff 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "notoserifjp_bold";
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 120%;
    letter-spacing: 0.05em;
    position: fixed;
    top: 219px;
    right: 0;
    z-index: 9999999999;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_interviewsheet_link i {
    font-size: 3.5rem;
    margin: -5px 0 8px 0;
  }
  .side_interviewsheet_link:hover {
    background-color: #A47482;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 750px;
    height: 42px;
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
  }
  nav.main_nav_pc ul {
    width: auto;
    height: 42px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.main_nav_pc ul li {
    display: block;
    width: auto;
    height: 42px;
    margin: 0;
    padding: 0;
  }
  nav.main_nav_pc ul li.home {
    width: 72px;
  }
  nav.main_nav_pc ul li.doctor {
    width: 88px;
  }
  nav.main_nav_pc ul li.clinic {
    width: 126px;
  }
  nav.main_nav_pc ul li.treatment {
    width: 100px;
    overflow: visible;
  }
  nav.main_nav_pc ul li.treatment a::after {
    content: "\e809";
    font-family: "fontello";
    font-size: 1rem;
    margin: 1px 0 0 3px;
    display: inline-block;
  }
  nav.main_nav_pc ul li.treatment ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.open_treatment a::after {
    content: "\e809";
    font-family: "fontello";
    font-size: 1rem;
    margin: 0 0 0 3px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    display: inline-block;
  }
  nav.main_nav_pc ul li.first {
    width: 134px;
  }
  nav.main_nav_pc ul li.access {
    width: 162px;
  }
  nav.main_nav_pc ul li.blog {
    width: 68px;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 42px;
    text-decoration: none;
    text-align: center;
    color: #464646;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.05em;
    font-family: "notoserifjp_medium";
    font-size: 1.6rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li a:hover {
    color: #ffffff;
    background-color: #B6D2AF;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    all: initial;
    display: none;
    margin: 0 0 0 -1360px;
    padding: 30px 0 0 0;
    background-color: #F4FFF0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 1200px;
    width: 2000px;
    height: 440px;
    overflow: hidden;
    position: relative;
    left: 0;
    overflow: visible;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list {
    all: initial;
    width: 981px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul {
    all: initial;
    width: auto;
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li {
    all: initial;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li a {
    all: initial;
    font-family: "notoserifjp_bold";
    font-size: 1.6rem;
    font-weight: bold;
    color: #464646;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: block;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li a:hover {
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li ul {
    all: initial;
    width: 100%;
    margin: 4px 0 24px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li ul li {
    all: initial;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
    margin: 0 0 6px 0;
    line-height: 115%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li ul li a {
    all: initial;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li ul li a:hover {
    all: initial;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
    font-size: 1.4rem;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li ul.mb0 {
    margin: 14px 0 0 0;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul li.treatment {
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul.list1 {
    all: initial;
    width: 212px;
    border-right: #707070 1px solid;
    padding: 0 0 0 0;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul.list2 {
    width: 264px;
    border-right: #707070 1px solid;
    padding: 0 0 0 62px;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul.list3 {
    width: 246px;
    border-right: #707070 1px solid;
    padding: 0 0 0 60px;
  }
  nav.main_nav_pc ul li .sub_nav_box .sub_nav_box_list ul.list4 {
    width: 258px;
    padding: 0 0 0 60px;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    /*
    width: 280px; 
    margin: 0 0 0 -78px;
    ul{
      all: initial;
      width: 280px; 
      height: auto;
      margin: 0 0 0 0;
      padding: 32px 0 16px 30px;  
      position: relative;
      z-index: 9999;
      background-color: $color_white;
      display: -webkit-flex !important;
      display: flex !important;
      -webkit-justify-content: center;
      justify-content: center;         
      -webkit-flex-direction:column;
      flex-direction:column;          
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;      
      background-color: $color2;
      border: $color1 2px solid;
      box-sizing: border-box;
      li{
        all: initial;
        display:block;
        width: auto;
        height:auto;
        margin: 0 0 8px 0;
        padding:0;
        a{
          all: initial;
          color: $bace_color;
          font-family: 'notoserifjp_medium';
          font-weight: normal;
          font-size: 1.6rem;            
          text-decoration: none;
          line-height: 100%;
          transition: $hover_speed;      
          &::before{
            content:"\00e804";
            font-family: "fontello";
            font-size: 1.3rem;
            margin: 0 10px 0 0;
            color: $color2;                
          }    
          &:hover{
            cursor: pointer;
            cursor: hand;
            transition: $hover_speed;
            color: $color3;
            &::before{
              color: $color3;
            }
          }

        }
      }
    }
    */
  }
  .nav_add {
    position: fixed !important;
    top: 0 !important;
    z-index: 9999999999 !important;
    width: 100% !important;
    height: 60px !important;
    margin: 0 auto !important;
    background-color: #8EB884 !important;
  }
  .nav_add ul {
    width: 750px !important;
    margin: 10px auto 0 auto !important;
  }
  .nav_add ul li a {
    height: 60px !important;
    margin: -10px 0 0 0 !important;
  }
  .nav_add ul li {
    /*
    .sub_nav_box{
      width: 280px !important; 
      margin: -10px 0 0 -88px !important;
      ul{
        width: 280px !important; 
        li{
          a{
            height: auto;
            margin: 0 !important;
          }            
        }
      }
    }
    */
  }
  .nav_add ul li .sub_nav_box {
    all: initial;
    display: none;
    margin: 0 0 0 -782px !important;
    padding: 30px 0 0 0;
    background-color: #F4FFF0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 2000px;
    height: 440px;
    overflow: hidden;
    position: relative;
    left: 0;
    overflow: visible;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list {
    all: initial;
    width: 981px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul {
    all: initial;
    width: auto !important;
    list-style-type: none;
    margin: 0 0 0 0 !important;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li {
    all: initial;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li a {
    all: initial;
    font-family: "notoserifjp_bold";
    font-size: 1.6rem;
    font-weight: bold;
    color: #464646;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: block;
    height: auto !important;
    margin: 0 !important;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li a:hover {
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li ul {
    all: initial;
    width: 100% !important;
    margin: 4px 0 24px 0 !important;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li ul li {
    all: initial;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
    margin: 0 0 6px 0;
    line-height: 115%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li ul li a {
    all: initial;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
    height: auto !important;
    margin: 0 !important;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li ul li a:hover {
    all: initial;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
    font-size: 1.4rem;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li ul.mb0 {
    margin: 14px 0 0 0;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul li.treatment {
    display: none;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul.list1 {
    width: 212px !important;
    border-right: #707070 1px solid;
    padding: 0 0 0 0;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul.list2 {
    width: 264px !important;
    border-right: #707070 1px solid;
    padding: 0 0 0 62px;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul.list3 {
    width: 246px !important;
    border-right: #707070 1px solid;
    padding: 0 0 0 60px;
  }
  .nav_add ul li .sub_nav_box .sub_nav_box_list ul.list4 {
    width: 258px !important;
    padding: 0 0 0 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  nav.main_nav_pc ul li .sub_nav_box {
    display: none;
    margin: 0 0 0 -1115px;
    padding: 50px 0 0 0;
    height: 470px;
  }
  .nav_add ul li .sub_nav_box {
    margin: 0 0 0 -1115px;
    padding: 30px 0 0 0;
    height: 470px;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 70vw;
  margin: 14vw 0 0 0;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 70vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_05 {
  background: url("../img/key_visual_05.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 65vw;
}
.key_visual .key_contents .key_text {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  font-family: "notoserifjp_medium";
  font-size: 1.4rem;
  text-align: center;
  color: #ffffff;
  margin: 0 auto 0 auto;
  text-shadow: 0 0 2px #D2A0AF, 0 0 2px #D2A0AF, 0 0 2px #D2A0AF;
}
.key_visual .key_contents .key_open {
  /*
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  border: $color_white 1px solid;
  color: $color_white;
  font-family: 'notoserifjp_bold';
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
  box-sizing: border-box;    
  text-shadow: 0 0 2px $color7, 0 0 2px $color7, 0 0 2px $color7;
  br{
    display: none;
  }
  span{
    font-size: 1.2rem;
  }
  */
  display: none;
}
.key_visual .key_contents .key_event {
  /*
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  border: $color_white 1px solid;
  color: $color_white;
  font-family: 'notoserifjp_bold';
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
  box-sizing: border-box;     
  text-shadow: 0 0 2px $color7, 0 0 2px $color7, 0 0 2px $color7;
  br{
    display: none;
  }
  span{
    font-size: 1.2rem;
  }   
  */
  display: none;
}

.key_contents_sp {
  margin: 1rem 0 0 0;
}
.key_contents_sp .key_open {
  margin: 0 auto 1rem auto;
  width: 90%;
  border: #464646 1px solid;
  color: #464646;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_contents_sp .key_open br {
  display: none;
}
.key_contents_sp .key_open span {
  font-size: 1.2rem;
}
.key_contents_sp .key_event {
  margin: 0 auto;
  width: 90%;
  border: #464646 1px solid;
  color: #464646;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 100%;
  text-align: center;
  display: block;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.key_contents_sp .key_event br {
  display: none;
}
.key_contents_sp .key_event span {
  font-size: 1.2rem;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  margin: 14vw 0 0 0;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.key_visual_low h1 {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 2.2rem;
  text-align: center;
  color: #ffffff;
  line-height: 160%;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 780px;
    margin: 0;
    background-color: beige;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 780px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 780px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_02 {
    background: url("../img/key_visual_02.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_03 {
    background: url("../img/key_visual_03.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_04 {
    background: url("../img/key_visual_04.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_05 {
    background: url("../img/key_visual_05.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 1200px;
    height: 780px;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual .key_contents .key_text {
    position: absolute;
    bottom: auto;
    top: 438px;
    left: 0;
    right: 0;
    font-family: "notoserifjp_medium";
    font-size: 3.6rem;
    text-align: center;
    color: #ffffff;
    margin: 0 auto 0 auto;
    line-height: 158%;
    text-shadow: 0 0 2px #D2A0AF, 0 0 2px #D2A0AF, 0 0 2px #D2A0AF;
  }
  .key_visual .key_contents .key_open {
    position: absolute;
    bottom: 50px;
    left: auto;
    /*right: 233px;*/
    right: 0;
    margin: 0;
    width: 150px;
    height: 150px;
    border: rgba(255, 255, 255, 0.5) 2px solid;
    color: #ffffff;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 140%;
    letter-spacing: 0.2em;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-shadow: 0 0 2px #D2A0AF, 0 0 2px #D2A0AF, 0 0 2px #D2A0AF;
  }
  .key_visual .key_contents .key_open br {
    display: block;
  }
  .key_visual .key_contents .key_open span {
    font-size: 1.4rem;
    display: block;
    margin: 5px 0 5px 0;
    line-height: 100%;
  }
  .key_visual .key_contents .key_event {
    position: absolute;
    bottom: 50px;
    left: auto;
    right: 0;
    margin: 0;
    width: 228px;
    height: 150px;
    border: rgba(255, 255, 255, 0.5) 2px solid;
    color: #ffffff;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 140%;
    letter-spacing: 0.2em;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-shadow: 0 0 2px #D2A0AF, 0 0 2px #D2A0AF, 0 0 2px #D2A0AF;
  }
  .key_visual .key_contents .key_event br {
    display: block;
  }
  .key_visual .key_contents .key_event span {
    font-size: 1.4rem;
    display: block;
    margin: 5px 0 5px 0;
    line-height: 100%;
  }
  .key_contents_sp {
    display: none;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 400px;
    margin: 0 0 0 0;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual_low h1 {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 3.6rem;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.1em;
  }
}
/* -----------------------------------------------------------
　求人バナー
----------------------------------------------------------- */
.bana_link {
  width: 96%;
  margin: 2rem auto 0 auto;
}
.bana_link ul {
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bana_link ul li {
  width: 100%;
  margin: 1rem 0 0 0;
}
.bana_link ul li a {
  text-decoration: none;
  display: block;
}
.bana_link ul li a img {
  width: 100%;
  height: auto;
}

.important_notice {
  width: 96%;
  margin: 2rem auto 0 auto;
  border: #8EB884 3px solid;
}
.important_notice .title {
  background-color: #8EB884;
  color: #ffffff;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
.important_notice .text {
  background-color: #C9DFC3;
  color: #000000;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  text-align: justify;
  margin: 0;
  padding: 0.5rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .bana_link {
    width: 1200px;
    margin: 40px auto 0 auto;
  }
  .bana_link ul {
    width: 100%;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bana_link ul li {
    width: 550px;
    margin: 0;
  }
  .bana_link ul li a {
    text-decoration: none;
    display: block;
  }
  .bana_link ul li a img {
    width: 550px;
    height: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .bana_link ul li a:hover img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
  .bana_link ul li.nolink {
    pointer-events: none;
  }
  .important_notice {
    width: 1200px;
    height: auto;
    margin: 50px auto 0 auto;
    border: #8EB884 3px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .important_notice .title {
    width: 300px;
    background-color: #8EB884;
    color: #ffffff;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.8rem;
    text-align: center;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .important_notice .text {
    width: 900px;
    background-color: #C9DFC3;
    color: #000000;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: justify;
    margin: 0;
    padding: 15px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.event_btn {
  background: url("../img/icon_arrow_green.svg") no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  background-color: #ffffff;
  width: 96%;
  height: auto;
  margin: 2rem auto 2rem auto;
  text-align: center;
  text-decoration: none;
  padding: 1rem 3rem 1rem 2.5rem;
  line-height: 120%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3DA179;
  border: #3DA179 2px solid;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .event_btn {
    background: url("../img/icon_arrow_green.svg") no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    background-color: #ffffff;
    width: 900px;
    height: auto;
    margin: 60px auto 30px auto;
    text-align: center;
    text-decoration: none;
    padding: 10px 60px 10px 40px;
    line-height: 160%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3DA179;
    border: #3DA179 2px solid;
    font-size: 3rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .event_btn:hover {
    background-color: #F0FCEC;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　インフルエンザワクチンボタン
----------------------------------------------------------- */
.influenza_button {
  background: url("../img/icon_arrow_green.svg") no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  background-color: #ffffff;
  width: 96%;
  height: auto;
  margin: 2rem auto 2rem auto;
  text-align: center;
  text-decoration: none;
  padding: 1rem 3rem 1rem 2.5rem;
  line-height: 120%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3DA179;
  border: #3DA179 2px solid;
  font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}

.influenza_text {
  font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-weight: normal;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .influenza_button {
    background: url("../img/icon_arrow_green.svg") no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    background-color: #ffffff;
    width: 900px;
    height: auto;
    margin: 60px auto 30px auto;
    text-align: center;
    text-decoration: none;
    padding: 10px 60px 10px 40px;
    line-height: 160%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3DA179;
    border: #3DA179 2px solid;
    font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .influenza_button:hover {
    background-color: #F0FCEC;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .influenza_text {
    font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.inful_pdf {
  width: 96%;
  margin: 3rem auto 0 auto;
}
.inful_pdf figure figcaption {
  background-color: #ffffff;
  width: 96%;
  height: auto;
  margin: 0 auto 0 auto;
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  line-height: 120%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3DA179;
  border: #3DA179 2px solid;
  font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
.inful_pdf figure img {
  width: 96%;
  height: auto;
  display: block;
  margin: 1rem auto 0 auto;
}
.inful_pdf p {
  width: 96%;
  margin: 1rem auto 2rem auto;
  font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  text-align: center;
}
.inful_pdf p.text_bold {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .inful_pdf {
    width: 1200px;
    margin: 40px auto 0 auto;
  }
  .inful_pdf figure figcaption {
    background-color: #ffffff;
    width: 900px;
    height: auto;
    margin: 60px auto 30px auto;
    text-align: center;
    text-decoration: none;
    padding: 10px 40px 10px 40px;
    line-height: 160%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3DA179;
    border: #3DA179 2px solid;
    font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 3rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .inful_pdf figure img {
    width: 50%;
    height: auto;
    display: block;
    margin: 18px auto 0 auto;
  }
  .inful_pdf p {
    width: 900px;
    margin: 18px auto 36px auto;
    font-family: "notoserifjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
/*
.features_frame{
  width: 100%;
  margin:0 0 0 0;  
  background: url("../img/index_text_feature.svg") no-repeat;
  background-size: 80%;
  background-position: right top;
  padding: 6rem 0 0 0;
  box-sizing: border-box;
  ul.feature_list{
    list-style-type: none;
    width: 90%;
    margin:2rem auto 0 auto;
    li{
      width: 100%;
      height: 20vw;
      margin: 0 0 2rem 0;
      font-size: 1.5rem;
      line-height: 140%;
      padding: 0 0 0 38%;
      box-sizing: border-box;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-align-items: center;
      align-items: center;      
      -webkit-flex-direction:row;
      flex-direction:row;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;      

      &.feature_list_01{
        background: url("../img/index_feature_01.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_02{
        background: url("../img/index_feature_02.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_03{
        background: url("../img/index_feature_03.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_04{
        background: url("../img/index_feature_04.svg") no-repeat;
        background-size: contain;        
      }      

      &.feature_list_05{
        background: url("../img/index_feature_05.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_06{
        background: url("../img/index_feature_06.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_07{
        background: url("../img/index_feature_07.svg") no-repeat;
        background-size: contain;        
      }

      &.feature_list_08{
        background: url("../img/index_feature_08.svg") no-repeat;
        background-size: contain;        
      }  

      &.feature_list_09{
        background: url("../img/index_feature_09.svg") no-repeat;
        background-size: contain;        
      }         

    }
  }  
}
*/
.features_frame {
  width: 100%;
  margin: 0 0 0 0;
  background: url("../img/index_text_feature.svg") no-repeat;
  background-size: 70%;
  background-position: right top;
  padding: 2.2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame ul.feature_list {
  list-style-type: none;
  width: 98%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.features_frame ul.feature_list li {
  width: 49.5%;
  height: 11vw;
  margin: 0 0 1rem 0;
  font-size: 0.97rem;
  line-height: 140%;
  padding: 0 0 0 16.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.features_frame ul.feature_list li.feature_list_01 {
  background: url("../img/index_feature_01.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_02 {
  background: url("../img/index_feature_02.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_03 {
  background: url("../img/index_feature_03.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_04 {
  background: url("../img/index_feature_04.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_05 {
  background: url("../img/index_feature_05.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_06 {
  background: url("../img/index_feature_06.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_07 {
  background: url("../img/index_feature_07.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_08 {
  background: url("../img/index_feature_08.svg") no-repeat;
  background-size: contain;
}
.features_frame ul.feature_list li.feature_list_09 {
  background: url("../img/index_feature_09.svg") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px), print {
  .features_frame {
    width: 100%;
    margin: 0 0 0 0;
    background: url("../img/index_text_feature.svg") no-repeat;
    background-size: 910px;
    background-position: right top -21px;
    padding: 120px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame ul.feature_list {
    list-style-type: none;
    width: 1200px;
    margin: 49px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features_frame ul.feature_list li {
    width: 390px;
    height: 90px;
    margin: 0 15px 30px 0;
    font-size: 2.2rem;
    line-height: 115%;
    padding: 0 0 0 140px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .features_frame ul.feature_list li.feature_list_01 {
    background: url("../img/index_feature_01.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_02 {
    background: url("../img/index_feature_02.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_03 {
    background: url("../img/index_feature_03.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_04 {
    background: url("../img/index_feature_04.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_05 {
    background: url("../img/index_feature_05.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_06 {
    background: url("../img/index_feature_06.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_07 {
    background: url("../img/index_feature_07.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_08 {
    background: url("../img/index_feature_08.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li.feature_list_09 {
    background: url("../img/index_feature_09.svg") no-repeat;
    background-size: contain;
  }
  .features_frame ul.feature_list li:nth-child(3n) {
    margin: 0 0 30px 0;
  }
}
/* -----------------------------------------------------------
　お知らせfontello
----------------------------------------------------------- */
.notice_frame_bg {
  width: 100%;
  margin: 2rem 0 0 0;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_news.svg") no-repeat;
  background-size: 42%;
  background-position: right top -0.5rem;
  background-color: #F9FCF5;
}
.notice_frame_bg .notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame_bg .notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
.notice_frame_bg .notice_frame .notice_box dl dt {
  color: #8EB884;
  margin: 1rem 0 0.4rem 0;
  padding: 0 0 0 0;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 130%;
}
.notice_frame_bg .notice_frame .notice_box dl dd {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  color: #464646;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 130%;
  border-bottom: #707070 1px solid;
}
.notice_frame_bg .notice_frame .notice_box dl dd p {
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}
.notice_frame_bg .notice_frame .notice_box dl dd p a {
  color: #648E5A;
}

@media screen and (min-width: 768px), print {
  .notice_frame_bg {
    width: 100%;
    margin: 90px 0 0 0;
    padding: 110px 0 90px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_news.svg") no-repeat;
    background-size: 588px;
    background-position: right top -22px;
    background-color: #F9FCF5;
  }
  .notice_frame_bg .notice_frame {
    width: 1200px;
    margin: 0 auto 0 auto;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .notice_frame_bg .notice_frame h2.top_title {
    width: 300px;
    margin: 10px 0 0 -38px;
  }
  .notice_frame_bg .notice_frame .notice_box {
    width: 900px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_bg .notice_frame .notice_box dl {
    height: auto;
    margin: 0 0 0 0;
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt {
    color: #8EB884;
    margin: 20px 0 0 0;
    padding: 0 0 0 0;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.1em;
    line-height: 160%;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:first-child {
    margin: 0 0 0 0;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd {
    margin: 0 0 0 0;
    padding: 0 0 8px 0;
    color: #464646;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 160%;
    border-bottom: #707070 1px solid;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    line-height: 150%;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p a {
    color: #648E5A;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 1.8rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_treatment.svg") no-repeat;
  background-size: 80%;
  background-position: right top -0.5rem;
}
.treatment_frame .treatment_box {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treatment_frame .treatment_box .treatment_content {
  border: #62CFA3 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49%;
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title {
  width: 100%;
  height: 19vw;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0 0 0 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.internal_content {
  background: url("../img/index_treatment_01.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.gastro_content {
  background: url("../img/index_treatment_02.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.nephrology_content {
  background: url("../img/index_treatment_03.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.lifestyle_related_content {
  background: url("../img/index_treatment_04.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.allergy_content {
  background: url("../img/index_treatment_05.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.visit_content {
  background: url("../img/index_treatment_06.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.vaccination_content {
  background: url("../img/index_treatment_07.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.kanpo_content {
  background: url("../img/index_treatment_08.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content .treatment_sub_title.private_content {
  background: url("../img/index_treatment_09.jpg") no-repeat;
  background-size: contain;
}
.treatment_frame .treatment_box .treatment_content ul {
  list-style-type: none;
  width: 94%;
  margin: 1rem auto 0 auto;
}
.treatment_frame .treatment_box .treatment_content ul li {
  width: 100%;
  margin: 0 0 0.8rem 0;
}
.treatment_frame .treatment_box .treatment_content ul li a {
  text-decoration: none;
  border: #3DA179 1px solid;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1rem;
  color: #3DA179;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: url("../img/icon_arrow_green.svg") no-repeat;
  background-position: right 0.2rem center;
  background-size: 3%;
  background-color: #ffffff;
  white-space: nowrap;
}
.treatment_frame .treatment_box .treatment_content ul li:last-child {
  margin: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    margin: 4px 0 0 0;
    padding: 117px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_treatment.svg") no-repeat;
    background-size: 1245px;
    background-position: right top -25px;
  }
  .treatment_frame .treatment_box {
    width: 1200px;
    margin: 49px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .treatment_frame .treatment_box .treatment_content {
    border: #62CFA3 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 380px;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title {
    width: 100%;
    height: 151px;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.6rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0 0 0 18px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.internal_content {
    background: url("../img/index_treatment_01.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.gastro_content {
    background: url("../img/index_treatment_02.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.nephrology_content {
    background: url("../img/index_treatment_03.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.lifestyle_related_content {
    background: url("../img/index_treatment_04.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.allergy_content {
    background: url("../img/index_treatment_05.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.visit_content {
    background: url("../img/index_treatment_06.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.vaccination_content {
    background: url("../img/index_treatment_07.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.kanpo_content {
    background: url("../img/index_treatment_08.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content .treatment_sub_title.private_content {
    background: url("../img/index_treatment_09.jpg") no-repeat;
    background-size: contain;
  }
  .treatment_frame .treatment_box .treatment_content ul {
    list-style-type: none;
    width: 280px;
    margin: 20px auto 0 auto;
  }
  .treatment_frame .treatment_box .treatment_content ul li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .treatment_frame .treatment_box .treatment_content ul li a {
    text-decoration: none;
    border: #3DA179 1px solid;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    color: #3DA179;
    width: 100%;
    height: 40px;
    padding: 0 0 0 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: url("../img/icon_arrow_green.svg") no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_box .treatment_content ul li a:hover {
    background: url("../img/icon_arrow_white.svg") no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    background-color: #3DA179;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_frame .treatment_box .treatment_content ul li:last-child {
    margin: 0 0 0 0;
  }
}
/* -----------------------------------------------------------
内視鏡をご検討の方へ
----------------------------------------------------------- */
.endoscope_frame {
  width: 100%;
  margin: 0 0 0 0;
  padding: 1.2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_endoscope.svg") no-repeat;
  background-size: 70%;
  background-position: right top -0.5rem;
}
.endoscope_frame .endoscope_text {
  width: 90%;
  margin: 1rem auto 0 auto;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #8EB884;
  text-align: center;
}
.endoscope_frame .endoscope_box {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.endoscope_frame .endoscope_box .endoscope_box_content {
  /*width: 94%;*/
  width: 48%;
  background-color: aqua;
  /*height: 85vw;*/
  height: 78vw;
  margin: 0 0 2rem 0;
  overflow: visible;
  padding: 1rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.endoscope_frame .endoscope_box .endoscope_box_content h3.endoscope_title {
  width: 70%;
  height: 14vw;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  /*font-size: 1.8rem;*/
  font-size: 1.2rem;
  color: #ffffff;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1rem auto 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
.endoscope_frame .endoscope_box .endoscope_box_content p {
  width: 92%;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1rem;
  color: #464646;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1rem auto 2rem auto;
  text-align: justify;
}
.endoscope_frame .endoscope_box .endoscope_box_content ul {
  list-style-type: none;
  width: 92%;
  margin: 0 auto;
}
.endoscope_frame .endoscope_box .endoscope_box_content ul li {
  margin: 0 0 1rem 0;
}
.endoscope_frame .endoscope_box .endoscope_box_content ul li a {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 0.95rem;
  color: #464646;
  text-decoration: none;
}
.endoscope_frame .endoscope_box .endoscope_box_content ul li a::after {
  content: "";
  display: inline-block;
  width: 1.7rem;
  height: 1.1rem;
  background: url("../img/icon_arrow_01.svg") no-repeat;
  background-size: contain;
  margin: 0 0 0 0.3rem;
}
.endoscope_frame .endoscope_box .endoscope_box_content.ebc_endoscopy {
  background: url("../img/index_endoscope_01.jpg") no-repeat;
  background-size: cover;
}
.endoscope_frame .endoscope_box .endoscope_box_content.ebc_endoscopy h3.endoscope_title {
  background-color: #3DA179;
}
.endoscope_frame .endoscope_box .endoscope_box_content.ebc_colonoscopy {
  background: url("../img/index_endoscope_02.jpg") no-repeat;
  background-size: cover;
}
.endoscope_frame .endoscope_box .endoscope_box_content.ebc_colonoscopy h3.endoscope_title {
  background-color: #D9A4B8;
}

@media screen and (min-width: 768px), print {
  .endoscope_frame {
    width: 100%;
    margin: 2px 0 0 0;
    padding: 85px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_endoscope.svg") no-repeat;
    background-size: 1282px;
    background-position: right top -56px;
  }
  .endoscope_frame .endoscope_text {
    width: 100%;
    margin: 43px auto 0 auto;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    color: #8EB884;
    text-align: center;
  }
  .endoscope_frame .endoscope_box {
    width: 1200px;
    margin: 48px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content {
    width: 568px;
    height: 385px;
    margin: 0 0 0 0;
    overflow: visible;
    padding: 40px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content h3.endoscope_title {
    width: 342px;
    height: 83px;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 3.2rem;
    color: #ffffff;
    padding: 0 0 0 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 44px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: left;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content p {
    width: 500px;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    /*font-size: 1.6rem;*/
    font-size: 1.8rem;
    color: #464646;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 50px 44px;
    line-height: 195%;
    text-align: justify;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content ul {
    list-style-type: none;
    width: 500px;
    margin: 0 0 0 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content ul li {
    margin: 0 40px 0 0;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content ul li a {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2rem;
    color: #464646;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content ul li a::after {
    content: "";
    display: inline-block;
    width: 33px;
    height: 22px;
    background: url("../img/icon_arrow_01.svg") no-repeat;
    background-size: contain;
    margin: 0 0 -3px 10px;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content ul li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content.ebc_endoscopy {
    background: url("../img/index_endoscope_01.jpg") no-repeat;
    background-size: 550px;
    background-position: right top;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content.ebc_endoscopy h3.endoscope_title {
    background-color: #3DA179;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content.ebc_colonoscopy {
    background: url("../img/index_endoscope_02.jpg") no-repeat;
    background-size: 550px;
    background-position: right top;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content.ebc_colonoscopy h3.endoscope_title {
    background-color: #D9A4B8;
  }
  .endoscope_frame .endoscope_box .endoscope_box_content.ebc_colonoscopy ul li {
    margin: 0 20px 0 0;
  }
}
/* -----------------------------------------------------------
2名の内科専門医による内科診療
----------------------------------------------------------- */
.twodoctors_frame {
  width: 100%;
  margin: 0 0 0 0;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_twodoctors.svg") no-repeat;
  background-size: 70%;
  background-position: right top -0.5rem;
}
.twodoctors_frame .twodoctors_text {
  width: 90%;
  margin: 2rem auto 0 auto;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #8EB884;
  text-align: center;
}
.twodoctors_frame .profile_box_bg {
  width: 96%;
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.twodoctors_frame .profile_box_bg .profile_box {
  margin: 0 0 2rem 0;
  position: relative;
  width: 49%;
  height: 72vw;
}
.twodoctors_frame .profile_box_bg .profile_box .first {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 0.9rem;
  color: #ffffff;
  width: 50%;
  padding: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.twodoctors_frame .profile_box_bg .profile_box .second {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 0.9rem;
  color: #ffffff;
  width: 50%;
  padding: 0.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.twodoctors_frame .profile_box_bg .profile_box .profile_img {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 90%;
}
.twodoctors_frame .profile_box_bg .profile_box .profile_img img {
  width: 100%;
  height: auto;
}
.twodoctors_frame .profile_box_bg .profile_box .profile_img .name {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.6rem;
  text-align: center;
  color: #648E5A;
  letter-spacing: 0.2em;
  margin: 1rem 0 0 0;
}
.twodoctors_frame .profile_box_bg .profile_box .profile_img a {
  text-decoration: none;
  font-size: 1.2rem;
  width: 70%;
  height: 8vw;
  margin: 1rem auto 0 auto;
  color: #ffffff;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.twodoctors_frame .profile_box_bg .profile_box .profile_img a::after {
  font-family: "fontello";
  content: "\e80a";
  font-size: 0.8rem;
  margin: 0 0 0 0.5rem;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_green .first {
  position: absolute;
  z-index: 2;
  background-color: #3DA179;
  margin: 0;
  top: 32vw;
  right: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_green .second {
  position: absolute;
  z-index: 2;
  background-color: #3DA179;
  margin: 0;
  top: 39vw;
  right: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_green .profile_img {
  left: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_green .profile_img a {
  background-color: #3DA179;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_pink {
  margin: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_pink .first {
  position: absolute;
  z-index: 2;
  background-color: #D9A4B8;
  top: 32vw;
  left: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_pink .second {
  position: absolute;
  z-index: 2;
  background-color: #D9A4B8;
  top: 39vw;
  left: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_pink .profile_img {
  right: 0;
}
.twodoctors_frame .profile_box_bg .profile_box.pb_pink .profile_img a {
  background-color: #D9A4B8;
}

@media screen and (min-width: 768px), print {
  .twodoctors_frame {
    width: 100%;
    margin: 2px 0 0 0;
    padding: 117px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_twodoctors.svg") no-repeat;
    background-size: 930px;
    background-position: right top -26px;
  }
  .twodoctors_frame .twodoctors_text {
    width: 100%;
    margin: 43px auto 0 auto;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    color: #8EB884;
    text-align: center;
  }
  .twodoctors_frame .profile_box_bg {
    width: 1200px;
    margin: 70px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .twodoctors_frame .profile_box_bg .profile_box {
    margin: 0 0 0 0;
    position: relative;
    width: 580px;
    height: 628px;
  }
  .twodoctors_frame .profile_box_bg .profile_box .first {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #ffffff;
    width: 191px;
    height: 65px;
    padding: 0 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .twodoctors_frame .profile_box_bg .profile_box .second {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #ffffff;
    width: 191px;
    height: 65px;
    padding: 0 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .twodoctors_frame .profile_box_bg .profile_box .profile_img {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 450px;
  }
  .twodoctors_frame .profile_box_bg .profile_box .profile_img img {
    width: 100%;
    height: auto;
  }
  .twodoctors_frame .profile_box_bg .profile_box .profile_img .name {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    text-align: center;
    color: #648E5A;
    letter-spacing: 0.2em;
    margin: 18px 0 0 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box .profile_img a {
    text-decoration: none;
    font-size: 2rem;
    width: 150px;
    height: 35px;
    margin: 22px auto 0 auto;
    color: #ffffff;
    line-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .twodoctors_frame .profile_box_bg .profile_box .profile_img a::after {
    font-family: "fontello";
    content: "\e80a";
    font-size: 1.2rem;
    margin: 0 0 -4px 8px;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_green .first {
    position: absolute;
    z-index: 2;
    background-color: #3DA179;
    margin: 0;
    top: 22px;
    right: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_green .second {
    position: absolute;
    z-index: 2;
    background-color: #3DA179;
    margin: 0;
    top: 98px;
    right: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_green .profile_img {
    left: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_green .profile_img a {
    background-color: #3DA179;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_green .profile_img a:hover {
    background-color: #648E5A;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink {
    margin: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink .first {
    position: absolute;
    z-index: 2;
    background-color: #D9A4B8;
    top: 22px;
    left: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink .second {
    position: absolute;
    z-index: 2;
    background-color: #D9A4B8;
    top: 98px;
    left: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink .profile_img {
    right: 0;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink .profile_img a {
    background-color: #D9A4B8;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .twodoctors_frame .profile_box_bg .profile_box.pb_pink .profile_img a:hover {
    background-color: #A47482;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　診療内容2
----------------------------------------------------------- */
.particular_frame {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 1rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_particular.svg") no-repeat;
  background-size: 70%;
  background-position: right top -0.5rem;
}
.particular_frame .particular_box_bg {
  width: 100%;
}
.particular_frame .particular_box_bg .particular_box {
  width: 96%;
  margin: 3rem auto 0 auto;
}
.particular_frame .particular_box_bg .particular_box figure {
  width: 100%;
  margin: 0 0 4rem 0;
  position: relative;
}
.particular_frame .particular_box_bg .particular_box figure img {
  width: 95%;
  height: auto;
  display: block;
}
.particular_frame .particular_box_bg .particular_box figure figcaption {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 4rem;
  text-shadow: 0 0 3px #ffffff;
}
.particular_frame .particular_box_bg .particular_box .particular_box_text {
  width: 100%;
  margin: -5rem 0 0 0;
  padding: 4rem 1rem 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.particular_frame .particular_box_bg .particular_box .particular_box_text h3.particular_title {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 120%;
}
.particular_frame .particular_box_bg .particular_box .particular_box_text hr {
  border: none;
  margin: 2rem 0;
}
.particular_frame .particular_box_bg .particular_box .particular_box_text p {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 160%;
  margin: 0;
}
.particular_frame .particular_box_bg .particular_box.pb_pink figure {
  position: relative;
}
.particular_frame .particular_box_bg .particular_box.pb_pink figure img {
  margin: 0 0 0 5%;
  -webkit-box-shadow: -1.4rem 1.4rem 0 0 #E5BBC8;
          box-shadow: -1.4rem 1.4rem 0 0 #E5BBC8;
}
.particular_frame .particular_box_bg .particular_box.pb_pink figure figcaption {
  position: absolute;
  top: 5vw;
  right: 0;
  color: #D18CA1;
}
.particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 251, 252)), to(rgb(251, 241, 243)));
  background: linear-gradient(to bottom, rgb(255, 251, 252) 0%, rgb(251, 241, 243) 100%);
}
.particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text h3.particular_title {
  color: #D18CA1;
}
.particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text hr {
  border-bottom: #D18CA1 1px solid;
}
.particular_frame .particular_box_bg .particular_box.pb_green figure img {
  margin: 0 5% 0 0;
  -webkit-box-shadow: 1.4rem 1.4rem 0 0 #B3CFA7;
          box-shadow: 1.4rem 1.4rem 0 0 #B3CFA7;
}
.particular_frame .particular_box_bg .particular_box.pb_green figure figcaption {
  position: absolute;
  top: 5vw;
  left: 0;
  color: #648E5A;
}
.particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 252, 246)), to(rgb(237, 251, 234)));
  background: linear-gradient(to bottom, rgb(248, 252, 246) 0%, rgb(237, 251, 234) 100%);
}
.particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text h3.particular_title {
  color: #648E5A;
}
.particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text hr {
  border-bottom: #648E5A 1px solid;
}
.particular_frame .particular_box_bg2 {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.particular_frame .particular_box_bg2 .particular_box2 {
  width: 84%;
  margin: 4rem auto 0 auto;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}
.particular_frame .particular_box_bg2 .particular_box2 figure {
  width: 100%;
  margin: 0 0 2rem 0;
  position: relative;
}
.particular_frame .particular_box_bg2 .particular_box2 figure img {
  width: 100%;
  height: auto;
  display: block;
}
.particular_frame .particular_box_bg2 .particular_box2 figure figcaption {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 4rem;
  text-shadow: 0 0 3px #ffffff;
}
.particular_frame .particular_box_bg2 .particular_box2 .particular_box2_text h3.particular_title2 {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 120%;
  width: 90%;
  margin: 0 auto 1rem auto;
}
.particular_frame .particular_box_bg2 .particular_box2 .particular_box2_text p {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 140%;
  width: 90%;
  margin: 0 auto;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_green {
  background-color: #FBFFF8;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_green figure figcaption {
  position: absolute;
  top: -2rem;
  right: 2rem;
  color: #648E5A;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_green .particular_box2_text h3.particular_title2 {
  color: #648E5A;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_pink {
  background-color: #FCF2F4;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_pink figure figcaption {
  position: absolute;
  top: -2rem;
  right: 2rem;
  color: #D18CA1;
}
.particular_frame .particular_box_bg2 .particular_box2.pb2_pink .particular_box2_text h3.particular_title2 {
  color: #D18CA1;
}
.particular_frame {
  /*下層*/
}
.particular_frame.pf_low {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
}

@media screen and (min-width: 768px), print {
  .particular_frame {
    width: 100%;
    margin: 2px 0 0 0;
    padding: 117px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_particular.svg") no-repeat;
    background-size: 1255px;
    background-position: right top -25px;
  }
  .particular_frame .particular_box_bg {
    width: 1200px;
    margin: 48px auto 0 auto;
    overflow: visible;
  }
  .particular_frame .particular_box_bg .particular_box {
    width: 1200px;
    margin: 0 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .particular_frame .particular_box_bg .particular_box figure {
    width: 642px;
    margin: 0 0 0 0;
    position: relative;
    overflow: visible;
    z-index: 3;
  }
  .particular_frame .particular_box_bg .particular_box figure img {
    width: auto;
    height: auto;
    display: block;
  }
  .particular_frame .particular_box_bg .particular_box figure figcaption {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 10rem;
    text-shadow: 0 0 3px #ffffff;
  }
  .particular_frame .particular_box_bg .particular_box .particular_box_text {
    width: 558px;
    margin: 40px 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 538px;
  }
  .particular_frame .particular_box_bg .particular_box .particular_box_text h3.particular_title {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 3.8rem;
    line-height: 120%;
    position: relative;
    z-index: 2;
  }
  .particular_frame .particular_box_bg .particular_box .particular_box_text hr {
    border: none;
    margin: 54px 0 44px 0;
    position: relative;
    z-index: 2;
  }
  .particular_frame .particular_box_bg .particular_box .particular_box_text p {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2rem;
    line-height: 180%;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink figure {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink figure img {
    float: right;
    margin: 0 0 0 0;
    -webkit-box-shadow: -30px 30px 0 0 #E5BBC8;
            box-shadow: -30px 30px 0 0 #E5BBC8;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink figure figcaption {
    position: absolute;
    top: 67px;
    right: -18px;
    color: #D18CA1;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 251, 252)), to(rgb(251, 241, 243)));
    background: linear-gradient(to bottom, rgb(255, 251, 252) 0%, rgb(251, 241, 243) 100%);
    padding: 36px 0 32px 31px;
    position: relative;
    z-index: 2;
    overflow: visible;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text::after {
    content: "";
    width: 1500px;
    height: 538px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 251, 252)), to(rgb(251, 241, 243)));
    background: linear-gradient(to bottom, rgb(255, 251, 252) 0%, rgb(251, 241, 243) 100%);
    display: block;
    position: absolute;
    top: 0;
    left: -240px;
    z-index: 1;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text h3.particular_title {
    color: #D18CA1;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text h3.particular_title.ajs1 {
    margin: 20px 0 0 0;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text h3.particular_title.ajs2 {
    margin: -20px 0 0 0;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text hr {
    border-bottom: #D18CA1 1px solid;
  }
  .particular_frame .particular_box_bg .particular_box.pb_pink .particular_box_text.ajs {
    padding: 56px 0 32px 31px;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green figure img {
    float: left;
    margin: 0 0 0 0;
    -webkit-box-shadow: 30px 30px 0 0 #B3CFA7;
            box-shadow: 30px 30px 0 0 #B3CFA7;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green figure figcaption {
    position: absolute;
    top: 67px;
    left: -11px;
    color: #648E5A;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 252, 246)), to(rgb(237, 251, 234)));
    background: linear-gradient(to bottom, rgb(248, 252, 246) 0%, rgb(237, 251, 234) 100%);
    padding: 61px 26px 32px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text::after {
    content: "";
    width: 1500px;
    height: 538px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 252, 246)), to(rgb(237, 251, 234)));
    background: linear-gradient(to bottom, rgb(248, 252, 246) 0%, rgb(237, 251, 234) 100%);
    display: block;
    position: absolute;
    top: 0;
    right: -240px;
    z-index: 1;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text h3.particular_title {
    color: #648E5A;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text hr {
    border-bottom: #648E5A 1px solid;
  }
  .particular_frame .particular_box_bg .particular_box.pb_green .particular_box_text.ajs {
    padding: 41px 26px 32px 0;
  }
  .particular_frame .particular_box_bg2 {
    width: 1200px;
    margin: 71px auto 0 auto;
    padding: 10px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .particular_frame .particular_box_bg2 .particular_box2 {
    width: 350px;
    height: 528px;
    margin: 0 75px 59px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  }
  .particular_frame .particular_box_bg2 .particular_box2 figure {
    width: 100%;
    margin: 0 0 35px 0;
    position: relative;
  }
  .particular_frame .particular_box_bg2 .particular_box2 figure img {
    width: 100%;
    height: auto;
    display: block;
  }
  .particular_frame .particular_box_bg2 .particular_box2 figure figcaption {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 4rem;
    text-shadow: 0 0 3px #ffffff;
  }
  .particular_frame .particular_box_bg2 .particular_box2 .particular_box2_text h3.particular_title2 {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 120%;
    width: 290px;
    margin: 0 auto 13px auto;
  }
  .particular_frame .particular_box_bg2 .particular_box2 .particular_box2_text p {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 125%;
    width: 290px;
    margin: 0 auto;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_green {
    background-color: #FBFFF8;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_green figure figcaption {
    position: absolute;
    top: -20px;
    right: 20px;
    color: #648E5A;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_green .particular_box2_text h3.particular_title2 {
    color: #648E5A;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_pink {
    background-color: #FCF2F4;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_pink figure figcaption {
    position: absolute;
    top: -20px;
    right: 20px;
    color: #D18CA1;
  }
  .particular_frame .particular_box_bg2 .particular_box2.pb2_pink .particular_box2_text h3.particular_title2 {
    color: #D18CA1;
  }
  .particular_frame .particular_box_bg2 .particular_box2.btm {
    height: 468px;
    margin: 0 75px 10px 0;
  }
  .particular_frame .particular_box_bg2 .ajs {
    margin: 0 0 59px 0;
  }
  .particular_frame {
    /*下層*/
  }
  .particular_frame.pf_low {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: none;
  }
}
/* -----------------------------------------------------------
当クリニックについて
----------------------------------------------------------- */
.facility_frame {
  width: 100%;
  margin: 0 0 0 0;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url("../img/index_text_facility.svg") no-repeat;
  background-size: 65%;
  background-position: right top -0.5rem;
}
.facility_frame .facility_text {
  width: 90%;
  margin: 2rem auto 0 auto;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #464646;
  text-align: center;
}
.facility_frame .loop_css {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0 0 0;
}
.facility_frame .loop_css ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  /*width: 2800px;*/
  width: 2550px;
  margin: 0;
  padding: 0;
}
.facility_frame .loop_css ul li {
  display: inline-block;
  width: 50vw;
  min-width: 250px;
  margin: 0 0.2rem;
  list-style: none;
  text-align: center;
}
.facility_frame .loop_css ul li a {
  display: block;
}
.facility_frame .loop_css ul li img {
  display: block;
  width: 100%;
  height: auto;
}
.facility_frame .loop_css ul:first-child {
  -webkit-animation: loop 120s -60s linear infinite;
  animation: loop 120s -60s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.facility_frame .loop_css ul + ul {
  -webkit-animation: loop2 120s linear infinite;
  animation: loop2 120s linear infinite;
}
.facility_frame .loop_css:hover ul {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.facility_frame .loop_js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2550px;
  height: 150px;
  overflow: hidden;
}
.facility_frame .loop_js > * {
  width: 33.333333%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .facility_frame {
    width: 100%;
    margin: 2px 0 0 0;
    padding: 106px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/index_text_facility.svg") no-repeat;
    background-size: 935px;
    background-position: right top -34px;
  }
  .facility_frame .facility_text {
    width: 100%;
    margin: 48px 0 0 0;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 2.4rem;
    color: #464646;
    text-align: center;
  }
  .facility_frame .loop_css {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%;
    overflow: hidden;
    margin: 28px 0 0 0;
  }
  .facility_frame .loop_css ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    /*width: 4200px;*/
    width: 3800px;
    margin: 0;
    padding: 0;
  }
  .facility_frame .loop_css ul li {
    display: inline-block;
    width: 50vw;
    min-width: 400px;
    margin: 0 5px 0 5px;
    list-style: none;
    text-align: center;
  }
  .facility_frame .loop_css ul li a {
    display: block;
  }
  .facility_frame .loop_css ul li img {
    display: block;
    width: 100%;
    height: auto;
  }
  .facility_frame .loop_css ul li img:hover {
    -webkit-filter: saturate(50%);
            filter: saturate(50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .facility_frame .loop_css ul:first-child {
    -webkit-animation: loop 120s -60s linear infinite;
    animation: loop 120s -60s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  .facility_frame .loop_css ul + ul {
    -webkit-animation: loop2 120s linear infinite;
    animation: loop2 120s linear infinite;
  }
  .facility_frame .loop_css:hover ul {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  @-webkit-keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes loop {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @-webkit-keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  @keyframes loop2 {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-200%);
      transform: translateX(-200%);
    }
  }
  .facility_frame .loop_js {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2550px;
    height: 267px;
    overflow: hidden;
  }
  .facility_frame .loop_js > * {
    width: 33.333333%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.jpg") no-repeat;
  background-position: center top;
  background-size: 100%;
  padding: 0 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 4rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
  background-color: #ffffff;
  border: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.overview .overview_box .overview_info_box_left .overview_logo {
  width: 80%;
  display: block;
  margin: 0 auto 2rem auto;
}
.overview .overview_box .overview_info_box_left .overview_logo img {
  width: 100%;
  height: auto;
  display: block;
}
.overview .overview_box .overview_info_box_left ul.overview_dept_list {
  list-style-type: none;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.overview .overview_box .overview_info_box_left ul.overview_dept_list li {
  display: inline-block;
  color: #ffffff;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
}
.overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(1) {
  background-color: #d1b56b;
  padding: 0.5rem;
  margin: 0 0.5rem 0 0;
}
.overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(2) {
  background-color: #8EB884;
  padding: 0.5rem;
  margin: 0 0.5rem 0 0;
}
.overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(3) {
  background-color: #D2A0AF;
  padding: 0.5rem;
  margin: 0 0 0 0;
}
.overview .overview_box .overview_info_box_left .overview_tel {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 2.6rem;
  color: #464646;
  text-align: center;
  margin: 0 0 0.5rem 0;
}
.overview .overview_box .overview_info_box_left .overview_tel span.tel a {
  text-decoration: none;
  color: #464646;
}
.overview .overview_box .overview_info_box_left .overview_fax {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.8rem;
  color: #464646;
  text-align: center;
  margin: 0 0 0.5rem 0;
  pointer-events: none;
}
.overview .overview_box .overview_info_box_left .overview_address {
  font-family: "notoserifjp_regular";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 1.5rem 0;
}
.overview .overview_box .overview_info_box_left .overview_doctor {
  font-family: "notoserifjp_regular";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 0 0;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  width: 100%;
  background-color: #ffffff;
  border: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 0;
  margin: 1rem 0 0 0;
}
.overview .overview_box .overview_info_box_right .overview_timetable {
  width: 96%;
  margin: 0 auto 0 auto;
}
.overview .overview_box .overview_info_box_right .overview_timetable_title {
  width: 96%;
  margin: 2rem auto 0.5rem auto;
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  color: #D2A0AF;
}
.overview iframe.googlemap {
  width: 96%;
  margin: 1rem auto 0 auto;
  height: 100vw;
  display: block;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background: url("../img/overview_bg.jpg") no-repeat;
    background-position: center top;
    background-size: 100%;
    padding: 0 0 120px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 0 auto;
    padding: 115px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    /*左側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 565px;
    /*height: 462px;*/
    height: 400px;
    background-color: #ffffff;
    border: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .overview .overview_box .overview_info_box_left .overview_logo {
    width: 400px;
    display: block;
    margin: 0 auto 20px auto;
  }
  .overview .overview_box .overview_info_box_left .overview_logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .overview .overview_box .overview_info_box_left ul.overview_dept_list {
    list-style-type: none;
    margin: 0 0 18px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .overview .overview_box .overview_info_box_left ul.overview_dept_list li {
    display: inline-block;
    color: #ffffff;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
  }
  .overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(1) {
    background-color: #d1b56b;
    padding: 9px 10px;
    margin: 0 10px 0 0;
  }
  .overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(2) {
    background-color: #8EB884;
    padding: 9px 10px;
    margin: 0 10px 0 0;
  }
  .overview .overview_box .overview_info_box_left ul.overview_dept_list li:nth-child(3) {
    background-color: #D2A0AF;
    padding: 9px 10px;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_left .overview_tel {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 3.6rem;
    color: #464646;
    text-align: center;
    margin: 0 0 6px 0;
    line-height: 100%;
  }
  .overview .overview_box .overview_info_box_left .overview_tel span.tel a {
    text-decoration: none;
    color: #464646;
  }
  .overview .overview_box .overview_info_box_left .overview_fax {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 2.2rem;
    color: #464646;
    text-align: center;
    margin: 0 0 20px 0;
    pointer-events: none;
  }
  .overview .overview_box .overview_info_box_left .overview_address {
    font-family: "notoserifjp_regular";
    font-weight: normal;
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 10px 0;
  }
  .overview .overview_box .overview_info_box_left .overview_doctor {
    font-family: "notoserifjp_regular";
    font-weight: normal;
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 10px 0;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    width: 630px;
    /*height: 462px;*/
    height: 400px;
    background-color: #ffffff;
    border: #8EB884 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px 0 0 0;
    margin: 0 0 0 0;
  }
  .overview .overview_box .overview_info_box_right .overview_timetable {
    width: 570px;
    margin: 0 auto 0 auto;
  }
  .overview .overview_box .overview_info_box_right .overview_timetable_title {
    width: 570px;
    margin: 16px auto 4px auto;
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    color: #D2A0AF;
  }
  .overview iframe.googlemap {
    width: 1200px;
    margin: 5px auto 0 auto;
    height: 400px;
    display: block;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer {
  width: 100%;
  background-color: #F4FFF0;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer_frame {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer_frame ul {
  width: 49%;
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer_frame ul li {
  font-family: "notoserifjp_bold";
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  line-height: 130%;
}
footer .footer_frame ul li a {
  color: #464646;
  text-decoration: none;
}
footer .footer_frame ul li ul {
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 0 0 0 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer_frame ul li ul li {
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1rem;
  margin: 0 0 1rem 0;
}
footer .footer_frame ul li.treatment {
  display: none;
}
footer .footer_frame ul.list1 {
  border-right: #707070 1px solid;
}
footer .footer_frame ul.list3 {
  border-right: #707070 1px solid;
}
footer .footer_frame ul.footer_blobal li {
  margin: 0 0 1rem 0;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #F4FFF0;
}
footer .copyright a {
  color: #8EB884;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 16vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 999999;
  border-top: #8EB884 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel {
  width: 18%;
  margin: 0;
  color: #ffffff;
  background-color: #8EB884;
  text-align: center;
  font-family: "notosansjp_regular";
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-right: #ffffff 1px solid;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer_link a.footer_tel i {
  font-size: 2rem;
}
.footer_link a.footer_reserve {
  /*width:35%; */
  width: 67%;
  margin: 0;
  color: #ffffff;
  background-color: #8EB884;
  text-align: center;
  font-family: "notoserifjp_medium";
  font-weight: normal;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  border-right: #ffffff 1px solid;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 100%;
}
.footer_link a.footer_reserve span {
  display: block;
  font-size: 0.9rem;
  margin: 0.3rem 0 0 0;
  line-height: 100%;
}
.footer_link a.footer_interviewsheet {
  width: 35%;
  margin: 0;
  color: #ffffff;
  background-color: #8EB884;
  text-align: center;
  font-family: "notosansjp_regular";
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  border-right: #ffffff 1px solid;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link .smoothScrolls {
  color: #ffffff;
  background-color: #8EB884;
  width: 15%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_link .smoothScrolls a {
  width: 100%;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  font-size: 2rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 82px 0 0 0;
    background-color: #F4FFF0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 562px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_frame ul {
    width: auto;
    list-style-type: none;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul li {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul li a {
    color: #464646;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  footer .footer_frame ul li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
  }
  footer .footer_frame ul li ul {
    width: 100%;
    margin: 14px 0 34px 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul li ul li {
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
    margin: 0 0 6px 16px;
    line-height: 115%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  footer .footer_frame ul li ul li a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
    font-weight: bold;
  }
  footer .footer_frame ul li ul.mb0 {
    margin: 14px 0 0 0;
  }
  footer .footer_frame ul li.treatment {
    display: none;
  }
  footer .footer_frame ul.list1 {
    width: 212px;
    border-right: #707070 1px solid;
    padding: 0 0 0 0;
  }
  footer .footer_frame ul.list2 {
    width: 264px;
    border-right: #707070 1px solid;
    padding: 0 0 0 62px;
  }
  footer .footer_frame ul.list3 {
    width: 246px;
    border-right: #707070 1px solid;
    padding: 0 0 0 60px;
  }
  footer .footer_frame ul.list4 {
    width: 258px;
    border-right: #707070 1px solid;
    padding: 0 0 0 60px;
  }
  footer .footer_frame ul.footer_blobal {
    width: 220px;
    padding: 0 0 0 56px;
  }
  footer .footer_frame ul.footer_blobal li {
    font-family: "notoserifjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0 0 11px 0;
    line-height: 120%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  footer .footer_frame ul.footer_blobal li a {
    color: #464646;
    text-decoration: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #8EB884;
    font-family: "notoserifjp_medium";
    font-weight: normal;
    font-size: 1.4rem;
    height: auto;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #F4FFF0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    bottom: 80px;
    left: 0;
  }
  footer .copyright a {
    color: #8EB884;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  footer .copyright a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #648E5A;
    font-weight: bold;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 60px;
    height: 60px;
    background-color: #8EB884;
    border: #ffffff 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop_position #linkpagetop a i {
    font-size: 2.2rem;
    color: #ffffff;
  }
  #pagetop_position #linkpagetop a:hover {
    background-color: #91BE88;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 30px;
    right: 120px;
    z-index: 999999;
  }
}
/*
@media screen and (min-width: 768px) and (max-width: 1500px) {

  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;     
    #linkpagetop a {
      width: 78px;
      height: 78px;     
      img{
        width: 78px;
        height: 78px;  
      }
    }
  }
  #pagetop {
    position: fixed;
    bottom: 110px;
    right: 2%;
    z-index: 999999;
  }
}
*/
/*# sourceMappingURL=style.css.map */