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

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*◇◆◇◆◇◆揃え◇◆◇◆◇◆*/
p, ul, dl {
  text-align: justify;
}

/*◇◆◇◆◇◆基本色◇◆◇◆◇◆*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*◇◆◇◆◇◆ハンバーガー色◇◆◇◆◇◆*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*ハンバーガーdrawr背景*/
/*ハンバーガーdrawrテキスト*/
/*ハンバーガーdrawrサブ背景*/
/*ハンバーガーdrawrボーダー*/
/*◇◆◇◆◇◆お知らせ色◇◆◇◆◇◆*/
/*お知らせタイトル*/
/*お知らせ文字*/
/*お知らせボーダー*/
/*お知らせアイコン*/
/*お知らせ背景*/
/*◇◆◇◆◇◆フッターPC◇◆◇◆◇◆*/
/*フッター背景色*/
/*フッターテキスト*/
/*フッターボーダー*/
/*◇◆◇◆◇◆フッターリンクSP◇◆◇◆◇◆*/
/*フッターリンク背景色*/
/*フッターリンクテキスト*/
/*フッターリンクボーダー*/
/*◇◆◇◆◇◆コピーライト◇◆◇◆◇◆*/
/*コピーライト背景色*/
/*コピーライトテキスト*/
/*◇◆◇◆◇◆リンク系◇◆◇◆◇◆*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆診療時間テーブル◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*thボーダー*/
/*◇◆◇◆◇◆汎用テーブル系◇◆◇◆◇◆*/
/*th背景*/
/*th文字*/
/*thボーダー*/
/*td背景*/
/*td文字*/
/*tdボーダー*/
/*◇◆◇◆◇◆ホバー速度◇◆◇◆◇◆*/
/*◇◆◇◆◇◆影◇◆◇◆◇◆*/
/*◇◆◇◆◇◆透過◇◆◇◆◇◆*/
/*◇◆◇◆◇◆フロー◇◆◇◆◇◆*/
/*◇◆◇◆◇◆矢印◇◆◇◆◇◆*/
/*濃い黄色*/
/*灰色*/
/*薄い黄色*/
/*薄い黄色*/
/*薄い紫*/
/*灰色*/
/*灰色*/
/*緑*/
/*水色*/
/*青*/
/*水色*/
/*赤*/
/*赤*/
/*緑*/
/*緑*/
/*オレンジ*/
/*オレンジ*/
/*赤*/
/*赤*/
/*ピンク*/
/*ピンク*/
/*緑*/
/*緑*/
/*青*/
/*青*/
/*ピンク*/
/*ピンク*/
/*オレンジ*/
/*青*/
/*薄い緑*/
/*薄い黄色*/
/*黄色*/
/*黄色*/
/*緑*/
/*ピンク*/
/*緑*/
/*緑*/
/*緑*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "notosansjp_regular";
  src: url(../font/NotoSansJP-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "notosansjp_medium";
  src: url(../font/NotoSansJP-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "notosansjp_bold";
  src: url(../font/NotoSansJP-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "notosansjp_semibold";
  src: url(../font/NotoSansJP-SemiBold.ttf);
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "montserrat_regular";
  src: url(../font/Montserrat-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "montserrat_medium";
  src: url(../font/Montserrat-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "montserrat_bold";
  src: url(../font/Montserrat-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;
}

/* 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;
  }
}
/*ハンバーガー*/
/* 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: #ffffff;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  border-top: #474A5B 1px solid;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li a {
  color: #474A5B;
  font-family: "zenkakugothicnew_medium";
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0.8rem;
  border-bottom: #474A5B 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.05em;
  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;
  line-height: 140%;
}
.main_nav_sp .drawr ul.hbg li a span {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1.open_nav, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2.open_nav, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a {
  background-color: #F9DB00;
  color: #474A5B;
  border-bottom: none;
  text-align: center;
  font-family: "zenkakugothicnew_medium";
  font-weight: 500;
  border-bottom: #474A5B 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a br, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a br, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a br {
  display: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub1 li a::after, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub2 li a::after, .main_nav_sp .drawr ul.hbg li ul.main_nav_sub3 li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.return_hbg a::after, .main_nav_sp .drawr ul.hbg li.treatment_hbg a::after, .main_nav_sp .drawr ul.hbg li.disease_hbg a::after {
  font-family: "fontello";
  content: "\f004";
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
}
.main_nav_sp .drawr ul.hbg li.open_return a::after, .main_nav_sp .drawr ul.hbg li.open_treatment a::after, .main_nav_sp .drawr ul.hbg li.open_disease a::after {
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@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: 2%;
  top: 2vw;
  z-index: 99999999999;
  padding: 0 0 0.6rem 0;
  background-color: #F9DB00;
  height: 14vw;
}

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

 共通項目

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

h2.top_title {
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  line-height: 120%;
  margin: 0;
}
h2.top_title span {
  font-size: 1.2rem;
  color: #F9DB00;
  display: block;
  text-align: center;
}
h2.low {
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 120%;
  padding: 0 0 0 0;
  margin: 4rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.low {
  color: #3F342D;
  background-color: #FDF4B6;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
}
h3.low::before {
  position: absolute;
  top: calc(50% - 1.3rem);
  left: 0.8rem;
  content: "";
  display: block;
  width: 0.6rem;
  height: 2.6rem;
  background: url("../img/h3_icon.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
h3.first {
  margin: 0 0 1.5rem 0;
}

h4.low {
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 0 1rem 0.1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2rem 0 1.5rem 0;
  line-height: 120%;
  position: relative;
}
h4.low::before {
  content: "";
  width: 100%;
  height: 3px;
  border-bottom: #CCCCCC 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 1;
}
h4.low::after {
  content: "";
  width: 20%;
  height: 3px;
  border-bottom: #F9DB00 3px solid;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: 2;
}
h4.first {
  margin: 0 0 1rem 0;
}

h5.low {
  margin: 2rem 0 2.5rem 0;
}
h5.low span {
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.8rem;
  font-weight: bold;
  background-image: linear-gradient(to right, #F9DB00 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding: 0 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
h5.first {
  margin: 0 0 2.5rem 0;
}

p {
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-align: justify;
}
p.ajs {
  margin: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 4.8rem;
    text-align: center;
    line-height: 120%;
    margin: 0;
  }
  h2.top_title span {
    font-size: 2rem;
    color: #F9DB00;
    display: block;
    text-align: center;
  }
  h2.low {
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 120%;
    padding: 0 0 0 0;
    margin: 100px 0 40px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  h2.first {
    margin: 0 0 40px 0;
  }
  h3.low {
    color: #3F342D;
    background-color: #FDF4B6;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3rem;
    padding: 14px 20px 14px 46px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 80px 0 30px 0;
    line-height: 120%;
    position: relative;
  }
  h3.low::before {
    position: absolute;
    top: calc(50% - 20px);
    left: 20px;
    content: "";
    display: block;
    width: 8px;
    height: 40px;
    background: url("../img/h3_icon.svg") no-repeat;
    background-size: contain;
    background-position: center;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 0 18px 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 30px 0 18px 0;
    line-height: 120%;
    position: relative;
  }
  h4.low::before {
    content: "";
    width: 100%;
    height: 3px;
    border-bottom: #CCCCCC 2px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 1;
  }
  h4.low::after {
    content: "";
    width: 140px;
    height: 3px;
    border-bottom: #F9DB00 2px solid;
    position: absolute;
    bottom: 3px;
    left: 0;
    z-index: 2;
  }
  h4.first {
    margin: 0 0 18px 0;
  }
  h5.low {
    margin: 30px 0 24px 0;
  }
  h5.low span {
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 2.4rem;
    font-weight: bold;
    background-image: linear-gradient(to right, #F9DB00 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
    padding: 0 0 18px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: inline-block;
  }
  h5.first {
    margin: 0 0 24px 0;
  }
  p {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
    text-align: justify;
  }
  p.ajs {
    margin: 0 0 0 0;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #3F342D;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  border-radius: 0.7rem;
  border: #CCCCCC 1px solid;
}
table.timetable tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 0;
  vertical-align: middle;
  color: #3F342D;
  background-color: #FCFAE8;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  padding: 1rem 0;
  vertical-align: middle;
  text-align: center;
  color: #53B989;
  background-color: #FCFAE8;
  border-top: #CCCCCC 1px solid;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #3F342D;
}
table.timetable tr:first-child th:first-child {
  border-top-left-radius: 0.7rem;
}
table.timetable tr:first-child th:last-child {
  border-top-right-radius: 0.7rem;
}
table.timetable tr:last-child td:first-child {
  border-bottom-left-radius: 0.7rem;
}
table.timetable tr:last-child td:last-child {
  border-bottom-right-radius: 0.7rem;
}
table.timetable caption {
  caption-side: bottom;
  font-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0.6rem 0 0 0;
  width: 100%;
  color: #3F342D;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  line-height: 140%;
}

hr.top_timetable_line {
  width: 100%;
  height: 1px;
  border: none;
  background-image: linear-gradient(to right, #3F342D 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left top;
}

dl.top_timetable_notice_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-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1rem 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.top_timetable_notice_list dt {
  width: 6%;
  margin: 0 0 0.2rem 0;
}
dl.top_timetable_notice_list dd {
  width: 94%;
  margin: 0 0 0.2rem 0;
}
dl.top_timetable_notice_list dd span {
  font-weight: bold;
}

.top_timetable_notice {
  width: 96%;
  margin: 0 auto 0 auto;
  background-color: #FCFAE8;
  border-radius: 0.5rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_timetable_notice .ttn1 {
  font-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  color: #3F342D;
  margin: 0 0 1rem 0;
}
.top_timetable_notice .ttn1 span {
  text-decoration: underline;
}
.top_timetable_notice .ttn1 a {
  color: #1BC18E;
  font-weight: bold;
}
.top_timetable_notice .ttn2 {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  color: #3F342D;
  margin: 0 0 0 0;
}
.top_timetable_notice .ttn2 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #F9DB00));
  background: linear-gradient(transparent 70%, #F9DB00 70%);
}

@media screen and (min-width: 768px), print {
  table.timetable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #3F342D;
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    border-radius: 20px;
    border: #CCCCCC 1px solid;
  }
  table.timetable tr th {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 1.6rem;
    padding: 0;
    vertical-align: middle;
    color: #3F342D;
    background-color: #FCFAE8;
    width: 10%;
    height: 58px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 20%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-family: "notosansjp_regular";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 0;
    vertical-align: middle;
    text-align: center;
    color: #53B989;
    background-color: #FCFAE8;
    height: 60px;
    box-sizing: border-box;
    border-top: #CCCCCC 1px solid;
  }
  table.timetable tr td.time {
    width: 20%;
    text-align: center;
    color: #3F342D;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  table.timetable tr:first-child th:first-child {
    border-top-left-radius: 20px;
  }
  table.timetable tr:first-child th:last-child {
    border-top-right-radius: 20px;
  }
  table.timetable tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
  }
  table.timetable tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
  }
  table.timetable caption {
    caption-side: bottom;
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    margin: 16px 0 0 0;
    width: 100%;
    color: #3F342D;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    line-height: 185%;
    letter-spacing: 0.1em;
  }
  hr.top_timetable_line {
    width: 100%;
    height: 1px;
    border: none;
    background-image: linear-gradient(to right, #3F342D 3px, transparent 3px);
    background-size: 8px 3px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  dl.top_timetable_notice_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-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 14px 0 0 0;
    line-height: 165%;
    width: 100%;
  }
  dl.top_timetable_notice_list dt {
    width: 20px;
    margin: 0 0 4px 0;
  }
  dl.top_timetable_notice_list dd {
    width: calc(100% - 20px);
    margin: 0 0 4px 0;
  }
  dl.top_timetable_notice_list dd span {
    font-weight: bold;
  }
  .top_timetable_notice {
    width: 100%;
    height: 112px;
    margin: 11px 0 0 0;
    background-color: #FCFAE8;
    border-radius: 0.5rem;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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;
  }
  .top_timetable_notice .ttn1 {
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    text-align: center;
    color: #3F342D;
    margin: 2px 0 5px 0;
  }
  .top_timetable_notice .ttn1 span {
    text-decoration: underline;
  }
  .top_timetable_notice .ttn1 a {
    color: #1BC18E;
    font-weight: bold;
  }
  .top_timetable_notice .ttn1 a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .top_timetable_notice .ttn2 {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
    color: #3F342D;
    margin: 0 0 0 0;
  }
  .top_timetable_notice .ttn2 span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #F9DB00));
    background: linear-gradient(transparent 70%, #F9DB00 70%);
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: #3F342D;
  border: #AFAFAF 1px solid;
  background-color: #F9DB00;
}
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: #3F342D;
  border: #AFAFAF 1px solid;
  background-color: #ffffff;
}
table.low_table tr td em {
  font-style: normal;
  font-weight: bold;
  color: #ff0000;
}
table.low_table.doctor_table {
  line-height: 140%;
}
table.low_table.doctor_table tr th {
  width: 40%;
}
table.low_table.doctor_table tr td {
  width: 60%;
}

@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: #3F342D;
    border: #AFAFAF 1px solid;
    background-color: #F9DB00;
  }
  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: #3F342D;
    border: #AFAFAF 1px solid;
    background-color: #ffffff;
  }
  table.low_table tr td em {
    font-style: normal;
    font-weight: bold;
    color: #ff0000;
  }
  table.low_table.doctor_table {
    line-height: 140%;
    width: 100%;
    margin: 0 0 20px 0;
  }
  table.low_table.doctor_table tr th {
    width: 30%;
  }
  table.low_table.doctor_table tr td {
    width: 70%;
  }
  table.low_table.doctor_table tr td span {
    float: right;
    margin: 0 10rem 0 0;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 800px;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #3F342D;
  border: #AFAFAF 1px solid;
  background-color: #F9DB00;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #3F342D;
  border: #AFAFAF 1px solid;
  background-color: #ffffff;
}
table.low_table_slide.doctor_table {
  font-size: 1.2rem;
}
table.low_table_slide.doctor_table tr th {
  width: 33%;
  padding: 1rem;
}
table.low_table_slide.doctor_table tr td {
  width: 33%;
  padding: 1rem;
  text-align: center;
}
table.low_table_slide.week_table {
  width: 1200px;
  font-size: 1.2rem;
}
table.low_table_slide.week_table tr th {
  width: 12.5%;
  padding: 1rem;
  text-align: center;
}
table.low_table_slide.week_table tr td {
  width: 12.5%;
  padding: 1rem;
  text-align: center;
}
table.low_table_slide.week_table tr td.red {
  color: #ff0000;
}

/*横スライドテーブル用*/
.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: #3F342D;
    border: #AFAFAF 1px solid;
    background-color: #F9DB00;
  }
  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: #3F342D;
    border: #AFAFAF 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide.doctor_table {
    font-size: 1.8rem;
  }
  table.low_table_slide.doctor_table tr th {
    width: 33%;
    padding: 20px;
  }
  table.low_table_slide.doctor_table tr td {
    width: 33%;
    padding: 20px;
    text-align: center;
  }
  table.low_table_slide.week_table {
    width: 1200px;
    font-size: 1.8rem;
  }
  table.low_table_slide.week_table tr th {
    width: 12.5%;
    padding: 20px;
    text-align: center;
  }
  table.low_table_slide.week_table tr td {
    width: 12.5%;
    padding: 20px;
    text-align: center;
  }
  table.low_table_slide.week_table tr td.red {
    color: #ff0000;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: #3F342D;
  background-color: #F9DB00;
  border-bottom: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 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: #3F342D;
  background-color: #ffffff;
  border-bottom: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
}
table.low_table_spblock tr td span {
  color: #1BC18E;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #1BC18E;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #AFAFAF 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: #3F342D;
    background-color: #F9DB00;
    border-bottom: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 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: #3F342D;
    background-color: #ffffff;
    border-bottom: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #1BC18E;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #1BC18E;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #AFAFAF 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #AFAFAF 1px solid;
  }
}
/*テーブル線上下のみ*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: #3F342D;
  border-bottom: #AFAFAF 1px solid;
  background-color: #F9DB00;
}
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: #3F342D;
  border-bottom: #AFAFAF 1px solid;
  background-color: #ffffff;
}
table.low_table2 tr:first-child th {
  border-top: #AFAFAF 1px solid;
}
table.low_table2 tr:first-child td {
  border-top: #AFAFAF 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: #3F342D;
    border-bottom: #AFAFAF 1px solid;
    background-color: #F9DB00;
  }
  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: #3F342D;
    border-bottom: #AFAFAF 1px solid;
    background-color: #ffffff;
  }
  table.low_table2 tr:first-child th {
    border-top: #AFAFAF 1px solid;
  }
  table.low_table2 tr:first-child td {
    border-top: #AFAFAF 1px solid;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide2 {
  width: 1000px;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: #3F342D;
  border-bottom: #AFAFAF 1px solid;
  background-color: #F9DB00;
}
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: #3F342D;
  border-bottom: #AFAFAF 1px solid;
  background-color: #ffffff;
}
table.low_table_slide2 tr:first-child th {
  border-top: #AFAFAF 1px solid;
}
table.low_table_slide2 tr:first-child td {
  border-top: #AFAFAF 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: #3F342D;
    border-bottom: #AFAFAF 1px solid;
    background-color: #F9DB00;
  }
  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: #3F342D;
    border-bottom: #AFAFAF 1px solid;
    background-color: #ffffff;
  }
  table.low_table_slide2 tr:first-child th {
    border-top: #AFAFAF 1px solid;
  }
  table.low_table_slide2 tr:first-child td {
    border-top: #AFAFAF 1px solid;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  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: #3F342D;
  background-color: #F9DB00;
  border-bottom: #AFAFAF 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: #3F342D;
  background-color: #ffffff;
  border-bottom: #AFAFAF 1px solid;
}
table.low_table_spblock2 tr td span {
  color: #1BC18E;
  font-weight: bold;
}
table.low_table_spblock2 tr td span a {
  color: #1BC18E;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock2 tr:first-child th {
  border-top: #AFAFAF 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: #3F342D;
    background-color: #F9DB00;
    border-bottom: #AFAFAF 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: #3F342D;
    background-color: #ffffff;
    border-bottom: #AFAFAF 1px solid;
  }
  table.low_table_spblock2 tr td span {
    color: #1BC18E;
    font-weight: bold;
  }
  table.low_table_spblock2 tr td span a {
    color: #1BC18E;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock2 tr:first-child th {
    border-top: #AFAFAF 1px solid;
  }
  table.low_table_spblock2 tr:first-child td {
    border-top: #AFAFAF 1px solid;
  }
}
/*テーブル丸角*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #3F342D;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #AFAFAF 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: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  background-color: #F9DB00;
  color: #3F342D;
  -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: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #3F342D;
  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: #AFAFAF 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: #3F342D;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #AFAFAF 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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    background-color: #F9DB00;
    color: #3F342D;
    -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: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #3F342D;
    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: #AFAFAF 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: #3F342D;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  border-radius: 0.7rem;
  border-top: #AFAFAF 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: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  background-color: #F5F5F5;
  -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: #AAAAAA;
  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: #3BAEDA;
  color: #3F342D;
  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: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #3F342D;
  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: #3F342D;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-radius: 10px;
    border-top: #AFAFAF 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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    background-color: #F9DB00;
    -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: #AAAAAA;
    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: #3BAEDA;
    color: #3F342D;
    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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #3F342D;
    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: #3F342D;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0 0 0 0;
  line-height: 140%;
  border-radius: 0.7rem;
  border-top: #AAAAAA 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: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  background-color: #F9DB00;
  color: #3F342D;
  -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: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  color: #3F342D;
  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: #AFAFAF 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: #3F342D;
    font-size: 1.8rem;
    font-weight: normal;
    margin: 0 0 0 0;
    line-height: 160%;
    border-radius: 0.7rem;
    border-top: #AFAFAF 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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    background-color: #F9DB00;
    color: #3F342D;
    -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: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    color: #3F342D;
    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: #AFAFAF 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: #3F342D;
  font-size: 1.4rem;
  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: #AFAFAF 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  background-color: #F9DB00;
  color: #3F342D;
  -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: #AAAAAA 1px solid;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  line-height: 140%;
  display: block;
  color: #3F342D;
  background-color: #ffffff;
}
table.low_table_spblock3 tr td span {
  color: #1BC18E;
  font-size: 2.2rem;
  font-weight: bold;
}
table.low_table_spblock3 tr td span a {
  color: #1BC18E;
  text-decoration: none;
}
table.low_table_spblock3 tr:first-child th {
  border-top: #AFAFAF 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: #3F342D;
    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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: none;
    background-color: #F9DB00;
    color: #3F342D;
    -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: #AFAFAF 1px solid;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    line-height: 140%;
    display: table-cell;
    color: #3F342D;
    background-color: #ffffff;
  }
  table.low_table_spblock3 tr td span {
    color: #AAAAAA;
    font-size: 3rem;
    font-weight: bold;
  }
  table.low_table_spblock3 tr td span a {
    color: #AAAAAA;
    text-decoration: none;
  }
  table.low_table_spblock3 tr:first-child th {
    border-top: #AFAFAF 1px solid;
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
  }
  table.low_table_spblock3 tr:first-child td {
    border-top: #AFAFAF 1px solid;
    border-top-right-radius: 10px;
  }
  table.low_table_spblock3 tr:last-child th {
    border-bottom-left-radius: 10px;
    border-bottom: #AFAFAF 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: 70%;
  height: auto;
  border-radius: 1rem;
}

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

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

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*標準 disc*/
ul.list_normal {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  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.4rem;
  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.4rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_three 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.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.4rem;
  background-size: 1rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

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

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

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

@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;
  }
  /*標準 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 5px;
    background-size: 16px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準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 5px;
    background-size: 16px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準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 5px;
    background-size: 16px;
    margin: 0 0 10px 0;
    padding: 0 0 0 25px;
  }
  /*標準横 maru*/
  ul.list_maru_row {
    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_row li {
    width: auto;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 5px;
    background-size: 16px;
    margin: 0 30px 10px 0;
    padding: 0 0 0 25px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
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.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 20%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 80%;
  margin: 0 0 1rem 0;
}

dl.bio_list2 {
  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.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 0 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list2 dt {
  width: 28%;
  margin: 0 0 1rem 0;
}
dl.bio_list2 dd {
  width: 72%;
  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.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.num_list dt {
  font-family: "notosansjp_bold";
  font-weight: bold;
  color: #F9DB00;
  width: 8%;
  margin: 0 0 1rem 0;
}
dl.num_list dd {
  font-family: "notosansjp_medium";
  font-weight: normal;
  width: 92%;
  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.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  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.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.4rem;
  -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: #F9DB00;
  color: #3F342D;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  border-bottom: #AFAFAF 1px solid;
}
dl.title_box dt:first-child {
  border-top: #AFAFAF 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: #AFAFAF 1px solid;
  border-right: #AFAFAF 1px solid;
  border-bottom: #AFAFAF 1px solid;
}

@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: 70px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list dd {
    width: 1130px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list2 {
    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 0 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list2 dt {
    width: 100px;
    margin: 0 0 10px 0;
  }
  dl.bio_list2 dd {
    width: 1100px;
    margin: 0 0 10px 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 {
    font-family: "notosansjp_bold";
    font-weight: bold;
    color: #F9DB00;
    width: 30px;
    margin: 0 0 10px 0;
  }
  dl.num_list dd {
    font-family: "notosansjp_medium";
    font-weight: normal;
    width: 1170px;
    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: 25px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list dd {
    width: 1175px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list.ajs {
    width: 460px;
  }
  dl.symbol_list.ajs dt {
    width: 25px;
    margin: 0 0 10px 0;
  }
  dl.symbol_list.ajs dd {
    width: 435px;
    margin: 0 0 10px 0;
  }
  /*タイトルボックス*/
  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: #F9DB00;
    color: #3F342D;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    border-bottom: #AFAFAF 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #AFAFAF 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-left: #AFAFAF 1px solid;
    border-right: #AFAFAF 1px solid;
    border-bottom: #AFAFAF 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

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

/*強調*/
.emphasis {
  background-color: #FCFAE8;
  border-radius: 1rem;
  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 {
  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: 0 0 1rem 0;
}
.low_tel span {
  font-size: 2rem;
  font-weight: bold;
}
.low_tel span a {
  text-decoration: none;
  color: #1BC18E;
}

.text_bold {
  font-weight: bold;
}

.text_red {
  color: #ff0000;
}

.text_underline {
  text-decoration: underline;
}

.tar {
  text-align: right;
}

.tar_sp_tal {
  text-align: left;
}

.low_tel_text span {
  font-size: 1.8rem;
}
.low_tel_text span a {
  text-decoration: none;
  color: #1BC18E;
}

.text_emphasis {
  font-weight: bold;
  font-size: 1.6rem;
  color: #1BC18E;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 0;
    height: 0;
    border: none;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 28px solid #FAE548;
    text-align: center;
    display: block;
    margin: 10px auto 15px 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: #FCFAE8;
    border-radius: 30px;
    padding: 20px;
    -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;
  }
  /*下層電話*/
  .low_tel {
    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: 0 0 20px 0;
  }
  .low_tel span {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .low_tel span a {
    text-decoration: none;
    color: #1BC18E;
  }
  .text_bold {
    font-weight: bold;
  }
  .text_red {
    color: #ff0000;
  }
  .text_underline {
    text-decoration: underline;
  }
  .tar {
    text-align: right;
  }
  .tar_sp_tal {
    text-align: right;
  }
  .low_tel_text span {
    font-size: 1.8rem;
  }
  .low_tel_text span a {
    text-decoration: none;
  }
  .text_emphasis {
    font-weight: bold;
    font-size: 2rem;
    color: #1BC18E;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
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.4rem;
  color: #3F342D;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #1BC18E;
  text-decoration: none;
}
ul.pankuzu_list li:last-child a {
  color: #3F342D;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
  color: #3F342D;
}

@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: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 1.8rem;
    color: #3F342D;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.8rem;
    color: #1BC18E;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child a {
    color: #3F342D;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
    color: #3F342D;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.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: #3F342D;
  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: #3F342D;
    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: #F9DB00 2px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background-color: #AAAAAA;
  padding: 1rem;
  text-decoration: none;
  color: #3F342D;
}
.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: #3F342D;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #3F342D;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #3F342D;
}

@media screen and (min-width: 768px), print {
  .banner_01 {
    width: 800px;
    height: 300px;
    margin: 0 auto 40px auto;
    border: #F9DB00 2px solid;
    border-radius: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    background-color: #AAAAAA;
    padding: 20px;
    text-decoration: none;
    color: #3F342D;
    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: #3F342D;
    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: #3F342D;
    margin: 0 0 1rem 0;
    line-height: 160%;
    width: 500px;
  }
  .banner_01 ul {
    position: absolute;
    top: 80px;
    left: 240px;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #1BC18E;
}

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

ul.link_list {
  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;
}
ul.link_list li {
  width: 49%;
}
ul.link_list li a {
  width: 100%;
  background: url("../img/icon_arrow_btn2.svg") no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.3rem;
  background-color: #1BC18E;
  border: #1BC18E 2px solid;
  border-radius: 3rem;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 0.8rem 1.5rem 0.8rem 1.5rem;
  line-height: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: normal;
}
ul.link_list.ajs {
  margin: 4rem 0 0 0;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #1BC18E;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #F9DB00;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button {
    background: url("../img/icon_arrow_btn.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    background-color: #1BC18E;
    border: #1BC18E 2px solid;
    border-radius: 4rem;
    width: auto;
    height: auto;
    margin: 0 0 2rem 0;
    text-align: left;
    text-decoration: none;
    padding: 20px 80px 20px 80px;
    line-height: 120%;
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .low_button:hover {
    background: url("../img/icon_arrow_btn_hover.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    border: #1BC18E 2px solid;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #1BC18E;
  }
  ul.link_list {
    width: 100%;
    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-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;
  }
  ul.link_list li {
    width: 262.5px;
    margin: 0 50px 36px 0;
  }
  ul.link_list li a {
    width: 100%;
    background: url("../img/icon_arrow_btn2.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    background-color: #1BC18E;
    border: #1BC18E 2px solid;
    border-radius: 4rem;
    width: auto;
    height: auto;
    margin: 0 0 0 0;
    text-align: left;
    text-decoration: none;
    padding: 20px 30px 20px 30px;
    line-height: 120%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  ul.link_list li a:hover {
    background: url("../img/icon_arrow_btn2_hover.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    border: #1BC18E 2px solid;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #1BC18E;
  }
  ul.link_list li:nth-child(4n) {
    margin: 0 0 36px 0;
  }
  ul.link_list.ajs {
    margin: 100px 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;
}
.doctor_name span {
  font-size: 1.8rem;
}

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
  .doctor_name span {
    font-size: 2.2rem;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.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: #138965 4px solid;
  border-radius: 0.8rem;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    border: #138965 4px solid;
    border-radius: 20px;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
}
/* -----------------------------------------------------------
　初めての方へ(流れ)2
----------------------------------------------------------- */
dl.flow_box {
  background-color: #FFF9F1;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.5rem;
}
dl.flow_box dt {
  color: #575757;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 1.6rem;
  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;
}
dl.flow_box dt .flow_no {
  background-color: #9DC714;
  color: #FFFFFF;
  width: 3.5rem;
  height: 3.5rem;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 1rem 0 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;
}
dl.flow_box dt .bold_title {
  font-family: "kiwimaru_medium";
  font-weight: bold;
  margin: 0 0 1rem 0;
}
dl.flow_box dd {
  color: #575757;
  font-family: "kiwimaru_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 140%;
  padding: 0 0 0 4.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.flow_box dd.ajs {
  padding: 0;
}

@media screen and (min-width: 768px), print {
  dl.flow_box {
    background-color: #FFF9F1;
    padding: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
  }
  dl.flow_box dt {
    color: #575757;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 2.4rem;
    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;
  }
  dl.flow_box dt .flow_no {
    background-color: #9DC714;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 2.4rem;
    border-radius: 50%;
    margin: 0 22px 0 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;
  }
  dl.flow_box dt .bold_title {
    font-family: "kiwimaru_medium";
    font-weight: bold;
    margin: 0 0 1rem 0;
  }
  dl.flow_box dd {
    color: #575757;
    font-family: "kiwimaru_medium";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 180%;
    padding: 10px 0 0 72px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.flow_box dd.ajs {
    padding: 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
.low_box_map {
  width: 100%;
  margin: 0;
  /*
  .map_img{
    width: 100%;
    height: auto;
    margin: 0 0 2rem 0;
    border: $color6 1px solid;
    box-sizing: border-box;      
  }
  */
}
.low_box_map iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .low_box_map {
    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;
    /*
    .map_img{
      width: 570px;
      height: auto;
      margin: 0 0 0 0;
      border: $color6 1px solid;
      box-sizing: border-box;
    }
    */
  }
  .low_box_map iframe.googlemap {
    width: 1200px;
    height: 424px;
    display: block;
    margin: 0;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　リワーク
----------------------------------------------------------- */
ul.rework_list {
  list-style-type: none;
  width: 100%;
}
ul.rework_list li {
  margin: 6rem 0 2rem 0;
  padding: 1rem 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
}
ul.rework_list li .rl_title {
  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;
  color: #ffffff;
  width: 90%;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  margin: -4rem auto 1rem auto;
}
ul.rework_list li .rl_text {
  width: 80%;
  margin: 0 auto 0 auto;
}
ul.rework_list li.blue {
  background-color: #E3F3F9;
}
ul.rework_list li.blue .rl_title {
  background-color: #3BAEDA;
}
ul.rework_list li.red {
  background-color: #F9E4E6;
}
ul.rework_list li.red .rl_title {
  background-color: #DB4455;
}
ul.rework_list li.green {
  background-color: #E2F5F0;
}
ul.rework_list li.green .rl_title {
  background-color: #36BC9B;
}

ul.home_list {
  list-style-type: none;
  width: 100%;
}
ul.home_list li {
  text-align: center;
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  margin: 0 0 2rem 0;
}
ul.home_list li .hl_title {
  margin: 0 0 1rem 0;
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  text-align: center;
  padding: 0 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul.home_list li .hl_title::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin: 0 0.5rem -0.5rem 0;
}
ul.home_list li .hl_text {
  margin: 0 0 0 0;
}
ul.home_list li .img_home {
  margin: 0 0 2rem 0;
}
ul.home_list li .img_home img {
  width: 70%;
  height: auto;
}
ul.home_list li.orange {
  background-color: #FCEBC9;
}
ul.home_list li.orange .hl_title {
  background-image: linear-gradient(to right, #F6BB43 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.home_list li.orange .hl_title::before {
  background: url("../img/icon_01.svg") no-repeat;
  background-size: contain;
}
ul.home_list li.red {
  background-color: #FBE7E3;
}
ul.home_list li.red .hl_title {
  background-image: linear-gradient(to right, #E9573E 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.home_list li.red .hl_title::before {
  background: url("../img/icon_02.svg") no-repeat;
  background-size: contain;
}
ul.home_list li.pink {
  background-color: #F9E3F0;
}
ul.home_list li.pink .hl_title {
  background-image: linear-gradient(to right, #D83C97 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.home_list li.pink .hl_title::before {
  background: url("../img/icon_03.svg") no-repeat;
  background-size: contain;
}
ul.home_list li.green {
  background-color: #E1F2EE;
}
ul.home_list li.green .hl_title {
  background-image: linear-gradient(to right, #30A78A 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.home_list li.green .hl_title::before {
  background: url("../img/icon_04.svg") no-repeat;
  background-size: contain;
}
ul.home_list li.bule {
  background-color: #E3F0F9;
}
ul.home_list li.bule .hl_title {
  background-image: linear-gradient(to right, #3B9ADA 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
ul.home_list li.bule .hl_title::before {
  background: url("../img/icon_05.svg") no-repeat;
  background-size: contain;
}

.step_box {
  width: 100%;
}
.step_box .step_arrow {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.step_box .step_arrow .step_title {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 3.4rem;
  text-align: center;
}
.step_box .step_arrow .step_sub_title {
  text-align: center;
}
.step_box .step_arrow .step_sub_title span {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  border-bottom: #3F342D 1px solid;
}
.step_box .step_arrow ul.arrow_list {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  width: 50%;
  margin: 0 auto 0 auto;
}
.step_box .step_arrow ul.arrow_list li {
  margin: 0 0 0.8rem 1.8rem;
  padding: 0;
}
.step_box .step_arrow.pink {
  margin: 0 0 3rem 0;
  padding: 2rem 0 0 0;
  width: 100%;
  height: 93vw;
  background: url("../img/arrow_bg_pink_sp.svg") no-repeat;
  background-position: center center;
  background-size: contain;
}
.step_box .step_arrow.pink .step_title {
  color: #F7D1CA;
}
.step_box .step_arrow.orange {
  margin: -5rem 0 3rem 0;
  padding: 6rem 0 0 0;
  width: 100%;
  height: 101vw;
  background: url("../img/arrow_bg_orange_sp.svg") no-repeat;
  background-position: center center;
  background-size: contain;
}
.step_box .step_arrow.orange .step_title {
  color: #F9D89E;
}
.step_box .step_arrow.blue {
  margin: -5rem 0 3rem 0;
  padding: 6rem 0 0 0;
  width: 100%;
  height: 101vw;
  background: url("../img/arrow_bg_blue_sp.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  overflow: visible;
}
.step_box .step_arrow.blue .step_title {
  color: #C6E5DE;
}
.step_box .step_arrow.blue ul.arrow_list {
  width: 65%;
}
.step_box .step_arrow.blue .arrow_job {
  position: absolute;
  right: 0;
  bottom: -5vw;
  width: 50vw;
  height: 22vw;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 2rem;
  color: #3F342D;
  background: url("../img/step_job_arrow.svg") no-repeat;
  background-size: cover;
  background-position: right center;
  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;
  margin: 0;
  padding: 0 0 0 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.step_arrow_text {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
}

.course_box {
  background-color: #FCFAE8;
  padding: 2rem 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
}
.course_box .course_title_box {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
}
.course_box .course_title_box .course_title {
  color: #ffffff;
  background-color: #1BC18E;
  padding: 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  text-align: center;
}
.course_box .course_title_box .course_title_step {
  color: #3F342D;
  background-color: #BDEDDE;
  padding: 0.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

/*
.program_box{
  width: 1200px;
  height: 225px;
  background-color: $color31;
  border-radius: 30px;
  padding: 30px 0 0 0;
  box-sizing: border-box;
  .program_time{
    width: 1140px;
    height: 35px;
    margin: 0 auto 0 auto;
    position: relative;
    p{
      font-family: 'notosansjp_bold';
      font-size: 1.4rem;
      color: $bace_color;
      letter-spacing: 0;

      &.time1{
        position: absolute;
        top: 0;
        left: 28px;
      }
      &.time2{
        position: absolute;
        top: 0;
        left: 196px;
      } 
      &.time3{
        position: absolute;
        top: 0;
        left: 464px;
      }      
      &.time4{
        position: absolute;
        top: 0;
        right: 444px;
      }      
      &.time5{
        position: absolute;
        top: 0;
        right: 180px;
      }      
      &.time6{
        position: absolute;
        top: 0;
        right: 0;
      }            
    }    
  }

  .program_text{
    width: 1087px;
    height: 108px;
    margin: 16px auto 0 auto;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction:row;
    flex-direction:row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    p{
      font-family: 'notosansjp_bold';
      font-size: 1.4rem;
      color: $bace_color;
      text-align: center;
      line-height: 140%;
      border-radius: 10px;
      height: 108px;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-flex-direction:column;
      flex-direction:column;
      &.text1{
        width: 190px;
        color: $color8;
        background-color: $color30;
      }
      &.text2{
        width: 250px;
        color: $color_white;
        background-color: $color8;
      }
      &.text3{
        width: 140px;
        color: $color8;
        background-color: $color30;
      }
      &.text4{
        width: 250px;
        color: $color_white;
        background-color: $color8;
      }
      &.text5{
        width: 177px;
        color: $color8;
        background-color: $color30;
      }      
    }
  }
}
*/
.program_box {
  width: 100%;
  height: auto;
  background-color: #FEF9DA;
  border-radius: 1rem;
  padding: 2rem 0 2rem 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;
  margin: 0 0 2rem 0;
}
.program_box .program_time {
  width: 25%;
  height: auto;
  margin: 0 0 0 0;
  position: relative;
  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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.program_box .program_time p {
  font-family: "notosansjp_bold";
  font-size: 1.4rem;
  color: #3F342D;
  letter-spacing: 0;
}
.program_box .program_time p.time1 {
  margin: 0 0 14vw 0;
}
.program_box .program_time p.time2 {
  margin: 0 0 20vw 0;
}
.program_box .program_time p.time3 {
  margin: 0 0 20vw 0;
}
.program_box .program_time p.time4 {
  margin: 0 0 20vw 0;
}
.program_box .program_time p.time5 {
  margin: 0 0 20vw 0;
}
.program_box .program_time p.time6 {
  margin: 0 0 0 0;
}
.program_box .program_text {
  width: 70%;
  height: auto;
  margin: 0 5% 0 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;
}
.program_box .program_text p {
  font-family: "notosansjp_bold";
  font-size: 1.4rem;
  color: #3F342D;
  text-align: center;
  line-height: 140%;
  border-radius: 1rem;
  height: 20vw;
  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;
}
.program_box .program_text p.text1 {
  width: 100%;
  color: #1BC18E;
  background-color: #BDEDDE;
}
.program_box .program_text p.text2 {
  width: 100%;
  color: #ffffff;
  background-color: #1BC18E;
}
.program_box .program_text p.text3 {
  width: 100%;
  color: #1BC18E;
  background-color: #BDEDDE;
}
.program_box .program_text p.text4 {
  width: 100%;
  color: #ffffff;
  background-color: #1BC18E;
}
.program_box .program_text p.text5 {
  width: 100%;
  color: #1BC18E;
  background-color: #BDEDDE;
}

.program_list_box section {
  background-color: #FCFAE8;
  border: #F9DB00 4px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3rem 2rem;
  margin: 0 0 2rem 0;
}
.program_list_box section h4.program_title {
  margin: 0 0 1rem 0;
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: linear-gradient(to right, #F9DB00 3px, transparent 3px);
  background-size: 8px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.program_list_box section h4.program_title2 {
  margin: 0 0 1.5rem 0;
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 120%;
}
.program_list_box section h4.program_title2 span {
  font-size: 1.8rem;
}
.program_list_box section .program_text_bold {
  font-weight: bold;
  margin: 0;
}
.program_list_box section .program_link {
  background: url("../img/icon_arrow_btn.svg") no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
  background-color: #1BC18E;
  border: #1BC18E 2px solid;
  border-radius: 3rem;
  width: auto;
  height: auto;
  margin: 0 auto 0 auto;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: normal;
}

.access_box {
  width: 100%;
}
.access_box .access_box_left .access_box_tel {
  background-color: #FCFAE8;
  padding: 1rem;
  width: 100%;
  font-family: "notosansjp_bold";
  font-weight: bold;
  color: #3F342D;
  font-size: 1.2rem;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.access_box .access_box_left .access_box_tel span {
  font-size: 1.8rem;
}
.access_box .access_box_left .access_box_tel span a {
  color: #3F342D;
  text-decoration: none;
}
.access_box .access_box_left .access_box_tel span::before {
  font-family: "fontello";
  content: "\e80e";
  margin: 0 0.5rem 0 0;
  color: #F9DB00;
}
.access_box .access_box_left .access_box_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: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.access_box .access_box_left .access_emphasis_text {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.6rem;
  color: #3F342D;
}
.access_box .access_box_left .access_emphasis_text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
  background: linear-gradient(transparent 70%, #F9DB00 30%);
}
.access_box .access_box_right .map_img {
  width: 100%;
  height: auto;
  margin: 0 0 2rem 0;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  ul.rework_list {
    list-style-type: none;
    width: 1200px;
    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;
    margin: 105px 0 0 0;
  }
  ul.rework_list li {
    width: 382px;
    height: 160px;
    margin: 0 0 0 0;
    padding: 65px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  ul.rework_list li .rl_title {
    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;
    color: #ffffff;
    width: 342px;
    height: 90px;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    margin: -115px auto 20px auto;
  }
  ul.rework_list li .rl_text {
    width: 80%;
    margin: 0 auto 0 auto;
  }
  ul.rework_list li.blue {
    background-color: #E3F3F9;
  }
  ul.rework_list li.blue .rl_title {
    background-color: #3BAEDA;
  }
  ul.rework_list li.red {
    background-color: #F9E4E6;
  }
  ul.rework_list li.red .rl_title {
    background-color: #DB4455;
  }
  ul.rework_list li.green {
    background-color: #E2F5F0;
  }
  ul.rework_list li.green .rl_title {
    background-color: #36BC9B;
  }
  ul.home_list {
    list-style-type: none;
    width: 1080px;
    margin: 0 auto 0 auto;
  }
  ul.home_list li {
    text-align: center;
    padding: 40px 40px 25px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    margin: 0 0 20px 0;
    overflow: hidden;
  }
  ul.home_list li .hl_title {
    margin: 0 0 20px 0;
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    text-align: center;
    padding: 0 0 11px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  ul.home_list li .hl_title::before {
    content: "";
    width: 36px;
    height: 31.56px;
    display: inline-block;
    margin: 0 12px -8px 0;
  }
  ul.home_list li .hl_text {
    margin: 0 0 0 0;
    line-height: 190%;
  }
  ul.home_list li .img_home {
    float: right;
    margin: 0 0 0 20px;
  }
  ul.home_list li .img_home img {
    width: 300px;
    height: auto;
  }
  ul.home_list li.left .img_home {
    float: left;
    margin: 0 20px 0 0;
  }
  ul.home_list li.left .img_home img {
    width: 300px;
    height: auto;
  }
  ul.home_list li.orange {
    background-color: #FCEBC9;
  }
  ul.home_list li.orange .hl_title {
    background-image: linear-gradient(to right, #F6BB43 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  ul.home_list li.orange .hl_title::before {
    width: 36px;
    height: 31.56px;
    background: url("../img/icon_01.svg") no-repeat;
    background-size: contain;
  }
  ul.home_list li.red {
    background-color: #FBE7E3;
  }
  ul.home_list li.red .hl_title {
    background-image: linear-gradient(to right, #E9573E 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  ul.home_list li.red .hl_title::before {
    width: 36px;
    height: 36px;
    background: url("../img/icon_02.svg") no-repeat;
    background-size: contain;
  }
  ul.home_list li.pink {
    background-color: #F9E3F0;
  }
  ul.home_list li.pink .hl_title {
    background-image: linear-gradient(to right, #D83C97 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  ul.home_list li.pink .hl_title::before {
    width: 29px;
    height: 36px;
    background: url("../img/icon_03.svg") no-repeat;
    background-size: contain;
  }
  ul.home_list li.green {
    background-color: #E1F2EE;
  }
  ul.home_list li.green .hl_title {
    background-image: linear-gradient(to right, #30A78A 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  ul.home_list li.green .hl_title::before {
    width: 36px;
    height: 30px;
    background: url("../img/icon_04.svg") no-repeat;
    background-size: contain;
  }
  ul.home_list li.bule {
    background-color: #E3F0F9;
  }
  ul.home_list li.bule .hl_title {
    background-image: linear-gradient(to right, #3B9ADA 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  ul.home_list li.bule .hl_title::before {
    width: 36px;
    height: 31px;
    background: url("../img/icon_05.svg") no-repeat;
    background-size: contain;
  }
  .step_box {
    width: 100%;
    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;
    overflow: visible;
    padding: 0 0 40px 0;
    margin: 100px 0 0 0;
  }
  .step_box .step_arrow {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .step_box .step_arrow .step_title {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 4.8rem;
    text-align: center;
  }
  .step_box .step_arrow .step_sub_title {
    text-align: center;
  }
  .step_box .step_arrow .step_sub_title span {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
    border-bottom: #3F342D 1px solid;
  }
  .step_box .step_arrow ul.arrow_list {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 1.8rem;
    width: 210px;
    margin: 0 auto 0 auto;
  }
  .step_box .step_arrow ul.arrow_list li {
    margin: 0 0 1rem 1.8rem;
    padding: 0;
  }
  .step_box .step_arrow.pink {
    margin: 0 0 3rem 0;
    padding: 0 0 0 0;
    width: 350px;
    height: 350px;
    background: url("../img/arrow_bg_pink_pc.svg") no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .step_box .step_arrow.pink .step_title {
    color: #F7D1CA;
  }
  .step_box .step_arrow.orange {
    margin: 0 0 0 -21px;
    padding: 0 0 0 0;
    width: 380px;
    height: 350px;
    background: url("../img/arrow_bg_orange_pc.svg") no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .step_box .step_arrow.orange .step_title {
    color: #F9D89E;
  }
  .step_box .step_arrow.blue {
    margin: 0 0 0 -20px;
    padding: 0 0 0 0;
    width: 480px;
    height: 350px;
    background: url("../img/arrow_bg_blue_pc.svg") no-repeat;
    background-position: center center;
    background-size: contain;
    position: relative;
    overflow: visible;
  }
  .step_box .step_arrow.blue .step_title {
    color: #C6E5DE;
  }
  .step_box .step_arrow.blue ul.arrow_list {
    width: 290px;
  }
  .step_box .step_arrow.blue .arrow_job {
    position: absolute;
    right: -32px;
    bottom: -65px;
    width: 303px;
    height: 131px;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3.6rem;
    color: #3F342D;
    background: url("../img/step_job_arrow.svg") no-repeat;
    background-size: cover;
    background-position: right center;
    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;
    margin: 0;
    padding: 0 0 0 35px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .step_arrow_text {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    margin: -55px 0 0 0;
    line-height: 180%;
  }
  .course_box {
    background-color: #FCFAE8;
    padding: 40px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 30px;
  }
  .course_box .course_title_box {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3rem;
    margin: 0 0 25px 0;
    width: 100%;
    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;
  }
  .course_box .course_title_box .course_title {
    color: #ffffff;
    background-color: #1BC18E;
    padding: 12px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    width: 306px;
    text-align: center;
  }
  .course_box .course_title_box .course_title_step {
    color: #3F342D;
    background-color: #BDEDDE;
    padding: 12px 20px 12px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    width: auto;
  }
  .program_box {
    width: 1200px;
    height: 225px;
    background-color: #FEF9DA;
    border-radius: 30px;
    padding: 30px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    margin: 0 0 20px 0;
  }
  .program_box .program_time {
    width: 1140px;
    height: 35px;
    margin: 0 auto 0 auto;
    position: relative;
  }
  .program_box .program_time p {
    font-family: "notosansjp_bold";
    font-size: 2.4rem;
    color: #3F342D;
    letter-spacing: 0;
  }
  .program_box .program_time p.time1 {
    position: absolute;
    top: 0;
    left: 28px;
    margin: 0;
  }
  .program_box .program_time p.time2 {
    position: absolute;
    top: 0;
    left: 196px;
    margin: 0;
  }
  .program_box .program_time p.time3 {
    position: absolute;
    top: 0;
    left: 464px;
    margin: 0;
  }
  .program_box .program_time p.time4 {
    position: absolute;
    top: 0;
    right: 444px;
    margin: 0;
  }
  .program_box .program_time p.time5 {
    position: absolute;
    top: 0;
    right: 180px;
    margin: 0;
  }
  .program_box .program_time p.time6 {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .program_box .program_text {
    width: 1087px;
    height: 108px;
    margin: 16px auto 0 auto;
    position: relative;
    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;
  }
  .program_box .program_text p {
    font-family: "notosansjp_bold";
    font-size: 2.4rem;
    color: #3F342D;
    text-align: center;
    line-height: 140%;
    border-radius: 10px;
    height: 108px;
    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;
  }
  .program_box .program_text p.text1 {
    width: 190px;
    color: #1BC18E;
    background-color: #BDEDDE;
  }
  .program_box .program_text p.text2 {
    width: 250px;
    color: #ffffff;
    background-color: #1BC18E;
  }
  .program_box .program_text p.text3 {
    width: 140px;
    color: #1BC18E;
    background-color: #BDEDDE;
  }
  .program_box .program_text p.text4 {
    width: 250px;
    color: #ffffff;
    background-color: #1BC18E;
  }
  .program_box .program_text p.text5 {
    width: 177px;
    color: #1BC18E;
    background-color: #BDEDDE;
  }
  .program_list_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;
  }
  .program_list_box section {
    width: 590px;
    height: 282px;
    background-color: #FCFAE8;
    border: #F9DB00 4px solid;
    border-radius: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 40px 45px 0 45px;
    margin: 0 0 20px 0;
  }
  .program_list_box section h4.program_title {
    margin: 0 0 30px 0;
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0 25px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-image: linear-gradient(to right, #F9DB00 3px, transparent 3px);
    background-size: 8px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .program_list_box section h4.program_title2 {
    margin: 0 0 25px 0;
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 120%;
  }
  .program_list_box section h4.program_title2 span {
    font-size: 3rem;
  }
  .program_list_box section .program_text {
    margin: 0 0 20px 0;
  }
  .program_list_box section .program_text_bold {
    font-weight: bold;
    margin: 0;
  }
  .program_list_box section .program_link {
    background: url("../img/icon_arrow_btn.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    background-color: #1BC18E;
    border: #1BC18E 2px solid;
    border-radius: 4rem;
    width: 380px;
    height: auto;
    margin: 0 auto 0 auto;
    text-align: left;
    text-decoration: none;
    padding: 20px 80px 20px 80px;
    line-height: 120%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: normal;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .program_list_box section .program_link:hover {
    background: url("../img/icon_arrow_btn_hover.svg") no-repeat;
    background-position: right 20px center;
    background-size: 18px;
    border: #1BC18E 2px solid;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #1BC18E;
  }
  .access_box {
    width: 100%;
    /*
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction:row;
    flex-direction:row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; 
    */
  }
  .access_box .access_box_left {
    /*width: 570px;*/
    width: 100%;
  }
  .access_box .access_box_left .access_box_tel {
    background-color: #FCFAE8;
    padding: 30px;
    width: 570px;
    font-family: "notosansjp_bold";
    font-weight: bold;
    color: #3F342D;
    font-size: 2.4rem;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .access_box .access_box_left .access_box_tel span {
    font-size: 2.6rem;
  }
  .access_box .access_box_left .access_box_tel span a {
    color: #3F342D;
    text-decoration: none;
  }
  .access_box .access_box_left .access_box_tel span::before {
    font-family: "fontello";
    content: "\e80e";
    margin: 0 10px 0 0;
    color: #F9DB00;
  }
  .access_box .access_box_left .access_box_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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .access_box .access_box_left .access_emphasis_text {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 2.4rem;
    color: #3F342D;
  }
  .access_box .access_box_left .access_emphasis_text span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
    background: linear-gradient(transparent 70%, #F9DB00 30%);
  }
  .access_box .access_box_right {
    width: 570px;
  }
  .access_box .access_box_right .map_img {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
リワーク改定
----------------------------------------------------------- */
ul.rework_list2 {
  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;
}
ul.rework_list2 li {
  width: 49%;
  margin: 0 0 1rem 0;
  background-color: #3BAEDA;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 120%;
  padding: 1rem 0;
  border-radius: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.rework_course {
  margin: 0 0 4rem 0;
}
.rework_course .rework_course_title {
  margin: 0 0 2rem 0;
  color: #ffffff;
  line-height: 120%;
  padding: 1rem 0;
  border-radius: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.rework_course .rework_course_title p {
  font-family: "notosansjp_medium";
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  margin: 0;
}
.rework_course .rework_course_title span {
  font-size: 1.4rem;
}
.rework_course .rework_course_content .rework_course_content_title {
  font-family: "notosansjp_medium";
  font-weight: bold;
  font-size: 2.2rem;
  padding: 0.5rem 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 1rem 0;
}
.rework_course .rework_course_content .rework_course_content_title span {
  font-size: 1.4rem;
}
.rework_course .rework_course_content .rework_course_content_text {
  padding: 0.5rem 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
.rework_course.green .rework_course_title {
  background-color: #36BC9B;
}
.rework_course.green .rework_course_content .rework_course_content_title {
  background-color: #E1F2EE;
}
.rework_course.bule .rework_course_title {
  background-color: #3BAEDA;
}
.rework_course.bule .rework_course_content .rework_course_content_title {
  background-color: #E3F3F9;
}
.rework_course.pink .rework_course_title {
  background-color: #E66373;
}
.rework_course.pink .rework_course_content .rework_course_content_title {
  background-color: #F9E4E6;
}
.rework_course.orange .rework_course_title {
  background-color: #F6BB43;
}
.rework_course.orange .rework_course_content .rework_course_content_title {
  background-color: #FCEBC9;
}

.rework_program {
  background-color: #E4F9C4;
  border-radius: 1rem;
  padding: 2rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.rework_program section h4.rework_subtitle {
  margin: 0 0 1rem 0;
  color: #3F342D;
  font-family: "notosansjp_bold";
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-align: center;
  padding: 0 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.rework_program section h4.rework_subtitle span {
  padding: 0 0 0.5rem 0;
  background-image: linear-gradient(to right, #F6BB43 3px, transparent 3px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.rework_program .example {
  border: #9FDB46 1px solid;
  border-radius: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
}
.rework_program .example .example_title {
  background-color: #9FDB46;
  color: #ffffff;
  font-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  padding: 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  margin: 0;
}
.rework_program .example .example_text {
  background-color: #ffffff;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  line-height: 120%;
}
.rework_program.rp_thin {
  background-color: #EFFBDD;
}

dl.rework_guidance {
  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-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
}
dl.rework_guidance dt {
  width: 15%;
  background-color: #9FDB46;
  color: #ffffff;
  margin: 0 0 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;
  border: #9FDB46 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.rework_guidance dd {
  width: 85%;
  margin: 0 0 2rem 0;
  padding: 1rem;
  border-top: #9FDB46 1px solid;
  border-bottom: #9FDB46 1px solid;
  border-right: #9FDB46 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.rework_guidance dd p.mb_none {
  margin: 0;
}

dl.rework_voice {
  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-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
}
dl.rework_voice dt {
  width: 20%;
  color: #ffffff;
  margin: 0 0 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-sizing: border-box;
          box-sizing: border-box;
}
dl.rework_voice dd {
  width: 80%;
  margin: 0 0 2rem 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
dl.rework_voice dd p {
  background-color: #EFFBDD;
  margin: 0;
  position: relative;
  padding: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1rem;
  width: 90%;
  margin: 0 0 0 10%;
}
dl.rework_voice dd p::before {
  position: absolute;
  top: calc(50% - 2rem);
  left: -1.6rem;
  content: "";
  width: 3rem;
  height: 4rem;
  background: url("../img/rework_arrow.svg") no-repeat;
  background-size: contain;
  background-position: right;
}

@media screen and (min-width: 768px), print {
  .about_frame {
    width: 900px;
    margin: 0 auto 50px auto;
  }
  .bf_left {
    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;
  }
  .bf_left .img_right {
    float: none;
    margin: 0 20px 20px 0;
  }
  ul.rework_list2 {
    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;
  }
  ul.rework_list2 li {
    width: 282px;
    height: 120px;
    margin: 0 0 36px 0;
    background-color: #3BAEDA;
    color: #ffffff;
    font-size: 2.4rem;
    text-align: center;
    line-height: 120%;
    padding: 1rem 0;
    border-radius: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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;
  }
  .rework_course {
    margin: 0 0 40px 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;
  }
  .rework_course .rework_course_title {
    width: 280px;
    height: 200px;
    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;
    margin: 0 0 0 0;
    color: #ffffff;
    line-height: 120%;
    padding: 0 0;
    border-radius: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .rework_course .rework_course_title p {
    font-family: "notosansjp_medium";
    font-weight: bold;
    font-size: 3.6rem;
    text-align: center;
    margin: 0;
    line-height: 120%;
  }
  .rework_course .rework_course_title span {
    font-size: 2.4rem;
    display: block;
  }
  .rework_course .rework_course_content {
    width: 880px;
  }
  .rework_course .rework_course_content .rework_course_content_title {
    width: 100%;
    height: 70px;
    font-family: "notosansjp_medium";
    font-weight: bold;
    font-size: 3.6rem;
    padding: 0 0 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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-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;
  }
  .rework_course .rework_course_content .rework_course_content_title span {
    font-size: 2.4rem;
  }
  .rework_course .rework_course_content .rework_course_content_text {
    padding: 0.5rem 0.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
  }
  .rework_course.green .rework_course_title {
    background-color: #36BC9B;
  }
  .rework_course.green .rework_course_content .rework_course_content_title {
    background-color: #E1F2EE;
  }
  .rework_course.bule .rework_course_title {
    background-color: #3BAEDA;
  }
  .rework_course.bule .rework_course_content .rework_course_content_title {
    background-color: #E3F3F9;
  }
  .rework_course.pink .rework_course_title {
    background-color: #E66373;
  }
  .rework_course.pink .rework_course_content .rework_course_content_title {
    background-color: #F9E4E6;
  }
  .rework_course.orange .rework_course_title {
    background-color: #F6BB43;
  }
  .rework_course.orange .rework_course_content .rework_course_content_title {
    background-color: #FCEBC9;
  }
  .rework_program {
    background-color: #E4F9C4;
    border-radius: 10px;
    padding: 30px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    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;
  }
  .rework_program section {
    width: 690px;
  }
  .rework_program section h4.rework_subtitle {
    margin: 7px 0 20px 0;
    color: #3F342D;
    font-family: "notosansjp_bold";
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    text-align: center;
    padding: 0 0 16px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.1em;
  }
  .rework_program section h4.rework_subtitle span {
    padding: 0 0 10px 0;
    background-image: linear-gradient(to right, #F6BB43 3px, transparent 3px);
    background-size: 10px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .rework_program section p {
    line-height: 180%;
  }
  .rework_program .example {
    width: 420px;
    height: 170px;
    border: #9FDB46 1px solid;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    background-color: #ffffff;
  }
  .rework_program .example .example_title {
    background-color: #9FDB46;
    color: #ffffff;
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    padding: 4px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin: 0;
    height: 36px;
  }
  .rework_program .example .example_text {
    padding: 17px 36px 0 36px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    line-height: 170%;
    font-size: 1.8rem;
  }
  .rework_program.rp_thin {
    background-color: #EFFBDD;
  }
  dl.rework_guidance {
    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-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
  }
  dl.rework_guidance dt {
    width: 15%;
    background-color: #9FDB46;
    color: #ffffff;
    margin: 0 0 20px 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;
    border: #9FDB46 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 3rem;
  }
  dl.rework_guidance dd {
    width: 85%;
    margin: 0 0 20px 0;
    padding: 20px;
    border-top: #9FDB46 1px solid;
    border-bottom: #9FDB46 1px solid;
    border-right: #9FDB46 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.rework_guidance dd p.mb_none {
    margin: 0;
  }
  dl.rework_voice {
    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-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    width: 1200px;
  }
  dl.rework_voice dt {
    width: 100px;
    color: #ffffff;
    margin: 0 0 14px 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-sizing: border-box;
            box-sizing: border-box;
  }
  dl.rework_voice dd {
    width: 1090px;
    margin: 0 0 14px 0;
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  dl.rework_voice dd p {
    background-color: #EFFBDD;
    margin: 5px 0 0 0;
    position: relative;
    padding: 25px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    width: 1070px;
    margin: 0 0 0 20px;
  }
  dl.rework_voice dd p::before {
    position: absolute;
    top: 25px;
    left: -17px;
    content: "";
    width: 34px;
    height: 34px;
    background: url("../img/rework_arrow.svg") no-repeat;
    background-size: contain;
    background-position: right;
  }
}
/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #FDF4B6;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3F342D;
  border-top: #F9DB00 1px solid;
  border-left: #F9DB00 1px solid;
  border-right: #F9DB00 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: #F9DB00 1px solid;
  border-left: #F9DB00 1px solid;
  border-right: #F9DB00 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: #F9DB00 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: #FDF4B6;
    padding: 1.5rem 1rem 1.5rem 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #F9DB00 1px solid;
    border-left: #F9DB00 1px solid;
    border-right: #F9DB00 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: #F9DB00 1px solid;
    border-left: #F9DB00 1px solid;
    border-right: #F9DB00 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;
  }
}
/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "notosansjp_medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #3F342D;
  background-color: #ffffff;
  padding: 0 0 13vw 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
}

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

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

.main {
  height: auto;
  width: 100%;
  margin: 0 0 5rem 0;
  padding: 0;
  position: relative;
  z-index: 99;
}

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

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 0 80px 0;
    padding: 0;
    position: relative;
    z-index: 99;
  }
  .main_low {
    height: auto;
    width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  padding: 2vw 0 1rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9999;
  background-color: #ffffff;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 16vw;
  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;
  /*ハンバーガー*/
}
header.header .header_box .header_top .container {
  width: 15%;
}
header.header .header_box .header_top {
  /*ロゴ*/
}
header.header .header_box .header_top .head_logo {
  width: 75%;
  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;
  margin: 6vw 0 0 0;
}
header.header .header_box {
  /*ヘッダー情報*/
}
header.header .header_box .header_info {
  display: none;
}

@media screen and (min-width: 768px), print {
  header.header {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 999;
    width: 1200px;
    height: 180px;
    margin: 20px auto 0 auto;
    border-radius: 60px;
  }
  header.header .header_box {
    width: 1080px;
    height: 73px;
    margin: 0 auto;
    position: relative;
    /*ロゴとハンバーガー*/
  }
  header.header .header_box .header_top {
    width: 550px;
    height: 120px;
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*ハンバーガー*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top {
    /*ロゴ*/
  }
  header.header .header_box .header_top .head_logo {
    width: 570px;
    margin: 13px 0 0 3px;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 570px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 570px;
    height: auto;
    margin: 0;
  }
  header.header .header_box {
    /*ヘッダー情報*/
  }
  header.header .header_box .header_info {
    margin: 0;
    width: 320px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*住所*/
  }
  header.header .header_box .header_info .header_address {
    width: 320px;
    font-family: "notosansjp_regular";
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 100%;
    text-align: right;
    margin: 19px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -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;
  }
  header.header .header_box .header_info .header_address::before {
    content: "";
    display: block;
    width: 20px;
    height: 24px;
    background: url("../img/icon_location.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 1px 10px 0 0;
  }
  header.header .header_box .header_info {
    /*電話番号*/
  }
  header.header .header_box .header_info .header_tel {
    margin: 2px 0 0 0;
    width: auto;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -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: right;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3.6rem;
    color: #3F342D;
    letter-spacing: 0.01em;
    line-height: 100%;
  }
  header.header .header_box .header_info .header_tel i {
    font-size: 3.2rem;
    color: #F9DB00;
    margin: 0 3px 0 0;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 950px;
    height: 36px;
    margin: 34px auto 0 auto;
    position: relative;
    z-index: 99999999;
  }
  nav.main_nav_pc ul {
    width: 950px;
    height: 36px;
    margin: 0 auto;
    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: 36px;
    margin: 0;
    padding: 0;
    position: relative;
  }
  nav.main_nav_pc ul li::after {
    content: "";
    width: 1px;
    height: 30px;
    display: block;
    position: absolute;
    top: 20px;
    right: 0;
  }
  nav.main_nav_pc ul li:last-child::after {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li.return a span::after, nav.main_nav_pc ul li.treatment a span::after, nav.main_nav_pc ul li.disease a span::after {
    font-family: "fontello";
    font-size: 2rem;
    content: "\e80b";
    margin: 0 0 0 4px;
  }
  nav.main_nav_pc ul li.return ul li a::after, nav.main_nav_pc ul li.treatment ul li a::after, nav.main_nav_pc ul li.disease ul li a::after {
    content: "";
    margin: 0;
  }
  nav.main_nav_pc ul li.return:hover, nav.main_nav_pc ul li.treatment:hover, nav.main_nav_pc ul li.disease:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc ul li.return:hover a span::after, nav.main_nav_pc ul li.treatment:hover a span::after, nav.main_nav_pc ul li.disease:hover a span::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin: 0 0 0 4px;
  }
  nav.main_nav_pc ul li {
    /*
          &.home{
            width: 160px;
          }
          &.clinic{
            width: 232px;    
          }

          &.access{
            width: 174px;    
          }
    */
  }
  nav.main_nav_pc ul li.return {
    width: 125px;
  }
  nav.main_nav_pc ul li.treatment {
    width: 144px;
  }
  nav.main_nav_pc ul li.disease {
    width: 144px;
  }
  nav.main_nav_pc ul li.current a span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F9DB00;
  }
  nav.main_nav_pc ul li a {
    width: 100%;
    height: 70px;
    text-decoration: none;
    text-align: center;
    color: #3F342D;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 0;
    letter-spacing: 0.05em;
    font-family: "notosansjp_semibold";
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    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;
    position: relative;
  }
  nav.main_nav_pc ul li a span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 4px;
    padding: 8px 12px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  nav.main_nav_pc ul li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: 8px;
  }
  nav.main_nav_pc ul li a:hover span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #F9DB00;
  }
  nav.main_nav_pc ul li .sub_nav_box {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 300px;
    margin: 0 0 0 -80px;
  }
  nav.main_nav_pc ul li .sub_nav_box ul {
    all: initial;
    width: 300px;
    height: auto;
    margin: 0 0 0 0;
    padding: 10px 0;
    position: relative;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 9999;
    background-color: #F9DB00;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -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;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li {
    all: initial;
    display: block;
    width: 280px;
    height: 50px;
    margin: 0 0 9px 0;
    padding: 0;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li::after {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a {
    all: initial;
    width: 100%;
    height: 50px;
    text-decoration: none;
    text-align: center;
    color: #3F342D;
    background-color: #F9DB00;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 10px;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "notosansjp_regular";
    font-weight: 500;
    font-size: 1.8rem;
    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;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a::before {
    content: "";
    display: none;
  }
  nav.main_nav_pc ul li .sub_nav_box ul li a:hover {
    cursor: pointer;
    cursor: hand;
    opacity: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #FDF4B6;
  }
  nav.main_nav_pc ul li:hover {
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.main_nav_pc ul li:hover .sub_nav_box {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav_add {
    width: 100% !important;
    height: 70px !important;
    margin: 0 !important;
    background-color: #ffffff;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 9999999999 !important;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 70vw;
}
.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_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 70vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.key_visual .key_contents .key_text_box {
  width: 96%;
  margin: 16vw auto 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(5%, rgb(255, 255, 255)), color-stop(95%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.9) 95%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: #138965 1px solid;
  border-bottom: #138965 1px solid;
}
.key_visual .key_contents .key_text_box .key_text {
  font-family: "notosansjp_semibold";
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  line-height: 140%;
  color: #138965;
  margin: 0 0 0.5rem 0;
  display: inline-block;
  padding: 0.5rem;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  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: "notosansjp_bold";
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #3F342D;
  line-height: 160%;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 920px;
    margin: -200px 0 0 0;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 920px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 920px;
  }
  .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_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 1200px;
    height: 920px;
    margin: 0 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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .key_visual .key_contents .key_text_box {
    width: 1080px;
    height: 120px;
    margin: 400px auto 0 auto;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(5%, rgb(255, 255, 255)), color-stop(95%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.9) 95%, rgba(255, 255, 255, 0) 100%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top: #138965 1px solid;
    border-bottom: #138965 1px solid;
  }
  .key_visual .key_contents .key_text_box .key_text {
    font-family: "notosansjp_semibold";
    font-weight: bold;
    font-size: 3rem;
    line-height: 156%;
    letter-spacing: 0.1em;
    color: #138965;
    margin: 0 0 0 0;
    display: inline-block;
    padding: 12px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-shadow: 2px 2px 0 #ffffff;
    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 {
    width: 100%;
    height: 420px;
    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;
    margin: -200px 0 0 0;
    padding: 195px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .key_visual_low h1 {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 4.8rem;
    text-align: center;
    color: #3F342D;
    line-height: 160%;
    letter-spacing: 0.1em;
  }
}
/* -----------------------------------------------------------
診療時間表
----------------------------------------------------------- */
.top_timetable {
  width: 96%;
  margin: -5rem auto 0 auto;
  padding: 0.7rem 0 0.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.7rem;
  position: relative;
  z-index: 9999;
  background-color: #ffffff;
}
.top_timetable table.timetable {
  width: 96%;
  margin: 0 auto 0 auto;
}

@media screen and (min-width: 768px), print {
  .top_timetable {
    width: 1000px;
    margin: -210px auto 0 auto;
    padding: 30px 0 30px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
    position: relative;
    z-index: 9999;
    background-color: #ffffff;
  }
  .top_timetable table.timetable {
    width: 940px;
    margin: 0 auto 11px auto;
  }
  .top_timetable hr.top_timetable_line {
    width: 940px;
    margin: 0 auto;
  }
  .top_timetable dl.top_timetable_notice_list {
    margin: 18px auto 0 auto;
    width: 940px;
  }
  .top_timetable .top_timetable_notice {
    width: 940px;
    margin: 11px 0 12px 0;
  }
}
/* -----------------------------------------------------------
　お知らせ矢印画像
----------------------------------------------------------- */
.notice_frame_bg {
  width: 100%;
  margin: 8rem 0 2.7rem 0;
  background-color: #F5F5F5;
  overflow: visible;
  padding: 0 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame_bg .notice_frame {
  overflow: visible;
  position: relative;
  padding: 12rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice_frame_bg .notice_frame h2.notice_title {
  width: 15rem;
  height: 15rem;
  font-family: "notosansjp_bold";
  font-weight: normal;
  font-size: 2.2rem;
  text-align: center;
  background-color: #F9DB00;
  color: #3F342D;
  letter-spacing: 0.1em;
  margin: 0 auto 0 auto;
  border-radius: 2rem;
  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;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
}
.notice_frame_bg .notice_frame h2.notice_title span {
  font-size: 1.2rem;
  color: #ffffff;
  display: block;
  margin: 1rem 0 0 0;
}
.notice_frame_bg .notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 2rem auto 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;
  padding: 0 0 1.5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: #CCCCCC 1px solid;
}
.notice_frame_bg .notice_frame .notice_box dl dt {
  color: #3F342D;
  margin: 1rem 0 0 0;
  padding: 2rem 0 1rem 2rem;
  font-family: "notosansjp_semibold";
  font-weight: bold;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 120%;
  position: relative;
  border-top: #CCCCCC 1px solid;
  overflow: visible;
}
.notice_frame_bg .notice_frame .notice_box dl dt span {
  font-family: "notosansjp_regular";
  font-weight: normal;
  font-size: 1.2rem;
  display: block;
  margin: -0.5rem 0 0 -2rem;
}
.notice_frame_bg .notice_frame .notice_box dl dt::before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow_notice.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 3.6rem;
}
.notice_frame_bg .notice_frame .notice_box dl dt.open::before {
  content: "";
}
.notice_frame_bg .notice_frame .notice_box dl dt.close::before {
  content: "";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.notice_frame_bg .notice_frame .notice_box dl dt:first-child {
  border-top: none;
}
.notice_frame_bg .notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  color: #3F342D;
  font-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 120%;
  display: none;
}
.notice_frame_bg .notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_frame_bg .notice_frame .notice_box dl dd p {
  font-family: "notosansjp_medium";
}
.notice_frame_bg .notice_frame .notice_box dl dd p a {
  color: #3F342D;
}

@media screen and (min-width: 768px), print {
  .notice_frame_bg {
    width: 100%;
    margin: 138px 0 0 0;
    background-color: #F5F5F5;
    overflow: visible;
    padding: 0 0 130px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_bg .notice_frame {
    width: 1200px;
    margin: 0 auto 0 auto;
    overflow: visible;
    position: relative;
    padding: 60px 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;
  }
  .notice_frame_bg .notice_frame h2.notice_title {
    width: 280px;
    height: 280px;
    font-family: "notosansjp_bold";
    font-weight: normal;
    font-size: 4.8rem;
    text-align: center;
    background-color: #F9DB00;
    color: #3F342D;
    letter-spacing: 0.1em;
    margin: 0 0 0 0;
    border-radius: 30px;
    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;
    position: relative;
    top: -100px;
    left: 0;
    right: 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_bg .notice_frame h2.notice_title span {
    font-size: 2rem;
    color: #ffffff;
    display: block;
    margin: 16px 0 0 0;
    letter-spacing: 0.05em;
  }
  .notice_frame_bg .notice_frame .notice_box {
    width: 860px;
    height: auto;
    margin: 0 0 0 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .notice_frame_bg .notice_frame .notice_box dl {
    height: auto;
    margin: 0;
    width: 860px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 22px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #CCCCCC 1px solid;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt {
    color: #3F342D;
    margin: 20px 0 2px 0;
    padding: 50px 0 11px 26px;
    font-family: "notosansjp_semibold";
    font-weight: bold;
    font-size: 1.8rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-top: #CCCCCC 1px solid;
    overflow: visible;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt span {
    font-family: "notosansjp_regular";
    font-weight: normal;
    font-size: 1.6rem;
    display: block;
    margin: -20px 0 8px -26px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt::before {
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    background: url("../img/icon_arrow_notice.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 64px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt.open::before {
    content: "";
  }
  .notice_frame_bg .notice_frame .notice_box dl dt.close::before {
    content: "";
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 2px 26px;
    margin: 20px 0 11px 0;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:first-child::before {
    top: 35px;
  }
  .notice_frame_bg .notice_frame .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #707070;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd {
    margin: 0 0 24px 0;
    padding: 0 0 0 0;
    color: #3F342D;
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 200%;
    display: none;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p {
    font-family: "notosansjp_medium";
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    line-height: 200%;
  }
  .notice_frame_bg .notice_frame .notice_box dl dd p a {
    color: #3F342D;
  }
}
/* -----------------------------------------------------------
当院の特長
----------------------------------------------------------- */
.features_frame_bg {
  width: 100%;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.features_frame_bg .features_box_out {
  width: 88%;
  margin: 2rem auto 4rem auto;
}
.features_frame_bg .features_box_out img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 1rem;
  margin: 0 auto 1rem auto;
}
.features_frame_bg .features_box_out img.first {
  width: 50%;
  height: auto;
  margin: -30vw 0 0 50%;
  position: relative;
  z-index: 2;
}
.features_frame_bg .features_box_out .features_box h3.features_title {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 140%;
}
.features_frame_bg .features_box_out .features_box h3.features_title .num {
  font-family: "montserrat_bold";
  font-weight: normal;
  font-size: 6rem;
  color: #F9DB00;
  display: block;
  line-height: 140%;
}
.features_frame_bg .features_box_out .features_box h3.features_title .line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
  background: linear-gradient(transparent 70%, #F9DB00 30%);
}
.features_frame_bg .features_box_out .features_box .features_box_text {
  font-weight: "notosansjp_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.4rem;
  line-height: 140%;
  margin: 2rem 0 1rem 0;
}
.features_frame_bg .features_box_out.fbo_first {
  padding: 60vw 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.features_frame_bg .features_box_out.fbo_first::before {
  content: "";
  width: 90%;
  height: 50vw;
  display: block;
  background: url("../img/index_feature_01_bg.jpg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: -10%;
  z-index: 2;
  border-radius: 1rem;
}
.features_frame_bg .features_box_out.fbo_first::after {
  content: "";
  display: block;
  width: 120%;
  height: 90%;
  position: absolute;
  z-index: -1;
  top: 10%;
  left: -10%;
  background-color: #FCFAE8;
}
.features_frame_bg .features_box_out.fbo_four {
  padding: 0 0 70vw 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.features_frame_bg .features_box_out.fbo_four::before {
  content: "";
  width: 70%;
  height: 60vw;
  display: block;
  background: url("../img/index_feature_04_bg.png") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.features_frame_bg .features_box_out.fbo_four::after {
  content: "";
  display: block;
  width: 120%;
  height: 90%;
  position: absolute;
  z-index: -1;
  top: 10%;
  left: -10%;
  background-color: #FCFAE8;
}

@media screen and (min-width: 768px), print {
  .features_frame_bg {
    width: 100%;
    padding: 62px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 0 0;
    position: relative;
  }
  .features_frame_bg h2.feature_title {
    position: absolute;
    top: 188px;
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0 -636px 0 0;
  }
  .features_frame_bg .features_box_out {
    width: 1200px;
    height: 388px;
    margin: 45px 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;
    position: relative;
  }
  .features_frame_bg .features_box_out img {
    width: 570px;
    height: 388px;
    display: block;
    border-radius: 30px;
    margin: 0;
    position: relative;
    z-index: 2;
  }
  .features_frame_bg .features_box_out img.first {
    width: 400px;
    height: 380px;
    margin: 0 0 0 0;
    position: relative;
    top: 104px;
    right: -220px;
    z-index: 2;
  }
  .features_frame_bg .features_box_out img.four {
    width: 710px;
    height: 528px;
    position: absolute;
    bottom: 60px;
    left: auto;
    right: -403px;
    margin: 0;
  }
  .features_frame_bg .features_box_out .features_box {
    width: 570px;
    height: 388px;
    overflow: visible;
    margin: 0;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .features_frame_bg .features_box_out .features_box h3.features_title {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3.6rem;
    line-height: 134%;
    margin: 3px 0 0 0;
    letter-spacing: 0.1em;
  }
  .features_frame_bg .features_box_out .features_box h3.features_title .num {
    font-family: "montserrat_bold";
    font-weight: normal;
    font-size: 12rem;
    color: #F9DB00;
    display: block;
    line-height: 100%;
    margin: 0 0 20px 0;
  }
  .features_frame_bg .features_box_out .features_box h3.features_title .line {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
    background: linear-gradient(transparent 70%, #F9DB00 30%);
  }
  .features_frame_bg .features_box_out .features_box .features_box_text {
    font-weight: "notosansjp_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;
    line-height: 190%;
    margin: 29px 0 0 0;
  }
  .features_frame_bg .features_box_out.fbo_first {
    margin: 58px auto 0 auto;
    padding: 228px 0 82px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 1;
    height: 826px;
  }
  .features_frame_bg .features_box_out.fbo_first::before {
    content: "";
    width: 940px;
    height: 640px;
    display: block;
    background: url("../img/index_feature_01_bg.jpg") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -400px;
    z-index: 2;
    border-radius: 30px;
  }
  .features_frame_bg .features_box_out.fbo_first::after {
    content: "";
    display: block;
    width: 200%;
    height: 690px;
    position: absolute;
    z-index: -1;
    top: 100px;
    left: -50%;
    background-color: #FCFAE8;
  }
  .features_frame_bg .features_box_out.fbo_first .features_box {
    width: 460px;
    height: 388px;
    margin: 0 60px 0 0;
  }
  .features_frame_bg .features_box_out.fbo_four {
    height: 466px;
    padding: 0 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 200px auto 0 auto;
    position: relative;
    z-index: 1;
  }
  .features_frame_bg .features_box_out.fbo_four::before {
    content: "";
    width: 516px;
    height: 508px;
    display: block;
    background: url("../img/index_feature_04_bg.png") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 84px;
    left: -205px;
    right: auto;
    margin: 0 0 0 0;
  }
  .features_frame_bg .features_box_out.fbo_four::after {
    content: "";
    display: block;
    width: 200%;
    height: 468px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: -50%;
    background-color: #FCFAE8;
  }
  .features_frame_bg .features_box_out.fbo_four .features_box {
    width: 460px;
    height: 388px;
    margin: 0 auto 0 auto;
  }
  .features_frame_bg .features_box_out.fbo_four .features_box h3.features_title span.num {
    margin: -53px 0 23px 150px;
  }
  .features_frame_bg .features_box_out.fbo_left img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features_frame_bg .features_box_out.fbo_left .features_box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .features_frame_bg .features_box_out.fbo_right img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .features_frame_bg .features_box_out.fbo_right .features_box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .features_frame_bg .features_box_out.fbo03 {
    margin: 77px auto 0 auto;
  }
  .features_frame_bg .features_box_out.fbo05 {
    margin: 77px auto 0 auto;
  }
  .features_frame_bg .features_box_out.fbo06 {
    margin: 77px auto 120px auto;
  }
  .features_frame_bg .features_box_out {
    /*
    &.fbo_left{
      img{
        position: absolute;
        top: 0;
        left: 0;
      }
      .features_box{
        position: absolute;
        top: 0;
        right: 57px;          
      }        
    }
    &.fbo_right{
      img{
        position: absolute;
        top: 0;
        right: 0;
      }
      .features_box{
        position: absolute;
        top: 0;
        left: 57px;         
        hr{
          width: 1043px;
          position: absolute;
          left: 0;
          z-index: 1;;
        }          
      }           
    }
      */
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame_bg {
  width: 100%;
  background: url("../img/index_treatment_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 4.5rem 0 3rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box {
  width: 90%;
  margin: 2rem auto 2rem auto;
  background-color: #FCFAE8;
  border-radius: 2rem;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box {
  background-color: #ffffff;
  padding: 0 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box .treatment_title {
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 140%;
  text-align: center;
  color: #3F342D;
  margin: 0 0 1.5rem 0;
  padding: 2rem 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box .treatment_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
  background: linear-gradient(transparent 70%, #F9DB00 30%);
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box img {
  width: 40%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul {
  width: 100%;
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-family: "notosansjp_bold";
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul li {
  background: url("../img/icon_arrow_02_r.svg") no-repeat;
  background-position: left 0.4rem top 0.3rem;
  background-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  padding: 0 0 0 2.6rem;
}
.treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul li a {
  text-decoration: none;
  color: #3F342D;
}

@media screen and (min-width: 768px), print {
  .treatment_frame_bg {
    width: 100%;
    height: 1044px;
    background: url("../img/index_treatment_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 91px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .treatment_frame_bg .treatment_frame .treatment_content {
    width: 1200px;
    margin: 24px 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_bg .treatment_frame .treatment_content .treatment_box {
    width: 380px;
    height: 690px;
    margin: 0 0 0 0;
    background-color: #FCFAE8;
    border-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box {
    background-color: #ffffff;
    padding: 0 0 2rem 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 270px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box .treatment_title {
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 3rem;
    line-height: 140%;
    text-align: center;
    color: #3F342D;
    margin: 0 0 30px 0;
    padding: 48px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box .treatment_title span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #F9DB00));
    background: linear-gradient(transparent 70%, #F9DB00 30%);
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box img {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 0 auto;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box img.treatment_icon_01 {
    width: 114.75px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box img.treatment_icon_02 {
    width: 120px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box .treatment_title_box img.treatment_icon_03 {
    width: 120px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul {
    width: 100%;
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-family: "notosansjp_bold";
    font-weight: bold;
    font-size: 2rem;
    margin: 0 0 0 0;
    padding: 42px 32px 0 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul li {
    background: url("../img/icon_arrow_02_r.svg") no-repeat;
    background-position: left 0 top 5px;
    background-size: 24px;
    margin: 0 0 16px 0;
    padding: 0 0 0 34px;
    min-height: 24px;
    line-height: 160%;
  }
  .treatment_frame_bg .treatment_frame .treatment_content .treatment_box ul li a {
    text-decoration: none;
    color: #3F342D;
  }
}
/* -----------------------------------------------------------
　画像ループ
----------------------------------------------------------- */
.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: 0 0 5rem 0;
}
.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: 4125px;
  margin: 0;
  padding: 0;
}
.loop_css ul li {
  display: inline-block;
  width: 50vw;
  min-width: 250px;
  margin: 0 0.5rem 0 0.5rem;
  list-style: none;
  text-align: center;
}
.loop_css ul li a {
  display: block;
}
.loop_css ul li img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}
.loop_css ul li:nth-child(odd) {
  margin: 1rem 0.5rem 0 0.5rem;
}
.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;
}

.loop_css ul + ul {
  -webkit-animation: loop2 120s linear infinite;
  animation: loop2 120s linear infinite;
}

.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%);
  }
}
.loop_js {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 3600px;
  height: 150px;
  overflow: hidden;
}

.loop_js > * {
  width: 33.333333%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .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: 0 0 80px 0;
  }
  .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: 2000px;
    margin: 0;
    padding: 0;
  }
  .loop_css ul li {
    display: inline-block;
    width: 50vw;
    min-width: 380px;
    margin: 0 10px 0 10px;
    list-style: none;
    text-align: center;
  }
  .loop_css ul li a {
    display: block;
  }
  .loop_css ul li img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .loop_css ul li:nth-child(odd) {
    margin: 40px 10px 0 10px;
  }
  .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;
  }
  .loop_css ul + ul {
    -webkit-animation: loop2 120s linear infinite;
    animation: loop2 120s linear infinite;
  }
  .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%);
    }
  }
  .loop_js {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2550px;
    height: 190px;
    overflow: hidden;
  }
  .loop_js > * {
    width: 33.333333%;
    height: auto;
  }
}
/* -----------------------------------------------------------
　地図
----------------------------------------------------------- */
@media screen and (min-width: 768px), print {
  iframe.googlemap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background-color: #ffffff;
  padding: 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: #CCCCCC 1px solid;
  box-sizing: border-box;
}
.overview .overview_box {
  width: 96%;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_logo {
  width: 80%;
  margin: 0 auto 2rem auto;
  display: block;
}
.overview .overview_box .overview_info_box_left .overview_logo img {
  width: 100%;
}
.overview .overview_box .overview_info_box_left .overview_timetable {
  width: 96%;
  margin: 0 auto;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  margin: 2rem 0 0 0;
}
.overview .overview_box .overview_info_box_right dl.overview_list {
  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-family: "notosansjp_medium";
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 160%;
}
.overview .overview_box .overview_info_box_right dl.overview_list dt {
  width: 25%;
  margin: 0 0 1rem 0;
  color: #3F342D;
}
.overview .overview_box .overview_info_box_right dl.overview_list dt span {
  background-color: #F9DB00;
  color: #3F342D;
  text-align: center;
  padding: 0.2rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.3rem;
  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;
}
.overview .overview_box .overview_info_box_right dl.overview_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
  padding: 0 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3F342D;
}
.overview .overview_box .overview_info_box_right dl.overview_list dd ul {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  margin: 0 0 0 0;
}
.overview .overview_box .overview_info_box_right dl.overview_list dd ul li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}
.overview .overview_box .overview_info_box_right dl.overview_list dd ul li:last-child {
  margin: 0 0 0 1.8rem;
}
.overview .overview_box .overview_info_box_right dl.overview_list dd a {
  color: #3F342D;
  text-decoration: underline;
}
.overview .overview_doctorsfile {
  width: 96%;
  margin: 0 auto 2rem auto;
  display: block;
  text-decoration: none;
}
.overview .overview_doctorsfile img {
  width: 100%;
  height: auto;
}
.overview .overview_box_map {
  width: 96%;
  margin: 0 auto 0 auto;
}
.overview .overview_box_map .map_img {
  width: 100%;
  height: auto;
  margin: 0 0 2rem 0;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.overview .overview_box_map iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
  border: #CCCCCC 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    background-color: #ffffff;
    padding: 62px 0 60px 0;
    border-top: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 0 auto 44px auto;
    padding: 0 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: 570px;
  }
  .overview .overview_box .overview_info_box_left .overview_logo {
    width: 360px;
    margin: 0 auto 40px auto;
    display: block;
  }
  .overview .overview_box .overview_info_box_left .overview_logo img {
    width: 100%;
  }
  .overview .overview_box .overview_info_box_left .overview_timetable {
    width: 100%;
    margin: 0;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    margin: 0 0 0 0;
    width: 570px;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list {
    width: 100%;
    margin: 0 0 0 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;
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 180%;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dt {
    width: 140px;
    margin: 0 0 15px 0;
    color: #3F342D;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dt span {
    width: 100%;
    height: 40px;
    background-color: #F9DB00;
    color: #3F342D;
    text-align: center;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 6px;
    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;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dd {
    width: 408px;
    margin: 0 0 15px 0;
    padding: 2px 0 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #3F342D;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dd ul {
    list-style-type: disc;
    line-height: 170%;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin: 0 0 20px 0;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dd ul li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dd ul li:last-child {
    margin: 0 0 0 25px;
  }
  .overview .overview_box .overview_info_box_right dl.overview_list dd a {
    color: #3F342D;
    text-decoration: underline;
  }
  .overview .overview_doctorsfile {
    width: 500px;
    margin: 0 auto 60px auto;
    display: block;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview .overview_doctorsfile img {
    width: 100%;
    height: auto;
  }
  .overview .overview_doctorsfile:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overview .overview_box_map {
    width: 1200px;
    margin: 0 auto 0 auto;
    /*
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction:row;
    flex-direction:row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    .map_img{
      width: 570px;
      height: auto;
      margin: 0 0 0 0;
      border: $color6 1px solid;
      box-sizing: border-box;
    }
      */
  }
  .overview .overview_box_map iframe.googlemap {
    width: 100%;
    height: 424px;
    display: block;
    margin: 0;
    border: #CCCCCC 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
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: #F9DB00;
}
footer .copyright a {
  color: #3F342D;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 13vw;
  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: #3F342D 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.footer_link a.footer_tel {
  width: 50%;
  margin: 0;
  color: #3F342D;
  background-color: #F9DB00;
  text-align: center;
  font-family: "notosansjp_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.4rem;
  letter-spacing: 0.1em;
  border-right: #3F342D 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: #3F342D;
  background-color: #F9DB00;
  width: 50%;
  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: #3F342D;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 25px 0 0 0;
    background-color: #F5F5F5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 202px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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.footer_list li {
    width: auto;
    height: 16px;
    margin: 0 12px 18px 0;
    padding: 0 12px 0 0;
    list-style-type: none;
    position: relative;
    border-right: #3F342D 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 100%;
  }
  footer .footer_frame ul.footer_list li a {
    color: #3F342D;
    text-decoration: none;
    font-family: "notosansjp_medium";
    font-weight: normal;
    font-size: 1.6rem;
    position: relative;
    line-height: 100%;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #3F342D;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li.treatment, footer .footer_frame ul.footer_list li.return, footer .footer_frame ul.footer_list li.disease {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .footer_frame .subtitle {
    display: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #3F342D;
    font-size: 1.8rem;
    height: 60px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #F9DB00;
    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: 0;
    left: 0;
  }
  footer .copyright a {
    color: #3F342D;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
  }
  footer .copyright a::before {
    position: absolute;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #3F342D;
  }
  footer .copyright a:hover::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  .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;
  }
  #pagetop_position #linkpagetop a img {
    width: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a:hover {
    opacity: 0.6;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  #pagetop {
    position: fixed;
    bottom: 105px;
    right: 10%;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #pagetop {
    position: fixed;
    bottom: 105px;
    right: 2%;
    z-index: 999999;
  }
}
/*# sourceMappingURL=style.css.map */