@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=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/******************************************************
基本設定
******************************************************/
:root {
  --white: #fff; /* 白 */
  --main-color: #009944; /* メインカラー */
  --sub-color: #2e5090; /* サブカラー */
  --bg-color: #009944; /* 背景色1（基本的にメインカラーと同じ） */
  --bg-high-color: #f2f2f2; /* 背景色2 */
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 16px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #333; /* テキストカラー（通常） */
  --text-high-color: #fff; /* テキストカラー（背景あり） */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 400; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 900; /* フォント（超太字）の太さ */
  --border-color: #ccc; /* 線の色 */
  --sans: "Noto Sans JP", "游ゴシック", "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; /* ゴシック体 */
  --serif: "游明朝体","Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman", serif; /* 明朝体 */
  --catch: "Noto Sans JP", "游ゴシック", "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --alphabet: "Cormorant Garamond", 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);
  }
}
/******************************************************
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;}
@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);
}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width:1240px) {
  #header {}
  #h_cover {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    padding-right: calc(100px + 3rem);
    box-sizing: border-box;
    z-index: 100;
  }
  /* ロゴ・タイトル */
  #h_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    
  }
  #h_logo .logo img {
    height: 4.8rem;
  }
  #h_logo .title {
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-family: var(--serif);
    line-height: 1.5;
  }
  #h_logo .title .large {
    font-size: 3.6rem;
  }
  #h_logo .title .small {
    font-size: 2rem;
  }
  /* ボタン */
  #h_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  #h_btn .btn {
    position: relative;
  }
  #h_btn .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100px; 
    color: var(--white);
    font-family: var(--serif);
    letter-spacing: .05em;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }  
  #h_btn .btn a:hover {
    opacity: .7;
  }
  #h_btn .btn a .title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  #h_btn .btn a .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  /* 電話番号 */
  #h_btn .btn a.tel {
    width: 300px;    
    background: var(--main-color);
  }
  #h_btn .btn a.tel .logo {
    color: var(--white);
  }
  #h_btn .btn a.tel .logo .icon {
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_tel.webp) center center;
    background-size: contain;
  }
  /* フォーム */
  #h_btn .btn a.form {
    width: 200px;    
    background: var(--sub-color);
  }
  #h_btn .btn a.form:after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: var(--white);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }  
  #h_btn .btn a.form .logo {
    color: var(--white);
  }
  #h_btn .btn a.form .logo .icon {
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_form.webp) center center;
    background-size: contain;
  }  
  /* アドレス */
  #h_address {
    position: absolute;
    top: 130px;
    right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 615px;
    height: 40px;
    color: var(--white);
    text-align: center;
    letter-spacing: .05em;
    font-family: var(--serif);
    background: rgba(0,0,0,.2);
  }
  /* ハンバーガーメニュー */
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 100px;
    height: 100px;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 101;
    color: var(--white);
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;  
  }
  #h_toggle_btn span {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 30px;
    -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: 24px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 36px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 48px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 36px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 36px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    font-family: var(--serif);
  }  
  /* メニュー全体 */
  #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;
    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 {
    height: 6rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    background: var(--white);    
  }
  /* ロゴ・タイトル */
  #h_logo {
    padding: 1rem;
    padding-right: 7.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #h_logo .logo {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    background: url(/wp-content/uploads/images/logo_sp.webp) center center no-repeat;
    background-size: contain;
  }
  #h_logo .logo img {
    display: none;
  }
  #h_logo .title {
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    line-height: 1.5;
  }
  #h_logo .title .large {
    font-size: 1.6rem;
  }
  #h_logo .title .small {
    font-size: 1.2rem;
  }
  /* ボタン */
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #h_btn .btn {
    width: calc(100% / 2);
    background: var(--white);
  }
  #h_btn .btn a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: var(--white);
    font-family: var(--serif);
    box-sizing: border-box;
  }
  #h_btn .btn a .title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #h_btn .btn a .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }  
  /* 電話番号 */
  #h_btn .btn a.tel {
    background: var(--main-color);
  }
  #h_btn .btn a.tel .logo .icon {
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_tel.webp) center center;
    background-size: contain;
  }
  /* フォーム */
  #h_btn .btn a.form {
    background: var(--sub-color);
  }
  #h_btn .btn a.form .logo .icon {
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_form.webp) center center;
    background-size: contain;
  }  
  /* ハンバーガーメニュー */
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 101;
    color: var(--white);
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  /* アドレス */
  #h_address {
    position: absolute;
    top: calc(100% + 15px);
    right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 30px);
    height: 30px;
    color: var(--white);
    text-align: center;
    letter-spacing: .05em;
    font-family: var(--serif);
    background: rgba(0,0,0,.2);
    
    display: none;
  }
  #h_toggle_btn span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 17px;
    -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: 16px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 22px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 28px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: .8rem;
    font-size: 1rem;
    text-align: center;
    font-family: var(--serif);
  }  
  /* メニュー全体 */
  #h_nav {
    background: rgba(255,255,255,.9);
    display: block;
    width: 320px;
    max-width: 100%;
    height: 100%;
    padding: 9rem 3rem 3rem;
    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;
    margin-top: -.5rem;
    border-radius: 50%;
    line-height: 1;
    background: var(--sub-color);
  }
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width:1240px) {
  #footer {
    position: relative;
  }
  /* トップに戻る */
  #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: 7rem;
    height: 7rem;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50%;
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 1.4rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1.4rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }     
  #page_top a:hover {
    opacity: .7;
  }  
  /* GoogleMap */
  #f_map .map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    vertical-align: middle;
  }
  /* コピーライト */  
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    height: 10rem;
    font-family: var(--serif);
    line-height: 1;
    background: var(--sub-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;
  }    
  
}
@media screen and (max-width:1239px) {
  #footer {
    position: relative;
    padding-bottom: 6rem;
  }  
  /* トップに戻る */
  #page_top {
    position: fixed;
    bottom: 7rem;
    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: 4rem;
    height: 4rem;
    color: var(--white);
    text-align: center;
    border-radius: 50%;
    background: var(--sub-color);
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    margin-top: -.3rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    margin-top: -.3rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }    
  /* GoogleMap */
  #f_map .map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    vertical-align: middle;
  }
  /* コピーライト */

  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    font-family: var(--serif);
    line-height: 1;
    padding: 3rem 0;
    background: var(--sub-color);
  }

  #copyright span.logo {
    margin-bottom: 1.5rem;
  }
  #copyright span.logo img {
    width: auto;
    height: 3rem;
  }   
  
  
}
/******************************************************
追従バナー
******************************************************/
@media screen and (min-width:1025px) {
  .fix_banner {
    position: fixed;
    bottom: 10rem;
    right: 2rem;
    z-index: 100;
  }
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--main-color);
    line-height: 15px;
    text-align: center;
    background: var(--white);
    cursor: pointer;
  }
}
@media screen and (max-width:1024px) {
  .fix_banner {
    position: fixed;
    bottom: 7rem;
    left: 1rem;
    z-index: 99;
  }
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--main-color);
    line-height: 15px;
    text-align: center;
    background: var(--white);
    cursor: pointer;
  }
  .fix_banner img {
    max-width: 60%;
  }
}
/******************************************************
タイトル
******************************************************/
@media screen and (min-width:1240px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: .1em;
  }  
  .main_title .eng {
    font-size: 12rem;
    font-family: var(--alphabet);
    line-height: 1.25;
  }
  .main_title .eng:first-letter {
    color: var(--main-color);
  }
  .main_title .jap {
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);    
    font-family: var(--serif);
  }
  .main_title.white .eng,
  .main_title.white .jap {
    color: var(--white);
  }
  .sub_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
  }
  .sub_title .border {
    padding: .6em;
    color: var(--sub-color);
    font-size: 4.8rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: .1em;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
  }
}
@media screen and (max-width:1239px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: .1em;
  }  
  .main_title .eng {
    font-size: 3.6rem;
    font-family: var(--alphabet);
    line-height: 1.25;
  }
  .main_title .eng:first-letter {
    color: var(--main-color);
  }
  .main_title .jap {
    font-weight: var(--text-weight-bold);    
    font-family: var(--serif);
  }
  .main_title.white .eng,
  .main_title.white .jap {
    color: var(--white);
  }
  .sub_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
  }
  .sub_title .border {
    padding: .6em;
    color: var(--sub-color);
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    letter-spacing: .1em;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
  }
}
/******************************************************
メインビジュアル
******************************************************/
@media screen and (min-width:1240px) {
  #top_main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 16rem 8rem 8rem;
    overflow: hidden;
    border: 15px solid var(--white);
    background: url(/wp-content/uploads/images/bg_main.webp) top center no-repeat;
    background-size: cover;
    box-sizing: border-box;
  }
  #top_main .catch {
    width: 50%;
  }
}
@media screen and (max-width:1239px) {
  #top_main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 1.5rem;
    overflow: hidden;
    border: 10px solid var(--white);
    background: url(/wp-content/uploads/images/bg_main_sp.webp) top center no-repeat;
    background-size: cover;
    box-sizing: border-box;
  }
  #top_main .catch {
    width: 100%;
    padding: 3rem;
    box-sizing: border-box;
  }
}
/******************************************************
このようなお悩みはありませんか？
******************************************************/
@media screen and (min-width:1240px) {
  #top_worry {
    padding: 10rem 0;
  }
  #top_worry .worry_cover {
    position: relative;
    padding: 8rem;
    background: var(--main-color);
  }
  #top_worry .worry_cover:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: url(/wp-content/uploads/images/worry_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_worry .worry_list {
    position: relative;
    width: 960px;
    padding: 6rem;
    background: var(--white);
    box-sizing: border-box;
    z-index: 1;
  }
  #top_worry .worry_list li {
    position: relative;
    padding: .4em;
    padding-left: 2em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold); 
    font-family: var(--serif);
    border-bottom: 1px dotted var(--border-color);
  }
  #top_worry .worry_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    color: var(--sub-color);
    font-size: 1.5em;
    line-height: 1;
  }
  #top_worry .worry_list li:nth-child(odd):before {
    opacity: .7;
  }
}
@media screen and (max-width:1239px) {
  #top_worry {
    padding: 5rem 0;
  }
  #top_worry .worry_cover {
    position: relative;
    padding: 3rem 1.5rem;
    background: var(--main-color);
  }
  #top_worry .worry_cover:before {
    display: block;
    content: "";
    width: 100%;
    aspect-ratio: 3 / 2;
    background: url(/wp-content/uploads/images/worry_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_worry .worry_list {
    position: relative;
    padding: 3rem 1.5rem;
    background: var(--white);
    box-sizing: border-box;
    z-index: 1;
  }
  #top_worry .worry_list li {
    position: relative;
    padding: .4em;
    padding-left: 2em;
    font-weight: var(--text-weight-bold); 
    font-family: var(--serif);
    border-bottom: 1px dotted var(--border-color);
  }
  #top_worry .worry_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    color: var(--sub-color);
    font-size: 1.5em;
    line-height: 1;
  }
  #top_worry .worry_list li:nth-child(odd):before {
    opacity: .7;
  }
}
/******************************************************
お問い合わせ
******************************************************/
@media screen and (min-width:1240px) {
  .top_contact {}
  .top_contact .contact_title {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .top_contact .contact_title .eng {
    color: var(--bg-high-color);
    font-size: 24rem;
    font-family: var(--alphabet);
    line-height: 1;
  }
  .top_contact .contact_title .jap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -1.5em;
    color: var(--sub-color);
    font-size: 3.6rem;    
    font-weight: var(--text-weight-bold);     
    font-family: var(--serif);
    line-height: 1.5;
    text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
  }  
  .top_contact .inner {
    width: 1400px;
  }
  .top_contact .contact_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .top_contact .contact_flex .flex_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 960px);
    padding: 3rem;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 1rem;
    background: var(--sub-color);
    box-sizing: border-box;
  }
  .top_contact .contact_flex .flex_title .title {
    font-size: 3rem;
  }
  .top_contact .contact_flex .flex_title .message {
    display: block;
    width: 100%;
    margin: 1rem 0;
    color: var(--sub-color);
    font-size: 2rem;
    border-radius: 1em;
    line-height: 2;
    background: var(--white);
  }
  .top_contact .contact_flex .flex_list {
    display: flex;
    flex-wrap: wrap;
    width: 900px;
  }
  .top_contact .contact_flex .flex_list .list {
    position: relative;
    width: calc(50% - 1.5rem);
    margin-left: 3rem;
    padding-left: 3em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold); 
    font-family: var(--serif);
    line-height: 3;
    border-radius: 1.5em;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-sizing: border-box;
  }
  .top_contact .contact_flex .flex_list .list:before {
    position: absolute;
    top: 50%;
    left: .3em;
    display: block;
    content: "\f058";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    color: var(--sub-color);
    font-size: 2em;
    line-height: 1;
  }  
  .top_contact .contact_flex .flex_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  .top_contact .contact_flex .flex_list .list:nth-child(n+3) {
    margin-top: 3rem;
  }
  .top_contact .contact_btn_cover {
    margin-top: 8rem;    
    padding: 8rem 0;
    background: var(--sub-color);    
  }
  .top_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_contact .contact_btn .btn {
    width: calc(50% - 3rem);
  }
  .top_contact .contact_btn .btn:nth-child(n+2) {
    margin-left: 4rem;
  }
  .top_contact .contact_btn .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 180px;
    color: var(--sub-color);    
    text-align: center;
    font-family: var(--serif);
    line-height: 1.5;
    border-radius: 1rem;
    background: var(--white);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  .top_contact .contact_btn .btn a:hover {
    opacity: .7;
  }
  .top_contact .contact_btn .btn a .tel_title {
    font-size: 2rem;
    line-height: 1;
  }
  .top_contact .contact_btn .btn a .tel {
    margin: .1em 0;
    font-size: 3rem;
  }
  .top_contact .contact_btn .btn a .tel span {
    font-size: 1.5em;
  }
  .top_contact .contact_btn .btn a .tel_time {
    width: 100%;
    padding: .6em 1.2em;
    background: #eaedf4;
    box-sizing: border-box;
  }
  .top_contact .contact_btn .btn a .web {
    display: flex;
    align-items: center;
    font-size: 6rem;
  }
  .top_contact .contact_btn .btn a .web:after {
    display: flex;
    margin-left: .5em;
    content: "\f138";
    font-family: "FontAwesome";    
    color: var(--sub-color);
    font-size: 1em;
    line-height: 1;
  }    
}
@media screen and (max-width:1239px) {
  .top_contact {}
  .top_contact .contact_title {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }
  .top_contact .contact_title .eng {
    color: var(--bg-high-color);
    font-size: 6rem;
    font-family: var(--alphabet);
    line-height: 1;
  }
  .top_contact .contact_title .jap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -1.5em;
    color: var(--sub-color);
    font-size: 1.6rem;    
    font-weight: var(--text-weight-bold);     
    font-family: var(--serif);
    line-height: 1.5;
    text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
  }  
  .top_contact .inner {}
  .top_contact .contact_flex {}
  .top_contact .contact_flex .flex_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
    padding: 3rem;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 1rem;
    background: var(--sub-color);
    box-sizing: border-box;
  }
  .top_contact .contact_flex .flex_title .title {
    font-size: 2rem;
  }
  .top_contact .contact_flex .flex_title .message {
    display: block;
    width: 100%;
    margin: 1rem 0;
    color: var(--sub-color);
    font-size: 1.6rem;
    border-radius: 1em;
    line-height: 2;
    background: var(--white);
  }
  .top_contact .contact_flex .flex_list {
    margin-bottom: 3rem;
  }
  .top_contact .contact_flex .flex_list .list {
    position: relative;
    width: 100%;
    padding-left: 3em;
    font-size: 1.4rem;
    font-weight: var(--text-weight-bold); 
    font-family: var(--serif);
    line-height: 3;
    border-radius: 1.5em;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-sizing: border-box;
  }
  .top_contact .contact_flex .flex_list .list:before {
    position: absolute;
    top: 50%;
    left: .3em;
    display: block;
    content: "\f058";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    color: var(--sub-color);
    font-size: 2em;
    line-height: 1;
  }  
  .top_contact .contact_flex .flex_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  .top_contact .contact_btn_cover {
    background: var(--sub-color);    
  }
  .top_contact .contact_btn {
    padding: 3rem 0;
  }
  .top_contact .contact_btn .btn {}
  .top_contact .contact_btn .btn:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  .top_contact .contact_btn .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    color: var(--sub-color);    
    text-align: center;
    font-family: var(--serif);
    line-height: 1.5;
    border-radius: 1rem;
    background: var(--white);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  .top_contact .contact_btn .btn a:hover {
    opacity: .7;
  }
  .top_contact .contact_btn .btn a .tel_title {
    line-height: 1;
  }
  .top_contact .contact_btn .btn a .tel {
    margin: .1em 0;
    font-size: 2rem;
  }
  .top_contact .contact_btn .btn a .tel span {
    font-size: 1.5em;
  }
  .top_contact .contact_btn .btn a .tel_time {
    width: 100%;
    padding: .6em 1.2em;
    background: #eaedf4;
    box-sizing: border-box;
  }
  .top_contact .contact_btn .btn a .web {
    display: flex;
    align-items: center;
    font-size: 3rem;
  }
  .top_contact .contact_btn .btn a .web:after {
    display: flex;
    margin-left: .5em;
    content: "\f138";
    font-family: "FontAwesome";    
    color: var(--sub-color);
    font-size: 1em;
    line-height: 1;
  }    
}
/******************************************************
インプラント治療とは？
******************************************************/
@media screen and (min-width:1240px) {
  #top_about {
    padding: 10rem 0 0;
  }
  #top_about .about_list .list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding: 8rem;
    background: url(/wp-content/uploads/images/bg_about001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_list .list:nth-child(even) {
    flex-direction: row;
    background: url(/wp-content/uploads/images/bg_about002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_list .list .cover {
    position: relative;
    z-index: 0;
    width: 960px;
    padding: 8rem;
    background: var(--white);
    box-sizing: border-box;
  }
  #top_about .about_list .list .cover:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 75%;
    height: 8rem;
    content: "";
    background: #eaedf4;
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  #top_about .about_list .list .cover:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 75%;
    height: 8rem;
    content: "";
    background: #eaedf4;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
  }  
  #top_about .about_list .list:nth-child(2) .cover:before,
  #top_about .about_list .list:nth-child(2) .cover:after {
    background: #e5f5ec;
  }
  
  #top_about .about_list .list .border_top {
    position: relative;
    z-index: 1;
  }
  #top_about .about_list .list .border_top:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 12rem;
    height: 12rem;
    content: "";
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #top_about .about_list .list .border_top:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 12rem;
    height: 12rem;
    content: "";
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }
  #top_about .about_list .list .border_bottom {
    position: relative;
    z-index: 1;
  }
  #top_about .about_list .list .border_bottom:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 12rem;
    height: 12rem;
    content: "";
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #top_about .about_list .list .border_bottom:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 12rem;
    height: 12rem;
    content: "";
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }  
  #top_about .about_list .list .box {
    position: relative;
    z-index: 2;
    padding: 8rem;
  }
  #top_about .about_list .list h3 {
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 3.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (max-width:1239px) {
  #top_about {
    padding: 5rem 0 0;
  }
  #top_about .about_list .list {
    padding: 1.5rem;
    background: url(/wp-content/uploads/images/bg_about001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_list .list:nth-child(even) {
    flex-direction: row;
    background: url(/wp-content/uploads/images/bg_about002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_list .list .cover {
    position: relative;
    z-index: 0;
    background: var(--white);
    box-sizing: border-box;
  }
  #top_about .about_list .list .cover:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 75%;
    height: 8rem;
    content: "";
    background: #eaedf4;
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  #top_about .about_list .list .cover:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 75%;
    height: 8rem;
    content: "";
    background: #eaedf4;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
  }  
  #top_about .about_list .list:nth-child(2) .cover:before,
  #top_about .about_list .list:nth-child(2) .cover:after {
    background: #e5f5ec;
  }
  
  #top_about .about_list .list .border_top {
    position: relative;
    z-index: 1;
  }
  #top_about .about_list .list .border_bottom {
    position: relative;
    z-index: 1;
  }
  #top_about .about_list .list .box {
    position: relative;
    z-index: 2;
    padding: 3rem;
  }
  #top_about .about_list .list h3 {
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    border-bottom: 1px solid var(--border-color);
  }
}
/******************************************************
インプラント治療のメリット・デメリット
******************************************************/
@media screen and (min-width:1240px) {
  #top_merit {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_merit .merit_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_merit .merit_flex .flex {
    width: calc(50% - 2rem);
    background: var(--white);
  }
  #top_merit .merit_flex .flex h3 {
    padding: .6em;
    color: var(--white);
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_merit .merit_flex .flex.merit h3 {
    background: var(--main-color);
  }
  #top_merit .merit_flex .flex.demerit h3 {
    background: var(--sub-color);
  }
  #top_merit .merit_flex .flex ul {
    padding: 5rem;
  }
  #top_merit .merit_flex .flex li:nth-child(n+2) {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--border-color);
  }
  #top_merit .merit_flex .flex li .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 .5em;    
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_merit .merit_flex .flex.merit li .heading {
    background: #e5f5ec;
  }
  #top_merit .merit_flex .flex.merit li .heading .number {
    color: var(--main-color);
  }
  #top_merit .merit_flex .flex.demerit li .heading .number {
    color: var(--sub-color);
  }
  #top_merit .merit_flex .flex li .number {
    width: 2em;
  }
  #top_merit .merit_flex .flex li .title {
    width: calc(100% - 2em);
  }
}
@media screen and (max-width:1239px) {
  #top_merit {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_merit .merit_flex {}
  #top_merit .merit_flex .flex {
    background: var(--white);
  }
  #top_merit .merit_flex .flex:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_merit .merit_flex .flex h3 {
    padding: .6em;
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_merit .merit_flex .flex.merit h3 {
    background: var(--main-color);
  }
  #top_merit .merit_flex .flex.demerit h3 {
    background: var(--sub-color);
  }
  #top_merit .merit_flex .flex ul {
    padding: 3rem;
  }
  #top_merit .merit_flex .flex li:nth-child(n+2) {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--border-color);
  }
  #top_merit .merit_flex .flex li .heading {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: .8em;
    padding: .5em;
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_merit .merit_flex .flex.merit li .heading {
    background: #e5f5ec;
  }  
  
  #top_merit .merit_flex .flex li .heading .number {
    font-size: 3rem;
    line-height: 1.5;
  }
  #top_merit .merit_flex .flex.merit li .heading .number {
    color: var(--main-color);
  }
  #top_merit .merit_flex .flex.demerit li .heading .number {
    color: var(--sub-color);
  }
  #top_merit .merit_flex .flex li .number {}
  #top_merit .merit_flex .flex li .title {}
}
/******************************************************
他の治療との比較
******************************************************/
@media screen and (min-width:1240px) {
  #top_comparison {
    padding: 10rem 0;
  }
  #top_comparison .comparison_table .title {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-family: var(--serif);
    text-align: center;
  }
  #top_comparison .comparison_table table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--bg-high-color);
  }
  #top_comparison .comparison_table th,
  #top_comparison .comparison_table td {
    padding: .8em;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #top_comparison .comparison_table th {
    vertical-align: middle;
    font-family: var(--serif);
  }
  #top_comparison .comparison_table td {
    text-align: left;
    background: var(--white);
  }
  #top_comparison .comparison_table .center td {
    color: var(--white);
    font-size: 2rem;
    font-family: var(--serif);
    text-align: center;
    border-bottom: none;
  }
  #top_comparison .comparison_table td.color_a {
    background: var(--main-color);
  }
  #top_comparison .comparison_table td.color_b {
    background: #58b530;
  }
  #top_comparison .comparison_table td.color_c {
    background: #b1c93f;
  }
}
@media screen and (max-width:1239px) {
  #top_comparison {
    padding: 5rem 0;
  }
  #top_comparison .comparison_table .title {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-family: var(--serif);
    text-align: center;
  }
  #top_comparison .comparison_table .table_cover {
    overflow-x: scroll;
  }
  #top_comparison .comparison_table table {
    min-width: 600px;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    background: var(--bg-high-color);
  }
  #top_comparison .comparison_table th,
  #top_comparison .comparison_table td {
    padding: .8em;
    text-align: center;
    line-height: 1.5;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color); 
  }
  #top_comparison .comparison_table th {
    vertical-align: middle;
    font-family: var(--serif);
  }
  #top_comparison .comparison_table td {
    text-align: left;
    background: var(--white);
  }
  #top_comparison .comparison_table .center td {
    color: var(--white);
    font-family: var(--serif);
    text-align: center;
    border-bottom: none;
  }
  #top_comparison .comparison_table td.color_a {
    background: var(--main-color);
  }
  #top_comparison .comparison_table td.color_b {
    background: #58b530;
  }
  #top_comparison .comparison_table td.color_c {
    background: #b1c93f;
  }
  #top_comparison .comparison_table p {}
}
/******************************************************
特徴
******************************************************/
@media screen and (min-width:1240px) {
  #top_feature .feature_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_feature .feature_list .list {
    box-sizing: border-box;
  }
  /* 1 */
  #top_feature .feature_001 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    margin-bottom: 8rem;
    padding: 0 8rem;
    background: url(/wp-content/uploads/images/bg_feature_001.webp) top left no-repeat;
  }
  #top_feature .feature_001 .image {
    width: calc(50% - 4rem);
  }
  #top_feature .feature_001 .text {
    width: calc(50% - 4rem);
  }
  /* 2 */
  #top_feature .feature_002 {
    width: 50%;
    margin-bottom: 8rem;
    padding-right: 4rem;
    padding-left: 8rem;
  }
  /* 3 */
  #top_feature .feature_003 {
    width: 50%;
    margin-bottom: 8rem;
    padding-right: 8rem;
    padding-left: 4rem;
  }
  /* 4 */
  #top_feature .feature_004 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12rem 8rem; 
    color: var(--white);
    background: url(/wp-content/uploads/images/bg_feature_002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_004 .text {
    margin-bottom: 5rem;
    order: 1;
    text-align: center;
  }
  #top_feature .feature_list .list.feature_004 .number {
    color: var(--white)!important;
  }
  /* 5 */
  #top_feature .feature_005 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 12rem 8rem;
    aspect-ratio: 3 / 1;
    text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
    background: url(/wp-content/uploads/images/bg_feature_003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_005 .text {
    text-align: center;
  }
  #top_feature .feature_005 .image {
    margin-top: 5rem;
  }
  #top_feature .feature_005 .image img {
    width: 600px;
  }
  /* パーツ */
  #top_feature .feature_list .image.m_4 {
    margin-bottom: 4rem;
  }
  #top_feature .feature_list .list:nth-child(odd) .image img {
    box-shadow: 1rem 1rem 0 0 rgba(0,153,68,1);     
  }
  #top_feature .feature_list .list:nth-child(even) .image img {
    box-shadow: 1rem 1rem 0 0 rgba(46,80,144,1);
  }  
  #top_feature .feature_list .list .image a img {
    box-shadow: none!important;
  }
  
  
  #top_feature .feature_list .text {
    padding: 0 4rem;
    font-size: 1.8rem;
    box-sizing: border-box;
  }
  #top_feature .feature_list .number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    font-style: italic;
    text-align: center;
    line-height: 1;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_feature .feature_list .list:nth-child(odd) .number {
    color: var(--main-color);
  }
  #top_feature .feature_list .list:nth-child(even) .number {
    color: var(--sub-color);
  }
  #top_feature .feature_list .number .large {
    margin-left: .2em;
    font-size: 8rem;
  }
  #top_feature .feature_list .number .small {
    font-size: 2.4rem;
  }
  #top_feature .feature_list h3 {
    margin-bottom: 1em;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_feature .feature_list h3 span {
    display: inline-block;
    padding-bottom: .5em;
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (max-width:1239px) {
  #top_feature .feature_list {
    
  }
  #top_feature .feature_list .list {
    box-sizing: border-box;
  }
  /* 1 */
  #top_feature .feature_001 {
    width: 100%;
  }
  #top_feature .feature_001 .image {
  }
  #top_feature .feature_001 .text {
  }
  /* 2 */
  #top_feature .feature_002 {
  }
  /* 3 */
  #top_feature .feature_003 {
  }
  /* 4 */
  #top_feature .feature_004 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5rem 1.5rem;
    color: var(--white);
    background: url(/wp-content/uploads/images/bg_feature_002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_004 .text {
    padding: 0!important;
  }
  #top_feature .feature_004 .text {
    order: 1;
    text-align: center;
  }
  #top_feature .feature_list .list.feature_004 .number {
    color: var(--white)!important;
  }
  /* 5 */
  #top_feature .feature_005 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 5rem 1.5rem;
    aspect-ratio: 3 / 1;
    text-shadow: 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff, 0 0 .3em #fff;
    background: url(/wp-content/uploads/images/bg_feature_003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_005 .text {
    padding: 0!important;
  }
  #top_feature .feature_005 .image {
    margin-top: 3rem;
    text-align: center;
  }
  #top_feature .feature_005 .image img {
    max-width: calc(100% - 3rem);
  }  
  /* パーツ */
  #top_feature .feature_list .image.m_4 {
    margin-bottom: 4rem;
  }
  #top_feature .feature_list .list .image a img {
    box-shadow: none!important;
  }
  
  
  #top_feature .feature_list .text {
    padding: 3rem 1.5rem;
    box-sizing: border-box;
  }
  #top_feature .feature_list .number {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    font-style: italic;
    text-align: center;
    line-height: 1;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_feature .feature_list .list:nth-child(odd) .number {
    color: var(--main-color);
  }
  #top_feature .feature_list .list:nth-child(even) .number {
    color: var(--sub-color);
  }
  #top_feature .feature_list .number .large {
    margin-left: .2em;
    font-size: 4rem;
  }
  #top_feature .feature_list .number .small {}
  #top_feature .feature_list h3 {
    margin-bottom: 1em;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_feature .feature_list h3 span {
    display: inline-block;
    padding-bottom: .5em;
    border-bottom: 1px solid var(--border-color);
  }
}
/******************************************************
治療の流れ
******************************************************/
@media screen and (min-width:1240px) {
  #top_flow {
    padding: 10rem 0 0;
    background: var(--white);
  }
  #top_flow .flow_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_flow .flow_list .list {
    position: relative;
    padding: 10rem 0;
  }
  #top_flow .flow_list .list:nth-child(odd) {
    background: var(--bg-high-color);
  }
  #top_flow .flow_list .list:nth-child(even) {
    background: var(--white);
  }
  #top_flow .flow_list .list:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    margin-left: -120px;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-top: 30px solid var(--white);
  }
  #top_flow .flow_list .list:nth-child(even):before {  
    border-top: 30px solid var(--bg-high-color);
  }
  #top_flow .flow_list .list:nth-child(1):before {
    display: none;
  }
  #top_flow .flow_list .list_inner {
    position:relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  #top_flow .flow_list .list_inner .number {
    order: 1;
    width: 100px;
    color: var(--sub-color);
    font-size: 8rem;
    line-height: 1;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_flow .flow_list .list_inner .image {
    order: 3;
    width: 300px;
  }
  #top_flow .flow_list .list_inner .comment {
    order: 2;
    width: calc(100% - 500px);
  }
  #top_flow .flow_list .list_inner .comment h3 {
    margin-bottom: .5em;
    padding-bottom: .5em;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (max-width:1239px) {

  #top_flow {
    margin: 5rem 0;
    background: #fff;
  }
  #top_flow .flow_comment {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }
  #top_flow .flow_list .list {
    position: relative;
    padding: 5rem 0;
  }
  #top_flow .flow_list .list:nth-child(odd) {
    background: var(--bg-high-color);
  }
  #top_flow .flow_list .list:nth-child(even) {
    background: var(--white);
  }
  #top_flow .flow_list .list:nth-child(n+2):before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    margin-left: -80px;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 30px solid var(--white);
  }
  #top_flow .flow_list .list:nth-child(even):before {  
    border-top: 30px solid var(--bg-high-color);
  }
  #top_flow .flow_list .list_inner {
    position:relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  #top_flow .flow_list .list_inner .number {
    order: 1;
    width: 100%;
    margin-bottom: .5em;
    color: #4c6b8a;
    font-size: 4rem;
    line-height: 1;
    text-align: center;
    font-family: '游明朝体', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', 'Noto Serif JP', 'MS PMincho', 'Times New Roman', serif;     
  }
  #top_flow .flow_list .list_inner .image {
    order: 2;
    width: 100%;
    margin-bottom: 2rem;
  }
  #top_flow .flow_list .list_inner .comment {
    order: 3;
  }
  #top_flow .flow_list .list_inner .comment h3 {
    margin-bottom: .5em;
    padding-bottom: .5em;
    font-size: 2rem;
    line-height: 1.5;
    font-family: '游明朝体', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', 'Noto Serif JP', 'MS PMincho', 'Times New Roman', serif;  
    border-bottom: 1px solid #ccc;
  }
}
/******************************************************
よくあるご質問
******************************************************/
@media screen and (min-width:1240px) {
  #top_faq {
    margin: 10rem 0;
  }
  #top_faq .faq_btn {
    display: flex;
    flex-wrap: wrap;
  }
  #top_faq .faq_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 8rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    cursor: pointer;
  }
  #top_faq .faq_btn .btn:nth-child(1) {
    background: var(--main-color);
  }
  #top_faq .faq_btn .btn:nth-child(2) {
    background: var(--sub-color);
  }
  #top_faq .faq_contents .content {
    padding: 8rem 0;
    display: none;
  }
  #top_faq .faq_contents .content.show {
    display: block;
  }
  #top_faq .faq_contents .content:nth-child(1) {
    border-top: 5px solid var(--main-color);
    border-bottom: 5px solid var(--main-color);
    background: #e5f5ec;
  }
  #top_faq .faq_contents .content:nth-child(2) {
    border-top: 5px solid var(--sub-color);
    border-bottom: 5px solid var(--sub-color);
    background: #eaedf4;
  }
  #top_faq .faq_contents .content h3 {
    margin-bottom: 5rem;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }    
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 2rem;
  }
  #top_faq .faq_list dt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 6rem;
    padding-right: 6rem;
    padding-left: calc(6rem + 1em);
    font-size: 2rem;
    line-height: 1.5;
    font-family: var(--serif);
    background: var(--white);
    box-sizing: border-box;
    cursor: pointer;
  }
  #top_faq .faq_list dt:before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    content: "Q";
    color: var(--white);
    text-align: center;
  }
  #top_faq .content:nth-child(1) .faq_list dt:before {
    background: var(--main-color);
  }
  #top_faq .content:nth-child(2) .faq_list dt:before {
    background: var(--sub-color);
  }
  #top_faq .faq_list dt .question:before {
    position: absolute;
    top: 29px;
    right: 20px;
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: var(--text-color);
  }
  #top_faq .faq_list dt .question:after {
    position: absolute;
    top: 20px;
    right: 29px;
    display: block;
    content: "";
    width: 2px;
    height: 20px;
    background: var(--text-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;      
  }  
  #top_faq .faq_list dt.active .question:after {
    opacity: 0;
  }
  #top_faq .faq_list dd {
    display: none;
    padding: 3rem;
  }
  #top_faq .faq_list dd.active {
    display: block;
  }
}
@media screen and (max-width:1239px) {
  #top_faq {
    margin: 5rem 0;
  }
  #top_faq .faq_btn {
    display: flex;
    flex-wrap: wrap;
  }
  #top_faq .faq_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 1.5rem;
    line-height: 1.5;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    cursor: pointer;
    box-sizing: border-box;
  }
  #top_faq .faq_btn .btn:nth-child(1) {
    background: var(--main-color);
  }
  #top_faq .faq_btn .btn:nth-child(2) {
    background: var(--sub-color);
  }
  #top_faq .faq_contents .content {
    padding: 5rem 0;
    display: none;
  }
  #top_faq .faq_contents .content.show {
    display: block;
  }
  #top_faq .faq_contents .content:nth-child(1) {
    border-top: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
    background: #e5f5ec;
  }
  #top_faq .faq_contents .content:nth-child(2) {
    border-top: 3px solid var(--sub-color);
    border-bottom: 3px solid var(--sub-color);
    background: #eaedf4;
  }
  #top_faq .faq_contents .content h3 {
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }    
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_faq .faq_list dt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 6rem;
    padding-right: 6rem;
    padding-left: calc(6rem + 1em);
    line-height: 1.5;
    font-family: var(--serif);
    background: var(--white);
    box-sizing: border-box;
    cursor: pointer;
  }
  #top_faq .faq_list dt:before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    content: "Q";
    color: var(--white);
    text-align: center;
  }
  #top_faq .content:nth-child(1) .faq_list dt:before {
    background: var(--main-color);
  }
  #top_faq .content:nth-child(2) .faq_list dt:before {
    background: var(--sub-color);
  }
  #top_faq .faq_list dt .question:before {
    position: absolute;
    top: 29px;
    right: 24px;
    display: block;
    content: "";
    width: 12px;
    height: 2px;
    background: var(--text-color);
  }
  #top_faq .faq_list dt .question:after {
    position: absolute;
    top: 24px;
    right: 29px;
    display: block;
    content: "";
    width: 2px;
    height: 12px;
    background: var(--text-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;      
  }  
  #top_faq .faq_list dt.active .question:after {
    opacity: 0;
  }
  #top_faq .faq_list dd {
    display: none;
    padding: 3rem;
  }
  #top_faq .faq_list dd.active {
    display: block;
  }
}
/******************************************************
ごあいさつ
******************************************************/
@media screen and (min-width:1240px) {
  #top_greeting {
    position: relative;
    padding: 12rem 0;
    overflow: hidden;
  }
  #top_greeting:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    content: "GREETING";
    color: var(--main-color);
    font-size: 16rem;
    text-align: center;
    line-height: 1;
    font-family: var(--alphabet);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1;
  }
  #top_greeting:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    content: "";
    width: 100%;
    height: 240px;
    background: #e5f5ec;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
  }
  #top_greeting .greeting_flex {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
  }
  #top_greeting .greeting_flex .image {
    position: relative;
    width: 480px;
  }
  #top_greeting .greeting_flex .image .name {
    position: absolute;
    bottom: -80px;
    left: -80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 240px;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--main-color);
  }
  #top_greeting .greeting_flex .image .name .career {
    font-size: 2rem;
  }
  #top_greeting .greeting_flex .image .name .jap {
    font-size: 3rem;
  }
  #top_greeting .greeting_flex .text {
    width: calc(100% - 600px);
    font-size: 1.8rem;
  }
  #top_greeting .greeting_flex h2 {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_greeting .greeting_flex h2 span {
    display: inline-block;
    padding: 0 1em;
    color: var(--white);
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    background: var(--main-color);
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  }
}
@media screen and (max-width:1239px) {
  #top_greeting {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
  }
  #top_greeting:before {
    position: relative;
    display: block;
    height: 100%;
    margin-bottom: 3rem;
    content: "GREETING";
    color: var(--main-color);
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    font-family: var(--alphabet);
    z-index: 1;
  }
  #top_greeting:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100px;
    background: #e5f5ec;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
  }
  #top_greeting .greeting_flex {
    z-index: 2;
  }
  #top_greeting .greeting_flex .image {
    position: relative;
    margin-bottom: 3rem;
  }
  #top_greeting .greeting_flex .image .name {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 120px;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--main-color);
  }
  #top_greeting .greeting_flex .image .name .career {
  }
  #top_greeting .greeting_flex .image .name .jap {
    font-size: 2rem;
  }
  #top_greeting .greeting_flex .text {
  }
  #top_greeting .greeting_flex h2 {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_greeting .greeting_flex h2 span {
    display: inline-block;
    padding: 0 1em;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
    background: var(--main-color);
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
  }
}
/******************************************************
スライダー
******************************************************/
@media screen and (min-width:1240px) {
  #top_slider {
    padding: 2rem 0;
  }
  .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: 25vw;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }    
}
@media screen and (max-width:1239px) {
  #top_slider {
    padding: 1rem 0;
  }
  .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 5px;
    margin: 0;
    width: 40vw;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }    
}
/******************************************************
クリニック情報
******************************************************/
@media screen and (min-width:1240px) {
  #top_clinic {
    padding: 10rem 0;
  }
  #top_clinic .clinic_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  #top_clinic .clinic_data {
    width: 600px;
    padding: 0 8rem;
    box-sizing: border-box;
  }
  #top_clinic .clinic_data .name {
    font-weight: var(--text-weight-bold);
  }
  #top_clinic .clinic_data .logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  #top_clinic .clinic_data .logo img {
    aspect-ratio: 16 / 9;
  }
  #top_clinic .clinic_data .address {
    position: relative;
    padding-left: 1.5em;
  }
  #top_clinic .clinic_data .address:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f041";
    font-family: "FontAwesome";    
    color: var(--main-color);
  }
  #top_clinic .clinic_data .tel {
    position: relative;
    padding-left: 1.5em;
  }
  #top_clinic .clinic_data .tel:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f095";
    font-family: "FontAwesome";    
    color: var(--main-color);
  }  
  #top_clinic .clinic_data .schedule {
    margin-top: 1em;
  }
  #top_clinic .clinic_data .schedule table {
    width: 100%;
    border-top: 1px solid var(--text-color);
  }
  #top_clinic .clinic_data .schedule th,
  #top_clinic .clinic_data .schedule td {
    padding: .8em;
    border-bottom: 1px solid var(--text-color);
  }
  #top_clinic .clinic_data .schedule th {
    padding: .8em 0;
    text-align: left;
  }
  #top_clinic .clinic_data .schedule td span {
    color: var(--main-color);
  }
  #top_clinic .clinic_data .schedule p {
    text-align: right;
  }
  #top_clinic .clinic_map {
    width: calc(100% - 600px);
  }
  #top_clinic .clinic_map {
    position: relative;
    width: calc(100% - 600px);
    height: 0;
    padding-top: 640px;
  }
  #top_clinic .clinic_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width:1239px) {
  #top_clinic {
    padding: 5rem 0;
  }
  #top_clinic .clinic_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  #top_clinic .clinic_data {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  #top_clinic .clinic_data .name {
    font-weight: var(--text-weight-bold);
  }
  #top_clinic .clinic_data .logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  #top_clinic .clinic_data .logo img {
    aspect-ratio: 16 / 9;
  }
  #top_clinic .clinic_data .address {
    position: relative;
    padding-left: 1.5em;
  }
  #top_clinic .clinic_data .address:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f041";
    font-family: "FontAwesome";    
    color: var(--main-color);
  }
  #top_clinic .clinic_data .tel {
    position: relative;
    padding-left: 1.5em;
  }
  #top_clinic .clinic_data .tel:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "\f095";
    font-family: "FontAwesome";    
    color: var(--main-color);
  }  
  #top_clinic .clinic_data .schedule {
    margin-top: 1em;
  }
  #top_clinic .clinic_data .schedule table {
    width: 100%;
    border-top: 1px solid var(--text-color);
  }
  #top_clinic .clinic_data .schedule th,
  #top_clinic .clinic_data .schedule td {
    padding: .8em;
    border-bottom: 1px solid var(--text-color);
  }
  #top_clinic .clinic_data .schedule th {
    padding: .8em 0;
    text-align: left;
  }
  #top_clinic .clinic_data .schedule td span {
    color: var(--main-color);
  }
  #top_clinic .clinic_data .schedule p {
    text-align: right;
  }
  #top_clinic .clinic_map {}
  #top_clinic .clinic_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  }
  #top_clinic .clinic_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


/******************************************************
症例紹介
******************************************************/
@media screen and (min-width:1240px) {
  #top_case {
    margin-bottom: 10rem;
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_case .case_list .list {
    display: flex;
    flex-direction: column;
    width: 960px;
    padding: 2rem;
    box-sizing: border-box;
  }
  #top_case .case_list .arrow {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
  }
  #top_case .case_list .prev {
    left: calc(50% - 520px);
    background: var(--bg-high-color) url(/wp-content/uploads/images/icon_prev.webp) center center no-repeat;
    background-size: contain;
  }
  #top_case .case_list .next {
    right: calc(50% - 520px);
    background: var(--bg-high-color) url(/wp-content/uploads/images/icon_next.webp) center center no-repeat;
    background-size: contain;    
  }
  #top_case .case_list .list .box {
    flex-grow: 1;
    padding: 5rem;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    background: var(--white);
  }
  #top_case .case_list .list .image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_case .case_list .list .image:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 20px;
    height: 60px;
    margin-top: -30px;
    margin-left: -10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--border-color);
  }
  #top_case .case_list .list .image .before,
  #top_case .case_list .list .image .after {
    position: relative;
    width: calc(50% - 2rem);    
  }
  #top_case .case_list .list .image .before:before,
  #top_case .case_list .list .image .after:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 120px;
    padding: .4em;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    background: rgba(46,80,144,.8);
  }
  #top_case .case_list .list .image .before:before {
    content: "Before";
  }
  #top_case .case_list .list .image .after:before {
    content: "After";
  }
  #top_case .case_list .list .image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
  #top_case .case_list .list table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);    
  }
  #top_case .case_list .list th,
  #top_case .case_list .list td {
    padding: .8em;
    text-align: left;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #top_case .case_list .list th {
    width: 25%;
    color: var(--white);
    background: var(--sub-color);
  }
  #top_case .case_list .list td {
  }
}
@media screen and (max-width:1239px) {
  #top_case {
    margin-bottom: 5rem;
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_case .case_list .list {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  #top_case .case_list .arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
  }
  #top_case .case_list .prev {
    left: .5rem;
    background: var(--bg-high-color) url(/wp-content/uploads/images/icon_prev.webp) center center no-repeat;
    background-size: contain;
  }
  #top_case .case_list .next {
    right: .5rem;
    background: var(--bg-high-color) url(/wp-content/uploads/images/icon_next.webp) center center no-repeat;
    background-size: contain;    
  }
  #top_case .case_list .list .box {
    flex-grow: 1;
    padding: 3rem;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    background: var(--white);
  }
  #top_case .case_list .list .image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_case .case_list .list .image:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 20px;
    height: 40px;
    margin-top: -20px;
    margin-left: -10px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background: var(--border-color);
  }
  #top_case .case_list .list .image .before,
  #top_case .case_list .list .image .after {
    position: relative;
    width: calc(50% - 1.5rem);    
  }
  #top_case .case_list .list .image .before:before,
  #top_case .case_list .list .image .after:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    padding: .2em;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    background: rgba(46,80,144,.8);
  }
  #top_case .case_list .list .image .before:before {
    content: "Before";
  }
  #top_case .case_list .list .image .after:before {
    content: "After";
  }
  #top_case .case_list .list .image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
  #top_case .case_list .list table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);    
  }
  #top_case .case_list .list th,
  #top_case .case_list .list td {
    padding: .8em;
    text-align: left;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #top_case .case_list .list th {
    width: 25%;
    color: var(--white);
    background: var(--sub-color);
  }
  #top_case .case_list .list td {
  }
}