@charset "utf-8";
/*
Theme Name: grits THEME
Author: grits
Version: 1.0.0
*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
/******************************************************
基本設定
******************************************************/
:root {
  /* 個別カラー */
  --color-green: #7ebf41;  
  --color-blue: #4693db;
  --color-yellow: #ffe655;
  --color-orange: #f5b056;
  --color-pink: #ed8492;
  /* 個別背景 */
  --bg-green: #f2f8ec;
  --bg-blue: #ecf4fb;
  --bg-yellow: #fffcee;
  --bg-orange: #fef8e5;
  --bg-pink: #fdf2f4;   
  
  --white: #fff; /* 白 */
  --main-color: #7ebf41; /* メインカラー */
  --sub-color: #f5b056; /* サブカラー */
  --bg-color: #7ebf41; /* 背景色1（基本的にメインカラーと同じ） */
  
 
  
  --bg-high-color: #fcf9f2; /* 背景色 */
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 18px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #231815; /* テキストカラー（通常） */
  --text-high-color: #fff; /* テキストカラー（背景あり） */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 400; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 900; /* フォント（超太字）の太さ */
  --border-color: #ccc; /* 線の色 */
  --sans: "Zen Maru Gothic", sans-serif; /* ゴシック体 */
  --serif: "Shippori Mincho", serif; /* 明朝体 */ /* 明朝体 */
  --catch: "Zen Maru Gothic", sans-serif;
  --alphabet: "Funnel Sans", sans-serif; /* 英語フォント */
}
/******************************************************
リセット
******************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: var(--text-color);
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: middle;
  word-break: break-all;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: var(--text-size-pc);
  line-height: 2;
  font-weight: var(--text-weight);
  letter-spacing: var(--text-space);
  font-family: var(--sans);
}
@media screen and (max-width:767px) {
  body {
    font-size: var(--text-size-sp);
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: var(--text-weight);
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: var(--text-weight);
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
img {
  max-width: 100%;
	height: auto;
  vertical-align: middle;
}
a {
  color: var(--text-color);
  text-decoration: none;
  vertical-align: baseline;
  border:　none;
  outline:　none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
iPhoneリセット
******************************************************/
input,textarea,select {
  font-family: var(--sans);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 1.6rem;
  font-family: var(--sans);
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp30 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp30 {
  animation-name: fadeInUp30;
  animation-duration: 1s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fluffy_2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
.fluffy {
  animation: fluffy 5s infinite;
}
.fluffy_2 {
  animation: fluffy_2 5s infinite;
}
/******************************************************
iPhoneリセット
******************************************************/
.clearfix:after,
.inner:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
レスポンシブ
******************************************************/
.pc, .tab, .sp {display: none;}
.inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px){
  .inner {
    margin: 0 1.5rem;
  }
  .sp {display: block;}
  .sp-left {text-align:left!important;}
  .sp-right {text-align:right!important;}
  .sp-center {text-align:center!important;}
}
@media screen and (min-width: 768px) {
  .inner {
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  .pc {display: block;}
  .pc-left {text-align:left!important;}
  .pc-right {text-align:right!important;}
  .pc-center {text-align:center!important;}
}
/******************************************************
基本フォント
******************************************************/
.sans {
  font-family: var(--sans);
}
.serif {
  font-family: var(--serif);
}
.bold {
  font-weight: var(--text-weight-bold);
}
/********************************************************
PCスタイル
********************************************************/
@media screen and (min-width:1240px) {
  /******************************************************
  共有パーツ・タイトル
  ******************************************************/  
  .green {color: var(--color-green);}
  .blue {color: var(--color-blue);}
  .orange {color: var(--color-orange);}
  .yellow {color: var(--color-yellow);}
  .pink {color: var(--color-pink);}
  .bg_green {background-color: var(--bg-green);}
  .bg_blue {background-color: var(--bg-blue);}
  .bg_orange {background-color: var(--bg-orange);}
  .bg_yellow {background-color: var(--bg-yellow);}
  .bg_pink {background-color: var(--bg-pink);}
  .section_cover {
    padding: 10rem 0;
  }
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    line-height: 1.5;
  }
  .main_title .eng {
    margin-bottom: .5em;
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
  }
  .main_title .jap {
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
  }
  /******************************************************
  メインビジュアル
  ******************************************************/
  #top_main {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--bg-high-color);
  }
  
  #main_catch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 7;
  }
  
  #main_image {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  #main_image:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    /*background-image: linear-gradient(180deg, rgba(126, 191, 65, 0.1), rgba(126, 191, 65, 0) 75%);*/
    z-index: 5;
  }  
  #main_image .image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  #main_image .image_1 {
    background-image: url(/wp-content/uploads/images/main_img001.webp);
    z-index: 4;
  }
  #main_image .image_2 {
    background-image: url(/wp-content/uploads/images/main_img002.webp);
    z-index: 3;
  }
  #main_image .image_3 {
    background-image: url(/wp-content/uploads/images/main_img003.webp);
    z-index: 2;
  }
  #main_image .image_4 {
    background-image: url(/wp-content/uploads/images/main_img004.webp);
    z-index: 1;
  }
  #main_image .image_5 {
    background-image: url(/wp-content/uploads/images/main_img005.webp);
    z-index: 6;
  }  
  #main_image .image_6 {
    background-image: url(/wp-content/uploads/images/catch_copy.webp);
    z-index: 7;
  }  
  /******************************************************
  お問い合わせ
  ******************************************************/  
  .section_contact {
    padding: 10rem 10%;
    background: url(/wp-content/uploads/images/bg_contact.webp) top center no-repeat;
    background-size: cover;
  }
  .section_contact .contact_box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 10rem;
    border-radius: 3rem;
    background: rgba(255,255,255,1);
    box-sizing: border-box;
    box-shadow: 0 0 18px 0 rgba(0,0,0,.1);
  }
  .section_contact .contact_title {
    position: relative;
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 3rem;
    text-align: center;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
    border-bottom: 2px dashed var(--color-yellow);
  }
  .section_contact .contact_title:before {
    position: absolute;
    bottom: 1em;
    left: -1em;
    display: block;
    content: "";
    width: 200px;
    height: 150px;
    background: url(/wp-content/uploads/images/contact_img001.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .contact_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .section_contact .flex_tel,
  .section_contact .flex_web {
    margin: 0 2rem;
  }
  .section_contact .flex_tel a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
  }
  .section_contact .flex_tel a .small {
    font-size: 2rem;
  }
  .section_contact .flex_tel a .large {
    font-size: 4rem;
  }
  .section_contact .flex_tel a .large:before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    margin-right: .5em;
    vertical-align: baseline;
    background: url(/wp-content/uploads/images/icon_tel_orange.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .flex_web a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 100px;
    padding: 0 2em;
    color: #fff;
    border-radius: 50px;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
    background: var(--color-green);
    box-sizing: border-box;
  }
  .section_contact .flex_web a .large {
    font-size: 3rem;
  }
  .section_contact .flex_web a .large:before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    margin-right: .5em;
    vertical-align: baseline;
    background: url(/wp-content/uploads/images/icon_web_white.webp) center center no-repeat;
    background-size: contain;
  }  
  /******************************************************
  こんなお悩みはありませんか？
  ******************************************************/
  #top_trouble {
    background-image: url(/wp-content/uploads/images/bg_trouble.webp);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #top_trouble .trouble_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_trouble .trouble_title .bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin-bottom: 20px;
    padding: 0 2em;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    border-radius: 1em;
    background: var(--color-green);
  }
  #top_trouble .trouble_title .bubble:after {
    position: absolute;
    top: 100%;
    left: 3em;
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: var(--color-green);
    clip-path: polygon(60% 0, 0 0, 100% 100%);
  }  
  #top_trouble .trouble_title .title {
    color: var(--color-blue);
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
  }
  #top_trouble .trouble_title .title span {
    color: var(--color-green);
    font-size: 1.5em;
  }
  #top_trouble .trouble_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6rem;
    padding: 0 10%;
  }
  #top_trouble .trouble_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 3) - 20px);
    height: 4em;
    margin: 10px;
    color: var(--color-blue);
    text-align: center;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    border-radius: 2em;
    background: var(--white);
  }
  #top_trouble .trouble_list .list span.large {
    font-size: 2rem;
  }
  #top_trouble .trouble_comment:before {
    display: block;
    content: "";
    width: 120px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 5rem;
    background: var(--color-blue);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
  #top_trouble .trouble_comment {
    text-align: center;
  }
  /******************************************************
  小児矯正をおすすめします
  ******************************************************/
  #top_recommend {
    position: relative;
    overflow: hidden;
  }
  #top_recommend:before {
    position: absolute;
    top: -45vw;
    left: -45vw;
    display: block;
    content: "";
    width: 90vw;
    height: 90vw;
    border-radius: 50%;
    background: var(--bg-pink);
  }
  #top_recommend .recommend_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    font-size: 4.8rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.3;
    z-index: 1;
  }
  #top_recommend .recommend_title span {
    margin-right: .2em;
    color: var(--color-orange);
    font-size: 1.5em;
  }
  #top_recommend .recommend_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_recommend .flex_image {
    width: calc(50% - 4rem);
  }
  #top_recommend .flex_comment {
    width: calc(50% - 4rem);
  }
  #top_recommend .flex_comment .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
    line-height: 2;
  }
  #top_recommend .flex_comment .title span {
    display: inline-block;
    border-bottom: 5px dotted var(--color-pink);
  }
  #top_recommend .flex_comment .comment p:nth-child(n+2) {
    margin-top: 2em;
  }
  #top_recommend .recommend_link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_recommend .recommend_link_list .list {
    width: calc((100% / 3) - 20px);
  }
  #top_recommend .recommend_link_list .list a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    border-radius: .5em;
    background: var(--bg-orange);
  }
  #top_recommend .recommend_link_list .list a:after {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    margin-left: -2rem;
    width: 4rem;
    height: 4rem;
    content: "▼";
    color: var(--white);
    border-radius: 2rem;
    box-sizing: border-box;
    background: var(--text-color);
  }
  /******************************************************
  なぜ今小児矯正？
  ******************************************************/
  #top_reason .reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  #top_reason .reason_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 3) - 20px);
    height: 8rem;
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    background: var(--white);
    border-radius: 4rem;
  }
  #top_reason .reason_list .list:nth-child(odd) {
    margin-top: 4rem;
  }
  #top_reason .reason_list .list:nth-child(even) {
    margin-bottom: 4rem;
  }
  #top_reason .reason_list .list:before {
    position: absolute;
    top: calc(100% + 10px);
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--white);
  }
  #top_reason .reason_list .list:nth-child(1):before,
  #top_reason .reason_list .list:nth-child(2):before {
    left: 30%;
  }
  
  #top_reason .reason_list .list:nth-child(3):before {
    right: 30%;
  }
  #top_reason .reason_list .list:after {
    position: absolute;
    top: calc(100% + 30px);
    display: block;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--white);
  }  
  #top_reason .reason_list .list:nth-child(1):after,
  #top_reason .reason_list .list:nth-child(2):after {
    left: 40%;
  }  
  #top_reason .reason_list .list:nth-child(3):after {
    right: 40%;
  }
  #top_reason .reason_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    font-size: 4.8rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.3;
    z-index: 1;
  }
  #top_reason .reason_title span {
    margin: 0 .2em;
    color: var(--color-pink);
    font-size: 1.5em;
  }  
  #top_reason .reason_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
  }
  #top_reason .flex_image {
    width: calc(50% - 4rem)
  }
  #top_reason .flex_comment {
    width: calc(50% - 4rem);
  }
  #top_reason .flex_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_reason .reason_graph {
    margin-bottom: 5rem;
    padding: 6rem;
    border-radius: 3rem;
    background: var(--white);
  }
  #top_reason .reason_graph .title {
    margin-bottom: 3rem;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #top_reason .reason_graph .title span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_graph .comment {
    text-align: center;
  }
  #top_reason .reason_graph .comment span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_graph .graph {
    margin: 3rem 0;
  }
  #top_reason .reason_sign .title {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_reason .reason_sign .comment {
    text-align: center;
  }
  #top_reason .reason_sign .comment span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_sign .sign_list {
    margin: 3rem 0;
    padding: 6rem;
    border-radius: 3rem;
    background: var(--white);
  }
  #top_reason .reason_sign .sign_list_title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_sign .sign_list ul {
    display: flex;
    flex-wrap: wrap;
  }
  #top_reason .reason_sign .sign_list li {
    position: relative;
    width: calc(50% - 2rem);
    margin-left: 4rem;
    padding: 1em;
    padding-left: 1.5em;
    font-weight: var(--text-weight-bold);
    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color);
  }
  #top_reason .reason_sign .sign_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    content: "\f138";
    font-family: "FontAwesome";
    color: var(--color-orange);
    line-height: 1;
  }
  #top_reason .reason_sign .sign_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  /******************************************************
  バイオブロック治療を行なっています
  ******************************************************/
  #top_treatment .treatment_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_title .bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin-right: 10em;
    margin-bottom: 20px;
    padding: 0 2em;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    border-radius: 1em;
    background: var(--color-orange);
  }
  #top_treatment .treatment_title .bubble:after {
    position: absolute;
    top: 100%;
    left: 3em;
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: var(--color-orange);
    clip-path: polygon(100% 0, 40% 0, 0 100%);
  }  
  #top_treatment .treatment_title .title {
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_title .title span {
    color: var(--color-green);
  }  
  #top_treatment .treatment_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_treatment .treatment_comment span {
    color: var(--color-green);
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_flex .flex_image {
    position: relative;
    width: calc(50% - 4rem);
  }
  #top_treatment .treatment_flex .flex_image .image {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_flex .flex_image ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
    width: 100%;
  }
  #top_treatment .treatment_flex .flex_image li {
    width: calc(100% / 5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    background: rgba(126,191,65,.9);
  }
  #top_treatment .treatment_flex .flex_image li:nth-child(n+2) {
    margin-left: 1rem;
  }
  #top_treatment .treatment_flex .flex_comment {
    width: calc(50% - 4rem);
  }
  #top_treatment .treatment_flex .flex_comment .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_flex .flex_comment .comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_treatment .treatment_flex .flex_comment .comment span {
    color: var(--color-green);
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_image .image {
    position: relative;
    width: 40%;
    aspect-ratio: 3 / 2;
  }
  #top_treatment .treatment_image .image .image_a {
    width: 80%;
  }
  #top_treatment .treatment_image .image .image_b {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  #top_treatment .treatment_image .bubble {
    position: relative;
    margin-left: 4rem;
    padding: 4rem;
    color: var(--color-green);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    background: var(--white);
    border-radius: 3rem;
  }
  #top_treatment .treatment_image .bubble:before {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 30px;
    height: 30px;
    display: block;
    content: "";
    clip-path: polygon(100% 50%, 100% 0, 0 100%);
    background: var(--white);
  }
  #top_treatment .treatment_merit .merit_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_merit .merit_list .list {
    width: calc((100% / 2) - 2rem);
    margin-left: 4rem;
    padding: 5rem;
    text-align: center;
    box-sizing: border-box;
    border-radius: 2rem;
    border: 5px solid var(--color-green);
    background: var(--white);
  }
  #top_treatment .treatment_merit .merit_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_treatment .treatment_merit .merit_list .list:nth-child(n+3) {
    margin-top: 4rem;
  }
  #top_treatment .treatment_merit .merit_list .list .number {
    margin-bottom: .5em;
    color: var(--color-green);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_merit .merit_list .list .title {
    margin-bottom: .5em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_note .image {
    width: 360px;
  }
  #top_treatment .treatment_note .comment {
    width: calc(100% - 440px);
  }
  #top_treatment .treatment_note .comment .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_caution {
    margin-bottom: 5rem;
    padding: 6rem;
    border-radius: 3rem;
    background: var(--white);
  }
  #top_treatment .treatment_caution .caution_title {
    margin-bottom: 5rem;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #top_treatment .treatment_caution .caution_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_treatment .treatment_caution .caution_list .list {
    width: calc((100% / 3) - 20px);
    padding: 3rem;
    box-sizing: border-box;
    border-radius: 5rem;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(1) {
    background: var(--bg-blue);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(2) {
    background: var(--bg-pink);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(3) {
    background: var(--bg-green);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(odd) {
    margin-bottom: 5rem;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(even) {
    margin-top: 5rem;
  }  
  #top_treatment .treatment_caution .caution_list .list .image {
    width: 50%;
    margin: 0 auto 3rem;
  }
  #top_treatment .treatment_caution .caution_list .list .title {
    margin-bottom: 1em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: center;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(1) .title {
    color: var(--color-blue);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(2) .title {
    color: var(--color-pink);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(3) .title {
    color: var(--color-green);
  }
  #top_treatment .treatment_fee .fee_title {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_treatment .treatment_fee .fee_table {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_fee .fee_table table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--white);
  }
  #top_treatment .treatment_fee .fee_table th,
  #top_treatment .treatment_fee .fee_table td {
    padding: 1em;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);    
  }
  #top_treatment .treatment_fee .fee_table th {
    color: var(--white);
    background: var(--color-green);
  }
  #top_treatment .treatment_fee .fee_comment {
    border-radius: 3rem;
    padding: 6rem;
    background: var(--white);
  }
  #top_treatment .treatment_fee .fee_comment .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);    
  }
  #top_treatment .treatment_fee .fee_comment .comment {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_fee .fee_comment .btn {
    margin: 0 auto;
    text-align: center;
  }
  #top_treatment .treatment_fee .fee_comment .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 60px;
    margin: 0 auto;
    border-radius: 30px;
    color: var(--white);
    background: var(--color-green);
  }
  /******************************************************
  バイオブロック治療の流れ
  ******************************************************/
  #top_flow .flow_cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0 10%;
  }
  #top_flow .flow_thumbnail {
    width: 420px;
  }
  #top_flow .flow_thumbnail .thumbnail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100px;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
  }
  #top_flow .flow_thumbnail .thumbnail.thumbnail-current {
    color: var(--color-pink);
  }
  #top_flow .flow_thumbnail .thumbnail .number {
    color: var(--color-pink);
    padding-right: 1em;
  }
  #top_flow .flow_thumbnail .thumbnail .title {
    
  }
  #top_flow .flow_list {
    width: calc(100% - 500px);
    padding: 6rem;
    border-radius: 3rem;
    box-sizing: border-box;
    background: var(--white);
  }
  #top_flow .flow_list .list {
    box-sizinng: border-box;
  }
  #top_flow .flow_list .title_cover {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .title {
    color: var(--color-pink);
  }
  #top_flow .flow_list .title {
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid var(--border-color);
  }
  #top_flow .flow_list .image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  /******************************************************
  症例紹介
  ******************************************************/
  #top_case .case_comment {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_case .product_list {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
  }
  #top_case .product_list .list {
    padding: 5rem;
    border-radius: 3rem;
    background: var(--white);
  }
  #top_case .product_list .arrow {
    position: absolute;
    top: 320px;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
  }
  #top_case .product_list .prev {
    right: calc(100% + 20px);
    background: var(--white) url(/wp-content/uploads/images/icon_prev.webp) center center no-repeat;
    background-size: contain;
  }
  #top_case .product_list .next {
    left: calc(100% + 20px);
    background: var(--white) url(/wp-content/uploads/images/icon_next.webp) center center no-repeat;
    background-size: contain;    
  }
  #top_case .product_list .image_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_case .product_list .image_box:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -12px;
    display: block;
    content: "";
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid var(--bg-blue);
  }
  #top_case .product_list .image_box .box {
    position: relative;
    width: calc(50% - 2.5rem);
  }
  #top_case .product_list .image_box .box .mark {
    position: absolute;
    top: 0;
    left: 0;
    padding: .4em 1.2em;
    color: var(--color-blue);
    font-weight: var(--text-weight-bold);
    background: rgba(255,255,255.8);
  }
  #top_case .product_list .image_box .box img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_case .product_list .data table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--white);
  }
  #top_case .product_list .data th,
  #top_case .product_list .data td {
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #top_case .product_list .data th {
    width: 25%;
    background: var(--bg-blue);
  }  
  
  /******************************************************
  当院の小児矯正の特徴
  ******************************************************/  
  /* 共通 */
  #top_feature .feature_list .cloud {
    display: none;
  }
  #top_feature .feature_list .text {
    width: 360px;
    padding: 3rem 0;
  }
  #top_feature .feature_list .number {
    margin-bottom: 5rem;
  }
  #top_feature .feature_list .number span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    width: 100px;
    height: 50px;
    font-size: 2rem;
    font-style: italic;
    line-height: 1;
    border-radius: 1.5em 1.5em 1.5em 0;
    background: var(--color-green);
  }
  #top_feature .feature_list .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  #top_feature .feature_list .list:nth-child(n+2) {
    margin-top: 8rem;
  }
  /* 1 */
  #top_feature .feature_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0 10%;
  }
  #top_feature .feature_list .list:nth-child(even) {
    flex-direction: row;
  }
  #top_feature .feature_list .list:nth-child(1) .image {
    width: calc(100% - 440px);
    background: url(/wp-content/uploads/images/feature_img001.webp) center center no-repeat;
    background-size: cover;
  }    
  #top_feature .feature_list .list:nth-child(2) .image {
    width: calc(100% - 440px);
    background: url(/wp-content/uploads/images/feature_img002.webp) center center no-repeat;
    background-size: cover;
  }  
  #top_feature .feature_list .list:nth-child(3) .image {
    width: calc(100% - 440px);
    background: url(/wp-content/uploads/images/feature_img003.webp) center center no-repeat;
    background-size: cover;
  }  
  #top_feature .feature_list .list:nth-child(4) .image {
    width: calc(100% - 440px);
    background: url(/wp-content/uploads/images/feature_img004.webp) center center no-repeat;
    background-size: cover;
  }  
  /******************************************************
  スライダー
  ******************************************************/
  #top_slider {
    padding-bottom: 10rem;   
  }
  .simply-scroll-container {
    position: relative;
  }
  .simply-scroll-clip {
    position: relative;
    overflow: hidden; 
  }
  .simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  #image-scroll.simply-scroll-list .image {
    float: left; 
    padding: 0 2rem;
    margin: 0;
    width: 24vw;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }    
  #image-scroll.simply-scroll-list .image:nth-child(odd) {
    margin-bottom: 4rem;
  }
  #image-scroll.simply-scroll-list .image:nth-child(even) {
    margin-top: 4rem;
  }
  #image-scroll.simply-scroll-list .image img {
    border-radius: 8vw;
  }  
  
  /******************************************************
  よくあるご質問
  ******************************************************/
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_faq .faq_list dt {
    position: relative;
    padding: 1em 3em;
    font-weight: var(--text-weight-bold);
    background: var(--color-yellow);
    cursor: pointer;
    border-radius: .5em .5em;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #top_faq .faq_list dt.active {
    border-radius: .5em .5em 0 0;
  }
  #top_faq .faq_list dt:before {
    position: absolute;
    top: 50%;
    left: 1em;
    content: "Q";
    margin-top: -.5em;
    line-height: 1;
  }
  #top_faq .faq_list dt:after {
    position: absolute;
    top: 50%;
    right: 1em;
    content: "\f107";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    line-height: 1;    
  }
  #top_faq .faq_list dt.active:after {  
    content: "\f106";
  }
  #top_faq .faq_list dd {
    display: none;
    padding: 3rem;
    border-radius: 0 0 .5em .5em;
    background: var(--white);
  }
  #top_faq .faq_list dd.active {
    display: block;
  }  
  /******************************************************
  医師紹介
  ******************************************************/
  #top_greeting {
    position: relative;
    background-image: url(/wp-content/uploads/images/bg_greeting.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #top_greeting:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50%;
    height: 100%;
    content: "";
    background: url(/wp-content/uploads/images/greeting_img001.webp) top  center no-repeat;
    background-size: cover;
  }
  #top_greeting .doctor_name {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.2em;
    color: var(--white);
    text-align: center;
    border-radius: .5em;
    background: rgba(126,191,65,.8);
  }
  #top_greeting .doctor_name .name .jap {
    font-size: 1.5em;
  }
  #top_greeting .greeting_comment {
    width: 600px;
    margin-left: auto;
  }
  #top_greeting .greeting_comment .message {
    margin-bottom: 3rem;
    color: var(--color-green);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  /******************************************************
  フッター
  ******************************************************/
  #banner_cover {
    padding: 8rem 0;
    background: var(--bg-high-color);
  }
  #banner_cover .banner_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #banner_cover .banner_list .list {
    margin: 0 1rem;
  }
  
  #clinic_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #clinic_flex .clinic_access {
    width: calc(50% - 2rem);
  }
  #clinic_flex .clinic_access .map {
    width: 100%;
  }
  #clinic_flex .clinic_access .map iframe {
   width: 100%;
    height: initial;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #clinic_flex .clinic_data {
    width: calc(50% - 2rem);
  }
  #clinic_flex .clinic_data .schedule table {
    width: 100%;
    margin-bottom: 1em;
    
  }
  #clinic_flex .clinic_data .schedule tr:nth-child(n+2) th,
  #clinic_flex .clinic_data .schedule tr:nth-child(n+2) td {
    border-top: 1px solid var(--border-color);
  }
  #clinic_flex .clinic_data .schedule th,
  #clinic_flex .clinic_data .schedule td {
    padding: .8em;
    text-align: center;
  }
  #clinic_flex .clinic_data .schedule span {
    color: var(--color-green);
  }  
}
/********************************************************
ヘッダー
********************************************************/
@media screen and (min-width:1240px) {
  #header {
    position: relative;
  }
  #h_cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-right: 180px;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  #h_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  #h_logo .logo img {
    width: auto;
    height: 100px;
  }
  #h_logo .text {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    line-height: 1.5;
  }
  #h_logo .text .large {
    font-size: 3rem;
  }
  #h_btn_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #h_btn_list .list {
    text-align: center;
  }
  #h_btn_list .list:nth-child(n+2) {
    margin-left: 2rem;
  }
  #h_btn_list .text {
    text-align: center;
  }
  #h_btn_list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 60px;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    border-radius: 30px;
    background: var(--border-color);
  }
  #h_btn_list .btn.tel a {
    background: var(--color-green);
  }
  #h_btn_list .btn.web a {
    background: var(--color-orange);
  }  
  #h_toggle_btn {
    position: fixed;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #h_toggle_btn:hover {
    background: none;
  }
  #h_toggle_btn span {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-pink);
    position: absolute;
    left: 65px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 78px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 90px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 102px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 90px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 90px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }    
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 12rem 6rem 6rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    line-height: 1.5;
    border-bottom: 1px solid var(--bg-high-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--sub-color);
  }  
}
@media screen and (max-width:1239px) {
  #header {
    position: relative;
    height: 6rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    background: var(--white);
  }
  #h_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  #h_logo .logo img {
    width: auto;
    height: 40px;
  }
  #h_logo .text {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    line-height: 1.5;
  }
  #h_logo .text .large {
    font-size: 1.4rem;
  }
  #h_btn_list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #h_btn_list .list {
    width: 50%;
    text-align: center;
    box-sizing: border-box;
  }
  #h_btn_list .list:nth-child(n+2) {
    border-left: 1px solid var(--border-color);
  }
  #h_btn_list .text {
    display: none;
  }
  #h_btn_list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    background: var(--border-color);
  }
  #h_btn_list .btn.tel a {
    background: var(--color-green);
  }
  #h_btn_list .btn.web a {
    background: var(--color-orange);
  }  
  #h_toggle_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #h_toggle_btn:hover {
    background: none;
  }
  #h_toggle_btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-pink);
    position: absolute;
    left: 15px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 22px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 30px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 38px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 30px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }    
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 6rem 1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    line-height: 1.5;
    border-bottom: 1px solid var(--bg-high-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--sub-color);
  }  
}
/********************************************************
フッター
********************************************************/
@media screen and (min-width:1240px) {
 #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    height: 10rem;
    line-height: 1;
    background: var(--main-color);
  }
  #copyright span.logo:after {
    display: inline-block;
    content: "";
    width: 1px;
    margin: 0 1em;
    height: 1em;
    background: var(--white);
    vertical-align: middle;
  }
  #copyright span.logo img {
    width: auto;
    height: 4rem;
  }   
  /* トップに戻る */
  #page_top {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
  }
  #page_top.fixed {
    position: absolute;
    bottom: 11.5rem;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 10rem;
    height: 10rem;
    background: url(/wp-content/uploads/images/page_top.webp) center center no-repeat;
    background-size: contain;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }  
  #page_top a:hover {
    opacity: .7;
  }   
  


}
@media screen and (max-width:1239px) {
  #footer {
    padding-bottom: 6rem;
  }
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    height: 6rem;
    line-height: 1;
    background: var(--main-color);
  }
  #copyright span.logo:after {
    display: inline-block;
    content: "";
    width: 1px;
    margin: 0 1em;
    height: 1em;
    background: var(--white);
    vertical-align: middle;
  }
  #copyright span.logo img {
    width: auto;
    height: 4rem;
  }   
  /* トップに戻る */
  #page_top {
    position: fixed;
    bottom: 6rem;
    right: 1rem;
    z-index: 100;
  }
  #page_top.fixed {
    position: absolute;
    bottom: calc(100% + 1rem);
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: url(/wp-content/uploads/images/page_top.webp) center center no-repeat;
    background-size: contain;
  }    
  
  
}
/********************************************************
SPスタイル
********************************************************/
@media screen and (max-width:1239px) {
  /******************************************************
  共有パーツ・タイトル
  ******************************************************/  
  .green {color: var(--color-green);}
  .blue {color: var(--color-blue);}
  .orange {color: var(--color-orange);}
  .yellow {color: var(--color-yellow);}
  .pink {color: var(--color-pink);}
  .bg_green {background-color: var(--bg-green);}
  .bg_blue {background-color: var(--bg-blue);}
  .bg_orange {background-color: var(--bg-orange);}
  .bg_yellow {background-color: var(--bg-yellow);}
  .bg_pink {background-color: var(--bg-pink);}
  .section_cover {
    padding: 5rem 0;
  }
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    line-height: 1.5;
  }
  .main_title .eng {
    margin-bottom: .5em;
    font-weight: var(--text-weight-bold);
  }
  .main_title .jap {
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  /******************************************************
  メインビジュアル
  ******************************************************/
  #top_main {
    position: relative;
    width: 100%;
    height: 120vw;
    background: var(--bg-high-color);
  }
  
  #main_catch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 7;
  }
  
  #main_image {
    position: relative;
    width: 100%;
    height: 120vw;
  }
  #main_image:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    /*background-image: linear-gradient(180deg, rgba(126, 191, 65, 0.1), rgba(126, 191, 65, 0) 75%);*/
    z-index: 5;
  }  
  #main_image .image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  #main_image .image_1 {
    background-image: url(/wp-content/uploads/images/main_img001sp.webp);
    z-index: 4;
  }
  #main_image .image_2 {
    background-image: url(/wp-content/uploads/images/main_img002sp.webp);
    z-index: 3;
  }
  #main_image .image_3 {
    background-image: url(/wp-content/uploads/images/main_img003sp.webp);
    z-index: 2;
  }
  #main_image .image_4 {
    background-image: url(/wp-content/uploads/images/main_img004sp.webp);
    z-index: 1;
  }
  #main_image .image_5 {
    background-image: url(/wp-content/uploads/images/main_img005sp.webp);
    z-index: 6;
  }  
  #main_image .image_6 {
    background-image: url(/wp-content/uploads/images/catch_copy_sp.webp);
    z-index: 7;
  }  
  /******************************************************
  お問い合わせ
  ******************************************************/  
  .section_contact {
    padding: 5rem 1.5rem;
    background: url(/wp-content/uploads/images/bg_contact.webp) top center no-repeat;
    background-size: cover;
  }
  .section_contact .contact_box {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255,255,255,1);
    box-sizing: border-box;
  }
  .section_contact .contact_title {
    position: relative;
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
    border-bottom: 2px dashed var(--color-yellow);
  }
  .section_contact .contact_title:before {
    position: absolute;
    bottom: 100%;
    left: -1em;
    display: block;
    content: "";
    width: 120px;
    height: 90px;
    background: url(/wp-content/uploads/images/contact_img001.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .contact_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .section_contact .flex_tel,
  .section_contact .flex_web {
    margin: 0 2rem;
  }
  .section_contact .flex_tel {
    margin-bottom: 1em;
  }
  .section_contact .flex_tel a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
  }
  .section_contact .flex_tel a .small {
    font-size: 1.4rem;
  }
  .section_contact .flex_tel a .large {
    font-size: 2.4rem;
  }
  .section_contact .flex_tel a .large:before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    margin-right: .5em;
    vertical-align: baseline;
    background: url(/wp-content/uploads/images/icon_tel_orange.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .flex_web a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    max-width: 100%;
    height: 60px;
    padding: 0 2em;
    color: #fff;
    border-radius: 30px;
    letter-spacing: .2em;
    font-weight: var(--text-weight-bold);
    background: var(--color-green);
    box-sizing: border-box;
  }
  .section_contact .flex_web a .large {
    font-size: 2rem;
  }
  .section_contact .flex_web a .large:before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    margin-right: .5em;
    vertical-align: baseline;
    background: url(/wp-content/uploads/images/icon_web_white.webp) center center no-repeat;
    background-size: contain;
  }  
  /******************************************************
  こんなお悩みはありませんか？
  ******************************************************/
  #top_trouble {
    background-image: url(/wp-content/uploads/images/bg_trouble.webp);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  #top_trouble .trouble_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_trouble .trouble_title .bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin-bottom: 20px;
    padding: 0 2em;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    border-radius: 1em;
    background: var(--color-green);
  }
  #top_trouble .trouble_title .bubble:after {
    position: absolute;
    top: 100%;
    left: 3em;
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: var(--color-green);
    clip-path: polygon(60% 0, 0 0, 100% 100%);
  }  
  #top_trouble .trouble_title .title {
    color: var(--color-blue);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_trouble .trouble_title .title span {
    color: var(--color-green);
    font-size: 1.5em;
  }
  #top_trouble .trouble_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }
  #top_trouble .trouble_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5em;
    color: var(--color-blue);
    text-align: center;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    border-radius: 2.5em;
    background: var(--white);
  }
  #top_trouble .trouble_list .list:nth-child(n+2) {
    margin-top: 1rem;
  }
  
  #top_trouble .trouble_list .list span.large {}
  #top_trouble .trouble_comment:before {
    display: block;
    content: "";
    width: 60px;
    height: 30px;
    margin: 3rem auto;
    background: var(--color-blue);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }
  #top_trouble .trouble_comment {
    padding: 0 1.5rem;
    text-align: center;
  }
  /******************************************************
  小児矯正をおすすめします
  ******************************************************/
  #top_recommend {
    position: relative;
    overflow: hidden;
  }
  #top_recommend .recommend_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.3;
    z-index: 1;
  }
  #top_recommend .recommend_title span {
    margin-right: .2em;
    color: var(--color-orange);
    font-size: 1.5em;
  }
  #top_recommend .recommend_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 5rem;
  }
  #top_recommend .flex_image {
    margin-bottom: 3rem;
  }
  #top_recommend .flex_comment { }
  #top_recommend .flex_comment .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 2;
  }
  #top_recommend .flex_comment .title span {
    display: inline-block;
    border-bottom: 5px dotted var(--color-pink);
  }
  #top_recommend .flex_comment .comment p:nth-child(n+2) {
    margin-top: 2em;
  }
  #top_recommend .recommend_link_list {}
  #top_recommend .recommend_link_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_recommend .recommend_link_list .list a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    border-radius: .5em;
    background: var(--bg-orange);
  }
  #top_recommend .recommend_link_list .list a:after {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    width: 3rem;
    height: 3rem;
    margin-left: -1.5rem;
    content: "▼";
    color: var(--white);
    border-radius: 1.5rem;
    box-sizing: border-box;
    background: var(--text-color);
  }
  /******************************************************
  なぜ今小児矯正？
  ******************************************************/
  #top_reason .reason_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_reason .reason_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6rem;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    background: var(--white);
    border-radius: 3rem;
  }
  #top_reason .reason_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_reason .reason_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.3;
    z-index: 1;
  }
  #top_reason .reason_title span {
    margin: 0 .2em;
    color: var(--color-pink);
    font-size: 1.5em;
  }  
  #top_reason .reason_flex {
    margin-bottom: 3rem;
  }
  #top_reason .flex_image {
    margin-bottom: 3rem;
  }
  #top_reason .flex_comment {
  }
  #top_reason .flex_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_reason .reason_graph {
    margin-bottom: 3rem;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: var(--white);
  }
  #top_reason .reason_graph .title {
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #top_reason .reason_graph .title span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_graph .comment {
    text-align: center;
  }
  #top_reason .reason_graph .comment span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_graph .graph {
    margin: 3rem 0;
  }
  #top_reason .reason_sign .title {
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_reason .reason_sign .comment {
    text-align: center;
  }
  #top_reason .reason_sign .comment span {
    color: var(--color-pink);
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_sign .sign_list {
    margin: 3rem 0;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: var(--white);
  }
  #top_reason .reason_sign .sign_list_title {
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_reason .reason_sign .sign_list ul {}
  #top_reason .reason_sign .sign_list li {
    position: relative;
    padding: 1em;
    padding-left: 1.5em;
    font-weight: var(--text-weight-bold);
    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color);
  }
  #top_reason .reason_sign .sign_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    content: "\f138";
    font-family: "FontAwesome";
    color: var(--color-orange);
    line-height: 1;
  }
  #top_reason .reason_sign .sign_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  /******************************************************
  バイオブロック治療を行なっています
  ******************************************************/
  #top_treatment .treatment_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_title .bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin-bottom: 20px;
    padding: 0 2em;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    border-radius: 1em;
    background: var(--color-orange);
  }
  #top_treatment .treatment_title .bubble:after {
    position: absolute;
    top: 100%;
    left: 3em;
    display: block;
    content: "";
    width: 30px;
    height: 20px;
    background: var(--color-orange);
    clip-path: polygon(100% 0, 40% 0, 0 100%);
  }  
  #top_treatment .treatment_title .title {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_title .title span {
    color: var(--color-green);
  }  
  #top_treatment .treatment_comment {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_comment span {
    color: var(--color-green);
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_flex {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_flex .flex_image {
    position: relative;
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_flex .image {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_flex .flex_image ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  #top_treatment .treatment_flex .flex_image li {
    width: calc(100% / 3.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--text-weight-bold);
    background: rgba(126,191,65,.9);
  }
  #top_treatment .treatment_flex .flex_image li:nth-child(n+2) {
    margin-left: 1rem;
  }
  #top_treatment .treatment_flex .flex_comment { }
  #top_treatment .treatment_flex .flex_comment .title {
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_flex .flex_comment .comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_treatment .treatment_flex .flex_comment .comment span {
    color: var(--color-green);
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_image .image {
    position: relative;
    aspect-ratio: 3 / 2;
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_image .image .image_a {
    width: 80%;
  }
  #top_treatment .treatment_image .image .image_b {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
  }
  #top_treatment .treatment_image .bubble {
    position: relative;
    padding: 1.5rem;
    color: var(--color-green);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    background: var(--white);
    border-radius: 1rem;
  }
  /*
  #top_treatment .treatment_image .bubble:before {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 30px;
    height: 30px;
    display: block;
    content: "";
    clip-path: polygon(100% 50%, 100% 0, 0 100%);
    background: var(--white);
  }
  */
  #top_treatment .treatment_merit .merit_list {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_merit .merit_list .list {
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
    border-radius: 1rem;
    border: 3px solid var(--color-green);
    background: var(--white);
  }
  #top_treatment .treatment_merit .merit_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_treatment .treatment_merit .merit_list .list .number {
    margin-bottom: .5em;
    color: var(--color-green);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_merit .merit_list .list .title {
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_note {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_note .image {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_note .comment {}
  #top_treatment .treatment_note .comment .title {
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_treatment .treatment_caution {
    margin-bottom: 3rem;
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: var(--white);
  }
  #top_treatment .treatment_caution .caution_title {
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #top_treatment .treatment_caution .caution_list {
  }
  #top_treatment .treatment_caution .caution_list .list {
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    border-radius: 1.5rem;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(1) {
    background: var(--bg-blue);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(2) {
    background: var(--bg-pink);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(3) {
    background: var(--bg-green);
  }
  #top_treatment .treatment_caution .caution_list .list .image {
    width: 50%;
    margin: 0 auto 3rem;
  }
  #top_treatment .treatment_caution .caution_list .list .title {
    margin-bottom: 1em;
    color: var(--color-green);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: center;
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(1) .title {
    color: var(--color-blue);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(2) .title {
    color: var(--color-pink);
  }
  #top_treatment .treatment_caution .caution_list .list:nth-child(3) .title {
    color: var(--color-green);
  }  
  #top_treatment .treatment_fee .fee_title {
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_treatment .treatment_fee .fee_table {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_fee .fee_table table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--white);
  }
  #top_treatment .treatment_fee .fee_table th,
  #top_treatment .treatment_fee .fee_table td {
    padding: 1em;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);    
  }
  #top_treatment .treatment_fee .fee_table th {
    color: var(--white);
    background: var(--color-green);
  }
  #top_treatment .treatment_fee .fee_comment {
    border-radius: 1rem;
    padding: 3rem 1.5rem;
    background: var(--white);
  }
  #top_treatment .treatment_fee .fee_comment .title {
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);    
  }
  #top_treatment .treatment_fee .fee_comment .comment {
    margin-bottom: 3rem;
  }
  #top_treatment .treatment_fee .fee_comment .btn {
    margin: 0 auto;
    text-align: center;
  }
  #top_treatment .treatment_fee .fee_comment .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    max-width: 100%;
    height: 60px;
    margin: 0 auto;
    border-radius: 30px;
    color: var(--white);
    background: var(--color-green);
  }
  /******************************************************
  バイオブロック治療の流れ
  ******************************************************/
  #top_flow {
    overflow: hidden;
  }
  #top_flow .flow_cover {
    padding: 0 1.5rem;
  }
  #top_flow .flow_thumbnail {
    display: none;
  }
  #top_flow .flow_thumbnail .thumbnail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100px;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
  }
  #top_flow .flow_thumbnail .thumbnail.thumbnail-current {
    color: var(--color-pink);
  }
  #top_flow .flow_thumbnail .thumbnail .number {
    color: var(--color-pink);
    padding-right: 1em;
  }
  #top_flow .flow_thumbnail .thumbnail .title {
    
  }
  #top_flow .flow_list {
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    box-sizing: border-box;
    background: var(--white);
  }
  #top_flow .flow_list .list {
    box-sizinng: border-box;
  }
  #top_flow .flow_list .title_cover {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .title {
    color: var(--color-pink);
  }
  #top_flow .flow_list .title {
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid var(--border-color);
  }
  #top_flow .flow_list .image {
    margin-bottom: 3rem;
  }
  #top_flow .flow_list .image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  /******************************************************
  症例紹介
  ******************************************************/
  #top_case {
    overflow: hidden;
  }
  #top_case .case_comment {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_case .product_list {
    max-width: 100%;
    margin: 0 1.5rem;
  }
  #top_case .product_list .list {
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    margin-right: 1.5rem;
  }
  #top_case .product_list .arrow {
    position: absolute;
    top: 320px;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
  }
  #top_case .product_list .prev {
    right: calc(100% + 20px);
    background: var(--white) url(/wp-content/uploads/images/icon_prev.webp) center center no-repeat;
    background-size: contain;
  }
  #top_case .product_list .next {
    left: calc(100% + 20px);
    background: var(--white) url(/wp-content/uploads/images/icon_next.webp) center center no-repeat;
    background-size: contain;    
  }
  #top_case .product_list .image_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_case .product_list .image_box:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -12px;
    display: block;
    content: "";
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid var(--bg-blue);
  }
  #top_case .product_list .image_box .box {
    position: relative;
    width: calc(50% - 2.5rem);
  }
  #top_case .product_list .image_box .box .mark {
    position: absolute;
    top: 0;
    left: 0;
    padding: .4em 1.2em;
    color: var(--color-blue);
    font-size: 1.2rem;
    font-weight: var(--text-weight-bold);
    background: rgba(255,255,255.8);
  }
  #top_case .product_list .image_box .box img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_case .product_list .data table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--white);
  }
  #top_case .product_list .data th,
  #top_case .product_list .data td {
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #top_case .product_list .data th {
    width: 25%;
    background: var(--bg-blue);
  }  
  
  /******************************************************
  当院の小児矯正の特徴
  ******************************************************/  
  /* 共通 */
  #top_feature .feature_list .cloud {
    display: none;
  }
  #top_feature .feature_list .text {
    padding: 3rem 0;
  }
  #top_feature .feature_list .number {
    margin-bottom: 3rem;
  }
  #top_feature .feature_list .number span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    width: 100px;
    height: 50px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1;
    border-radius: 1.5em 1.5em 1.5em 0;
    background: var(--color-green);
  }
  #top_feature .feature_list .title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  #top_feature .feature_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  /* 1 */
  #top_feature .feature_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0 1.5rem;
  }
  #top_feature .feature_list .list:nth-child(even) {
    flex-direction: row;
  }
  #top_feature .feature_list .list:nth-child(1) .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: url(/wp-content/uploads/images/feature_img001.webp) center center no-repeat;
    background-size: cover;
  }    
  #top_feature .feature_list .list:nth-child(2) .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: url(/wp-content/uploads/images/feature_img002.webp) center center no-repeat;
    background-size: cover;
  }  
  #top_feature .feature_list .list:nth-child(3) .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: url(/wp-content/uploads/images/feature_img003.webp) center center no-repeat;
    background-size: cover;
  }  
  #top_feature .feature_list .list:nth-child(4) .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: url(/wp-content/uploads/images/feature_img004.webp) center center no-repeat;
    background-size: cover;
  }  
  /******************************************************
  スライダー
  ******************************************************/
  #top_slider {
    padding-bottom: 5rem;   
  }
  .simply-scroll-container {
    position: relative;
  }
  .simply-scroll-clip {
    position: relative;
    overflow: hidden; 
  }
  .simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  #image-scroll.simply-scroll-list .image {
    float: left; 
    padding: 0 1rem;
    margin: 0;
    width: 48vw;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }    
  #image-scroll.simply-scroll-list .image img {
    border-radius: 16vw;
  }  
  
  /******************************************************
  よくあるご質問
  ******************************************************/
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_faq .faq_list dt {
    position: relative;
    padding: 1em 3em;
    font-weight: var(--text-weight-bold);
    background: var(--color-yellow);
    cursor: pointer;
    border-radius: .5em .5em;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;        
  }
  #top_faq .faq_list dt.active {
    border-radius: .5em .5em 0 0;
  }
  #top_faq .faq_list dt:before {
    position: absolute;
    top: 50%;
    left: 1em;
    content: "Q";
    margin-top: -.5em;
    line-height: 1;
  }
  #top_faq .faq_list dt:after {
    position: absolute;
    top: 50%;
    right: 1em;
    content: "\f107";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    line-height: 1;    
  }
  #top_faq .faq_list dt.active:after {  
    content: "\f106";
  }
  #top_faq .faq_list dd {
    display: none;
    padding: 3rem;
    border-radius: 0 0 .5em .5em;
    background: var(--white);
  }
  #top_faq .faq_list dd.active {
    display: block;
  }  
  /******************************************************
  医師紹介
  ******************************************************/
  #top_greeting {
    position: relative;
    background-image: url(/wp-content/uploads/images/bg_greeting.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #top_greeting .doctor_name:before {
    display: block;
    width: 100%;
    height: 65vw;
    margin-bottom: 1em;
    content: "";
    background: url(/wp-content/uploads/images/greeting_img001.webp) top  center no-repeat;
    background-size: cover;
  }
  #top_greeting .doctor_name {
    bottom: 0;
    left: 0;
    margin-bottom: 3rem;
    padding: 1.2em;
    color: var(--white);
    text-align: center;
    border-radius: .5em;
    background: rgba(126,191,65,.8);
  }
  #top_greeting .doctor_name .name .jap {
    font-size: 1.5em;
  }
  #top_greeting .greeting_comment {
    margin-left: auto;
  }
  #top_greeting .greeting_comment .message {
    margin-bottom: 3rem;
    color: var(--color-green);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  /******************************************************
  フッター
  ******************************************************/
  #banner_cover {
    padding: 3rem 0;
    background: var(--bg-high-color);
  }
  #banner_cover .banner_list {
    text-align: center;
  }
  #banner_cover .banner_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  
  #clinic_flex {
  }
  #clinic_flex .clinic_access {
  }
  #clinic_flex .clinic_access .map {
    width: 100%;
  }
  #clinic_flex .clinic_access .map iframe {
   width: 100%;
    height: initial;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #clinic_flex .clinic_data {
  }
  #clinic_flex .clinic_data .schedule table {
    width: 100%;
    margin-bottom: 1em;
    
  }
  #clinic_flex .clinic_data .schedule tr:nth-child(n+2) th,
  #clinic_flex .clinic_data .schedule tr:nth-child(n+2) td {
    border-top: 1px solid var(--border-color);
  }
  #clinic_flex .clinic_data .schedule th,
  #clinic_flex .clinic_data .schedule td {
    padding: .5em;
    text-align: center;
  }
  #clinic_flex .clinic_data .schedule span {
    color: var(--color-green);
  }
}