@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=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic&display=swap');
/******************************************************
基本設定
******************************************************/
:root {  
  --white: #fff; /* 白 */
  --main-color: #aace37; /* メインカラー */
  --sub-color: #f2aeca; /* サブカラー */
  --bg-color: #aace37; /* 背景色1（基本的にメインカラーと同じ） */
  --bg-high-color: #ffefef; /* 背景色 */
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 18px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #59390f; /* テキストカラー（通常） */
  --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", 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);
}
/********************************************************
ヘッダー
********************************************************/
@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-right: calc(100px + 1.5rem);
    box-sizing: border-box;
    z-index: 100;
  }
  /* ロゴ・タイトル */
  #h_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 180px;
    padding: 5rem;
    border-radius: 0 0 5rem 0;
    text-align: center;
    background: var(--white);
    box-sizing: border-box;
  }
  #h_logo .image {}
  #h_logo .image img {
    width: 100%;
    height: auto;
  }
  #h_logo .type {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 3.2rem;
    background: var(--white);
  }
  #h_logo .type .large {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  /* ボタン */
  #h_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 1.5rem;
  }
  #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; 
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    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;     
    border-radius: 2rem 0 0 2rem;
    background: #f9d3e3;
  }
  #h_btn .btn a.tel .logo {
  }
  #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;    
    border-radius: 0 2rem 2rem 0;
    background: #f2aeca;
  }
  #h_btn .btn a.form .logo {}
  #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;
    border-radius: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    text-align: center;
    letter-spacing: .05em;
    background:var(--white);
  }
  /* ハンバーガーメニュー */
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 100px;
    height: 100px;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 2rem;
    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;
    font-size: .8em;
    text-align: center;
  }  
  /* メニュー全体 */
  #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;
    height: 6rem;
    box-sizing: border-box;
  }
  #h_logo .image {
    width: 40px;
    height: 40px;
    background: url(/wp-content/uploads/images/logo_sp.webp) center center no-repeat;
    background-size: contain;
  }
  #h_logo .image img {
    display: none;
    height: 1.6rem;
    vertical-align: middle;
  }
  #h_logo .type {
    display: flex;
    flex-direction: column;
    margin-left: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
  #h_logo .type .large {
    font-weight: var(--text-weight-bold);
  }
  /* ボタン */
  #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;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    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: #f9d3e3;
  }
  #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: #f2aeca;
  }
  #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;
    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) {
 #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 10rem;
    line-height: 1;
    background: var(--white);
  }
  #copyright span.logo:after {
    display: inline-block;
    content: "";
    width: 1px;
    margin: 0 1em;
    height: 1em;
    background: var(--text-color);
    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: 7rem;
    height: 7rem;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 50%;
    background: #f9d3e3;
    -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(--text-color);
  }
  #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(--text-color);
  }     
  #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;
    text-align: center;
    height: 6rem;
    line-height: 1;
  }
  #copyright span.logo:after {
    display: inline-block;
    content: "";
    width: 1px;
    margin: 0 1em;
    height: 1em;
    background: var(--text-color);
    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;
  }    
  
  
}
/********************************************************
共通
********************************************************/
@media screen and (min-width:1240px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  .main_title .jap {
    font-size: 4.8rem;
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 2.4rem;
  }
}
@media screen and (max-width:1239px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  .main_title .jap {
    font-size: 2.4rem;
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 1.4rem;
  }
}
/********************************************************
メインビジュアル
********************************************************/
@media screen and (min-width:1240px) {
  #top_main {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    background: url(/wp-content/uploads/images/main_img001.webp) top center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #main_image {}
  #catch_copy {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: calc(100% - 960px);
    box-sizing: border-box;
  }
  #catch_copy .sub_catch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    padding: 0 5em;
    height: 2em;
    color: var(--white);
    font-size: 1.6vw;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    border-radius: 1em;
    box-sizing: border-box;
    background: var(--main-color);
  }
  #catch_copy .main_catch {
    margin-top: 1em;
    color: var(--white);
    font-size: 1.8vw;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
    font-family: var(--catch);
    text-shadow: 0 0 .4em rgba(0,0,0,.2),0 0 .4em rgba(0,0,0,.2),0 0 .4em rgba(0,0,0,.2);    
  }
  #catch_copy .main_catch .large {
    font-size: 2.4vw;
  }
  #catch_copy .main_catch .small {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 1px solid var(--white);
  }
}
@media screen and (max-width:1239px) {
  #top_main {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: url(/wp-content/uploads/images/main_img001.webp) top center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #main_image {}
  #catch_copy {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
  }
  #catch_copy .sub_catch {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    padding: 0 5em;
    height: 2em;
    color: var(--white);
    font-size: 3.6vw;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    border-radius: 1em;
    box-sizing: border-box;
    background: var(--main-color);
  }
  #catch_copy .main_catch {
    margin-top: 1em;
    color: var(--white);
    font-size: 4.2vw;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
    font-family: var(--catch);
    text-shadow: 0 0 .4em rgba(0,0,0,.2),0 0 .4em rgba(0,0,0,.2),0 0 .4em rgba(0,0,0,.2);    
  }
  #catch_copy .main_catch .large {
    font-size: 5.6vw;
  }
  #catch_copy .main_catch .small {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 1px solid var(--white);
  }
}
/********************************************************
こんなお悩みありませんか
********************************************************/
@media screen and (min-width:1240px) {
  #top_worry #worry_box {
    padding: 10rem 0;
    background: url(/wp-content/uploads/images/bg_worry.webp) top center no-repeat;
    background-size: cover;
  }
  #top_worry .worry_list {
    width: 640px;
    margin-left: auto;
  }
  #top_worry .worry_list .title {
    margin-bottom: .8em;
    font-size: 4.8rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    text-align: center;
  }
  #top_worry .worry_list .title span {
    display: inline-block;
    margin: 0 .3em;
    border-bottom: 5px dotted var(--main-color);
  }
  #top_worry .worry_list li {
    position: relative;
    padding: .6em 0;
    padding-left: 2.4em;
    font-size: 2rem;
    font-family: var(--sans);
    font-weight: var(--text-weight-bold);
    border-bottom: 1px dotted var(--text-color);
  }
  #top_worry .worry_list li:first-child {
    border-top: 1px dotted var(--text-color);
  }
  #top_worry .worry_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-top: -.8em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_green.webp) center center no-repeat;
    background-size: contain;
  }
  #top_worry #worry_message {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18rem 0 12rem;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    box-sizing: border-box;
    background: var(--bg-high-color) url(/wp-content/uploads/images/worry_img001.webp) left center no-repeat;
    background-size: contain;
  }
  #top_worry #worry_message:before {
    position: absolute;
    display: block;
    content: "";
    top: -1px;
    left: 0;
    width: 100%;
    height: 12rem;
    background: var(--main-color);    
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }  
  #top_worry #worry_message {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #top_worry #worry_message p {
    display: inline-block;
    border-bottom: 5px dotted var(--sub-color);
  }
}
@media screen and (max-width:1239px) {
  #top_worry {     
  }
  #top_worry #worry_box {
    padding: 0 0 5rem;
    background: #f2f2f4;
    background-size: 100% auto;     
  }
  #top_worry #worry_box:before {
    display: block;
    content: "";
    width: 100%;
    aspect-ratio: 2 / 1;
    margin-bottom: -10vw;
    background: url(/wp-content/uploads/images/bg_worry_sp.webp) top center no-repeat;
    background-size: contain;
  }
  #top_worry .worry_list {
    margin-left: auto;
  }
  #top_worry .worry_list .title {
    margin-bottom: .8em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    text-align: center;
  }
  #top_worry .worry_list .title span {
    display: inline-block;
    margin: 0 .3em;
    border-bottom: 3px dotted var(--main-color);
  }
  #top_worry .worry_list li {
    position: relative;
    padding: .6em 0;
    padding-left: 2.4em;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: var(--sans);
    font-weight: var(--text-weight-bold);
    border-bottom: 1px dotted var(--text-color);
  }
  #top_worry .worry_list li:first-child {
    border-top: 1px dotted var(--text-color);
  }
  #top_worry .worry_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-top: -.8em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_green.webp) center center no-repeat;
    background-size: contain;
  }
  #top_worry #worry_message {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1.5rem 5rem;
    font-size: 1.4rem;
    font-weight: var(--text-weight-bold);
    box-sizing: border-box;
    background: var(--bg-high-color);
    /*
    background: var(--bg-high-color) url(/wp-content/uploads/images/worry_img001.webp) left center no-repeat;
    background-size: contain;
    */
  }
  #top_worry #worry_message:before {
    position: absolute;
    display: block;
    content: "";
    top: -1px;
    left: 0;
    width: 100%;
    height: 5rem;
    background: var(--main-color);    
    clip-path: polygon(100% 0, 0 0, 50% 100%);
  }  
  #top_worry #worry_message .message_title:before {
    display: block;
    content: "";
    width: 100%;
    margin-bottom: 1rem;
    aspect-ratio: 5 / 2;
    background: url(/wp-content/uploads/images/worry_img001.webp) top center no-repeat;
    background-size: contain;
  }
  #top_worry #worry_message {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #top_worry #worry_message p {
    line-height: 2.5;
  }
  #top_worry #worry_message span {
    display: inline-block;
    border-bottom: 3px dotted var(--sub-color);
  }  
}
/******************************************************
お問い合わせ
******************************************************/
@media screen and (min-width:1240px) {
  .section_contact {
    padding: 10rem 0;
    background: #e6fdff url(/wp-content/uploads/images/bg_contact.webp) top center no-repeat;
    background-size: 100% auto;
  }
  .section_contact .contact_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section_contact .contact_title span {
    display: inline-block;
    font-size: 8rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    border-radius: 4rem;
  }
  .section_contact .contact_comment {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center; 
  }
  .section_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section_contact .contact_btn .btn {
    width: 50%;
  }
  .section_contact .contact_btn .btn a {
    display: block;
  }
  .section_contact .contact_btn .btn a.tel {
    border-radius: 2rem 0 0 2rem;
    background: #f9d3e3;    
  }
  .section_contact .contact_btn .btn a.web {
    border-radius: 0 2rem 2rem 0;
    background: #f2aeca;    
  }  
  .section_contact .contact_btn .btn a .border {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    height: 150px;
    font-size: 3.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  .section_contact .contact_btn .btn a span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section_contact .contact_btn .btn a.tel span:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .8em;
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .contact_btn .btn a.web span:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .8em;
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width:1239px) {
  .section_contact {
    padding: 5rem 0;
    background: #e6fdff url(/wp-content/uploads/images/bg_contact.webp) top center no-repeat;
    background-size: 100% auto;
  }
  .section_contact .contact_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section_contact .contact_title span {
    display: inline-block;
    font-size: 3rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  .section_contact .contact_comment {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    text-align: center; 
  }
  .section_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .section_contact .contact_btn .btn:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  .section_contact .contact_btn .btn a {
    display: block;
  }
  .section_contact .contact_btn .btn a.tel {
    border-radius: 2rem;
    background: #f9d3e3;    
  }
  .section_contact .contact_btn .btn a.web {
    border-radius: 2rem;
    background: #f2aeca;    
  }  
  .section_contact .contact_btn .btn a .border {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    height: 80px;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  .section_contact .contact_btn .btn a span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section_contact .contact_btn .btn a.tel span:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .8em;
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  .section_contact .contact_btn .btn a.web span:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .8em;
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }
}
/******************************************************
重要性
******************************************************/
@media screen and (min-width:1240px) {
  #top_important {
    padding: 10rem 0;
  }
  #top_important .important_comment {
    padding: 12rem 0;
    background-color: #ffdede;
    background-image: radial-gradient(circle, #ffeded 15px, transparent 15px), radial-gradient(circle, #ffeded 15px, transparent 15px);
    background-position: 0 0, 30px 60px;
    background-size: 60px 120px;    
  }
  #top_important .important_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  #top_important .important_box .image {
    width: calc(50% - 4rem);
  }
  #top_important .important_box .comment {
    width: calc(50% - 4rem);
    font-size: 2rem;
  }
  #top_important .important_cover {
    position: relative;
    padding: 12rem 0;
    background-color: #ffd0d0;
    background-image: linear-gradient(90deg, #ffdbdb80 20px, transparent 20px), linear-gradient(#ffdbdb80 20px, transparent 20px);
    background-position: 10px 10px;
    background-size: 40px 40px;    
  }
  #top_important .important_cover:before {
    position: absolute;
    top: -12rem;
    left: 6rem;
    display: block;
    content: "";
    height: 24rem;
    aspect-ratio: 3 / 2;
    background: url(/wp-content/uploads/images/important_crown_left.webp) center center no-repeat;
    background-size: contain;
  }
  #top_important .important_cover:after {
    position: absolute;
    top: -12rem;
    right: 6rem;
    display: block;
    content: "";
    height: 24rem;
    aspect-ratio: 3 / 2;
    background: url(/wp-content/uploads/images/important_crown_right.webp) center center no-repeat;
    background-size: contain;
  }
  #top_important .important_list {
  }
  #top_important .important_list .list {
    padding: 6rem;
    border-radius: 3rem;
    background: #ffeded;
    box-sizing: border-box;
  }
  #top_important .important_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_important .important_list .list h3 {
    margin-bottom: 1em;
    padding: .6rem;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    border-radius: .3rem;
    background: var(--main-color);
  }
  #top_important .important_list .list h3 span {
    display: block;
    padding: .6rem;
    border-top: 2px dashed var(--white);
    border-bottom: 2px dashed var(--white);
  }
}
@media screen and (max-width:1239px) {
  #top_important {
    padding: 5rem 0;
  }
  #top_important .important_comment {
    padding: 5rem 0;
    background-color: #ffdede;
    background-image: radial-gradient(circle, #ffeded 15px, transparent 15px), radial-gradient(circle, #ffeded 15px, transparent 15px);
    background-position: 0 0, 30px 60px;
    background-size: 60px 120px;    
  }
  #top_important .important_box {}
  #top_important .important_box .image {
    margin-bottom: 3rem;
  }
  #top_important .important_box .comment {
  }
  #top_important .important_cover {
    position: relative;
    padding: 5rem 0;
    background-color: #ffd0d0;
    background-image: linear-gradient(90deg, #ffdbdb80 20px, transparent 20px), linear-gradient(#ffdbdb80 20px, transparent 20px);
    background-position: 10px 10px;
    background-size: 40px 40px;    
  }
  #top_important .important_list {
  }
  #top_important .important_list .list {
    padding: 3rem 1.5rem;
    border-radius: 1rem;
    background: #ffeded;
    box-sizing: border-box;
  }
  #top_important .important_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_important .important_list .list h3 {
    margin-bottom: 1em;
    padding: .6rem;
    color: var(--white);
    font-size: 1.8rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    border-radius: .3rem;
    background: var(--main-color);
  }
  #top_important .important_list .list h3 span {
    display: block;
    padding: .6rem;
    border-top: 2px dashed var(--white);
    border-bottom: 2px dashed var(--white);
  }
}
/******************************************************
特徴
******************************************************/
@media screen and (min-width:1240px) {
  /* 1 */
  #top_feature .feature_001 {
    padding: 18rem 0 10rem;
    background-color: var(--main-color);
    background-image: radial-gradient(circle, #b1d836 15px, transparent 15px), radial-gradient(circle, #b1d836 15px, transparent 15px);
    background-position: 0 0, 30px 60px;
    background-size: 60px 120px;
  }
  #top_feature .feature_001 .feature_cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-right: 15%;
    padding: 8rem;
    padding-left: 15%;
    background: rgba(255,255,255,1);
  }
  #top_feature .feature_001 .feature_image {
    position: relative;
    width: calc(50% - 3rem);
  }
  #top_feature .feature_001 .feature_image img {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_feature .feature_001 .feature_comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 3rem);
    aspect-ratio: 3 / 2;
    border-radius: 2rem;
  }
  /* 2 */
  #top_feature .feature_002 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 3 / 1;
    color: var(--white);
    text-align: center;
    background: url(/wp-content/uploads/images/bg_feature.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_002 .feature_cover {
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  #top_feature .feature_002 .number {
    color: #fff;
    text-align: center;
  }
  #top_feature .feature_002 .title {
    text-align: center;
  }
  #top_feature .feature_002 .comment {
    text-align: center;
  }
  #top_feature .feature_002 .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  /* 3.4 */ 
  #top_feature .feature_flex {
    display: flex;
    flex-wrap: wrap;
  }
  #top_feature .feature_004,
  #top_feature .feature_005 {
    width: calc(50%);
    padding: 10rem 8rem;
    box-sizing: border-box;
  }
  #top_feature .feature_004 {
    background: var(--main-color);
  }
  #top_feature .feature_005 {
    background: #b1d836;
  }
  #top_feature .feature_flex .feature_comment {
    padding: 8rem;
    background: var(--white);
  }
  #top_feature .feature_flex .feature_image {
    margin-left: 8rem;
    margin-bottom: -8rem;
  }
  #top_feature .feature_flex .feature_comment {
    margin-right: 8rem;
    padding-top: 16rem;
    border-radius: 2rem;
  }
  #top_feature img {
    border-radius: 2rem;
  }
  #top_feature .number {
    color: var(--sub-color);
    font-size: 3rem;
    font-family: var(--catch);
  }
  #top_feature .title {
    margin-bottom: .5em;
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  #top_feature .message span {
    display: inline-block;
    height: 4rem;
    border-radius: 2rem;
    padding: 0 4rem;
    color: var(--white);
    line-height: 4rem;
    background: var(--main-color);
  }
  #top_feature .comment {
    margin-top: 1.2em;
  }
}
@media screen and (max-width:1239px) {
  /* 1 */
  #top_feature .feature_001 {
    padding: 5rem 0;
    background-color: var(--main-color);
    background-image: radial-gradient(circle, #b1d836 7.5px, transparent 7.5px), radial-gradient(circle, #b1d836 7.5px, transparent 7.5px);
    background-position: 0 0, 15px 30px;
    background-size: 30px 60px;
  }
  #top_feature .feature_001 .feature_cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 1.5rem;
    background: rgba(255,255,255,1);
  }
  #top_feature .feature_001 .feature_image {
    position: relative;
    width: 100%;
  }
  #top_feature .feature_001 .feature_image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_feature .feature_001 .feature_comment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
  }
  /* 2 */
  #top_feature .feature_002 {
    padding: 5rem 0;
    color: var(--white);
    background: url(/wp-content/uploads/images/bg_feature.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_002 .feature_cover {
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  #top_feature .feature_002 .number {
    color: #fff;
    text-align: center;
  }
  #top_feature .feature_002 .title {
    text-align: center;
  }
  #top_feature .feature_002 .comment {
    text-align: center;
  }
  #top_feature .feature_002 .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  /* 3 */
  #top_feature .feature_003 {
    padding: 5rem 0;
    background: var(--main-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_003 .feature_cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 1.5rem;
    background: rgba(255,255,255,1);
  }
  #top_feature .feature_003 .feature_image {
    position: relative;
    width: 100%;
  }
  #top_feature .feature_003 .feature_image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_feature .feature_003 .feature_comment {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    padding: 3rem 1.5rem;
  }    

  #top_feature .feature_004 {
    padding: 5rem 0;
    background: #387d43 url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_005 {
    padding: 5rem 0;
    background: var(--main-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_flex .feature_cover {
        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 1.5rem;
    background: rgba(255,255,255,1);
  }
  #top_feature .feature_flex .feature_comment {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    padding: 3rem 1.5rem;
  }
  #top_feature .feature_flex .feature_image {
    position: relative;
    width: 100%;
  }
  #top_feature img {
  }
  #top_feature .number {
    color: var(--sub-color);
    font-size: 2rem;
    font-family: var(--catch);
  }
  #top_feature .title {
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  #top_feature .message {
    text-align: center;
  }
  #top_feature .message span {
    display: inline-block;
    height: 3rem;
    border-radius: 1.5rem;
    padding: 0 2rem;
    color: var(--white);
    line-height: 3rem;
    background: var(--main-color);
  }
  #top_feature .comment {
    margin-top: 1.2em;
  }
}
/******************************************************
スケジュール
******************************************************/
@media screen and (min-width:1240px) {
  #top_schedule {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_schedule .inner {
    width: initial;
  }
  #top_schedule .schedule_comment {
    margin-bottom: 5rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_schedule .schedule_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_schedule .schedule_list .list {
    display: flex;
    flex-direction: column;
    width: calc((100% / 8) - 6px);
    border-radius: 1rem;
    box-sizing: border-box;
    background: var(--white);
    overflow: hidden;
  }
  #top_schedule .schedule_list .list:nth-child(1) {
    background: #f9e1e2;
  }
  #top_schedule .schedule_list .list:nth-child(2) {
    background: #fdf1ca;
  }
  #top_schedule .schedule_list .list:nth-child(3) {
    background: #ffffd2;
  }
  #top_schedule .schedule_list .list:nth-child(4) {
    background: #e5feed;
  }
  #top_schedule .schedule_list .list:nth-child(5) {
    background: #d0f2f5;
  }
  #top_schedule .schedule_list .list:nth-child(6) {
    background: #d8ebfd;
  }
  #top_schedule .schedule_list .list:nth-child(7) {
    background: #d1dffc;
  }
  #top_schedule .schedule_list .list:nth-child(8) {
    background: #eae0f4;
  }
  #top_schedule .schedule_list .list h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 3em;
    padding: .5em 0;
    font-size: 1vw;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    background: var(--white);
  }
  #top_schedule .schedule_list .list .cover {
    padding: 3rem 0;
  }
  #top_schedule .schedule_list .list .interval {
    font-size: 1vw;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  #top_schedule .schedule_list .list:nth-child(1) .interval {
    color: #ea8381;
  }
  #top_schedule .schedule_list .list:nth-child(2) .interval {
    color: #f0c349;
  }
  #top_schedule .schedule_list .list:nth-child(3) .interval {
    color: #ced24a;
  }
  #top_schedule .schedule_list .list:nth-child(4) .interval {
    color: #51ad68;
  }
  #top_schedule .schedule_list .list:nth-child(5) .interval {
    color: #508184;
  }
  #top_schedule .schedule_list .list:nth-child(6) .interval {
    color: #78b8f3;
  }
  #top_schedule .schedule_list .list:nth-child(7) .interval {
    color: #2f6cae;
  }
  #top_schedule .schedule_list .list:nth-child(8) .interval {
    color: #6c3a9a;
  }
  #top_schedule .schedule_list .injection {
    margin: 0 1.5rem;
    padding: .5em;
    font-size: .9vw;
  }
  #top_schedule .schedule_list .injection:nth-of-type(n+2) {
    padding-top: 1em;
    margin-top: 1em;
    border-top: 2px dotted var(--text-color);
  }
  #top_schedule .schedule_list h4 {
    display: flex;
    align-items: center;
    margin-bottom: .5em;
    font-weight: var(--text-weight-bold);
  }
  #top_schedule .schedule_list h4 span.type {
    padding: .2em .4em;
    background: var(--white);
    border-radius: .2em;
  }
  #top_schedule .schedule_list h4 span.type_2 {
    background: #fbe8a5;
  }
  #top_schedule .schedule_list p {
    text-align: right;
  }
  #top_schedule .schedule_list li span {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
  }
  #top_schedule .schedule_list li span:before {
    position: absolute;
    top: .4em;
    left: 0;
    width: 1em;
    height: 1em;
    content: "";
  }
  #top_schedule .schedule_list li span.icon_001:before {
    background: url(/wp-content/uploads/images/icon_schedule_001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_schedule .schedule_list li span.icon_002:before {
    background: url(/wp-content/uploads/images/icon_schedule_002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_schedule .schedule_list li span.icon_003:before {
    background: url(/wp-content/uploads/images/icon_schedule_003.webp) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width:1239px) {
  #top_schedule {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_schedule .schedule_comment {
    margin-bottom: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_schedule .schedule_list {
  }
  #top_schedule .schedule_list .list {
    border-radius: 1rem;
    box-sizing: border-box;
    background: var(--white);
    overflow: hidden;
  }
  #top_schedule .schedule_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_schedule .schedule_list .list:nth-child(1) {
    background: #f9e1e2;
  }
  #top_schedule .schedule_list .list:nth-child(2) {
    background: #fdf1ca;
  }
  #top_schedule .schedule_list .list:nth-child(3) {
    background: #ffffd2;
  }
  #top_schedule .schedule_list .list:nth-child(4) {
    background: #e5feed;
  }
  #top_schedule .schedule_list .list:nth-child(5) {
    background: #d0f2f5;
  }
  #top_schedule .schedule_list .list:nth-child(6) {
    background: #d8ebfd;
  }
  #top_schedule .schedule_list .list:nth-child(7) {
    background: #d1dffc;
  }
  #top_schedule .schedule_list .list:nth-child(8) {
    background: #eae0f4;
  }
  #top_schedule .schedule_list .list h3 {
    padding: .5em;
    font-size: 1.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    background: var(--white);
  }
  #top_schedule .schedule_list .list .cover {
    padding: 1.5rem 0;
  }
  #top_schedule .schedule_list .list .interval {
    font-size: 1.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
  #top_schedule .schedule_list .list:nth-child(1) .interval {
    color: #ea8381;
  }
  #top_schedule .schedule_list .list:nth-child(2) .interval {
    color: #f0c349;
  }
  #top_schedule .schedule_list .list:nth-child(3) .interval {
    color: #ced24a;
  }
  #top_schedule .schedule_list .list:nth-child(4) .interval {
    color: #51ad68;
  }
  #top_schedule .schedule_list .list:nth-child(5) .interval {
    color: #508184;
  }
  #top_schedule .schedule_list .list:nth-child(6) .interval {
    color: #78b8f3;
  }
  #top_schedule .schedule_list .list:nth-child(7) .interval {
    color: #2f6cae;
  }
  #top_schedule .schedule_list .list:nth-child(8) .interval {
    color: #6c3a9a;
  }
  #top_schedule .schedule_list .injection {
    margin: 0 1.5rem;
    padding: .5em;
  }
  #top_schedule .schedule_list .injection:nth-of-type(n+2) {
    padding-top: 1em;
    margin-top: 1em;
    border-top: 2px dotted var(--text-color);
  }
  #top_schedule .schedule_list h4 {
    display: flex;
    align-items: center;
    margin-bottom: .5em;
    font-weight: var(--text-weight-bold);
  }
  #top_schedule .schedule_list h4 span.type {
    margin-right: 1rem;
    padding: .2em .4em;
    background: var(--white);
    border-radius: .2em;
  }
  #top_schedule .schedule_list h4 span.type_2 {
    background: #fbe8a5;
  }
  #top_schedule .schedule_list p {
    text-align: right;
  }
  #top_schedule .schedule_list li span {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
  }
  #top_schedule .schedule_list li span:before {
    position: absolute;
    top: .6em;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    content: "";
  }
  #top_schedule .schedule_list li span.icon_001:before {
    background: url(/wp-content/uploads/images/icon_schedule_001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_schedule .schedule_list li span.icon_002:before {
    background: url(/wp-content/uploads/images/icon_schedule_002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_schedule .schedule_list li span.icon_003:before {
    background: url(/wp-content/uploads/images/icon_schedule_003.webp) center center no-repeat;
    background-size: contain;
  }
}
/******************************************************
流れ
******************************************************/
@media screen and (min-width:1240px) {
  #top_flow {
    position: relative;
    padding: 10rem 0 0;
  }
  #top_flow .flow_list .list {
    position: relative;
    padding: 10rem 0;
  }
  #top_flow .flow_list .list:nth-child(odd) {
    background: #ffdede;
  }
  #top_flow .flow_list .list:nth-child(odd):after {
    background: #ffdede;
  }
  #top_flow .flow_list .list:nth-child(even) {
    background: #ffd0d0;
  }
  #top_flow .flow_list .list:nth-child(even):after {
    background: #ffd0d0;
  }
  #top_flow .flow_list .list:after {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: block;
    content: "";
    width: 120px;
    height: 40px;
    margin-left: -60px;
    background: #666;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 1;
  }
  #top_flow .flow_list .list:last-child:after {
    display: none;
  }
  #top_flow .flow_list .list:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    display: block;
    content: "";
    z-index: 1;    
    background-size: cover;
    background-position: top right;
    backgroun-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 98%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 98%)
  }
  #top_flow .flow_list .list:nth-child(1):before {
    background-image: url(/wp-content/uploads/images/flow_img001sp.webp);
  }
  #top_flow .flow_list .list:nth-child(2):before {
    background-image: url(/wp-content/uploads/images/flow_img002sp.webp);
  }
  #top_flow .flow_list .list:nth-child(3):before {
    background-image: url(/wp-content/uploads/images/flow_img003sp.webp);
  }
  #top_flow .flow_list .list:nth-child(4):before {
    background-image: url(/wp-content/uploads/images/flow_img004sp.webp);
  }
  #top_flow .flow_list .list:nth-child(5):before {
    background-image: url(/wp-content/uploads/images/flow_img005sp.webp);
  }  
  #top_flow .flow_list .list .cover {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
    z-index: 1;
  }
  #top_flow .flow_list .list .number {
    width: 160px;
    font-size: 12rem;
    font-family: var(--catch);
    line-height: 1;
  }
  #top_flow .flow_list .list .text {
    width: 600px;
  }
  #top_flow .flow_list .list .title {
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
  }
}
@media screen and (max-width:1239px) {
  #top_flow {
    position: relative;
    padding: 5rem 0 0;
  }
  #top_flow .flow_list .list {
    position: relative;
    padding: 5rem 0;
  }
  #top_flow .flow_list .list:nth-child(odd) {
    background: #ffdede;
  }
  #top_flow .flow_list .list:nth-child(odd):after {
    background: #ffdede;
  }
  #top_flow .flow_list .list:nth-child(even) {
    background: #ffd0d0;
  }
  #top_flow .flow_list .list:nth-child(even):after {
    background: #ffd0d0;
  }
  #top_flow .flow_list .list:after {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: block;
    content: "";
    width: 60px;
    height: 20px;
    margin-left: -30px;
    background: #666;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 1;
  }
  #top_flow .flow_list .list:last-child:after {
    display: none;
  }
  #top_flow .flow_list .list:before {
    width: 100%;
    margin-bottom: 3rem;
    aspect-ratio: 3 / 2;
    display: block;
    content: "";
    z-index: 1;
  }
  #top_flow .flow_list .list:nth-child(1):before {
    background: url(/wp-content/uploads/images/flow_img001sp.webp) top right no-repeat;
    background-size: 100% auto;
  }
  #top_flow .flow_list .list:nth-child(2):before {
    background: url(/wp-content/uploads/images/flow_img002sp.webp) top right no-repeat;
    background-size: 100% auto;
  }
  #top_flow .flow_list .list:nth-child(3):before {
    background: url(/wp-content/uploads/images/flow_img003sp.webp) top right no-repeat;
    background-size: 100% auto;
  }
  #top_flow .flow_list .list:nth-child(4):before {
    background: url(/wp-content/uploads/images/flow_img004sp.webp) top right no-repeat;
    background-size: 100% auto;
  }
  #top_flow .flow_list .list:nth-child(5):before {
    background: url(/wp-content/uploads/images/flow_img005sp.webp) top right no-repeat;
    background-size: 100% auto;
  }  
  #top_flow .flow_list .list .cover {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    z-index: 1;
  }
  #top_flow .flow_list .list .number {
    font-size: 6rem;
    font-family: var(--catch);
    line-height: 1;
    text-align: center;
  }
  #top_flow .flow_list .list .text {}
  #top_flow .flow_list .list .title {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    font-family: var(--catch);
    text-align: center;
  }
}
/******************************************************
副反応と安全性について
******************************************************/
@media screen and (min-width:1240px) {
  #top_about {
    padding: 10rem 0;
  }
  #top_about .about_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
  #top_about .about_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 6rem;
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: #b9e03c;
    cursor: pointer;
  }
  #top_about .about_btn .btn.active {
    background: #aace37;
  }
  #top_about .about_btn .btn:nth-child(1) {
    border-radius: 2rem 0 0 0;
  }
  #top_about .about_btn .btn:nth-child(2) {
    border-radius: 0 2rem 0 0;
  }
  #top_about .about_contents .content {
    padding: 6rem;
    display: none;
    border-radius: 0 0 2rem 2rem;
    border: 5px solid var(--main-color);
  }
  #top_about .about_contents .content.show {
    display: block;
  }
  #top_about .about_contents .content .flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #top_about .about_contents .content .image {
    width: 40%;
    border-radius: 2rem;
  }
  #top_about .about_contents .content .image img {
    border-radius: 2rem;
  }
  #top_about .about_contents .content .comment {
    width: calc(60% - 8rem);
  }
  #top_about .about_contents .content .title {
    margin-bottom: 1em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }  
}
@media screen and (max-width:1239px) {
  #top_about {
    padding: 5rem 0;
  }
  #top_about .about_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
  #top_about .about_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 5rem;
    color: var(--white);
    font-size: 1.6rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: #b9e03c;
    cursor: pointer;
  }
  #top_about .about_btn .btn.active {
    background: #aace37;
  }
  #top_about .about_btn .btn:nth-child(1) {
    border-radius: 1rem 0 0 0;
  }
  #top_about .about_btn .btn:nth-child(2) {
    border-radius: 0 1rem 0 0;
  }
  #top_about .about_contents .content {
    padding: 3rem 1.5rem;
    display: none;
    border-radius: 0 0 1rem 1rem;
    border: 3px solid var(--main-color);
  }
  #top_about .about_contents .content.show {
    display: block;
  }
  #top_about .about_contents .content .flex {}
  #top_about .about_contents .content .image {
    margin-bottom: 3rem;
  }
  #top_about .about_contents .content .image img {
    border-radius: 1rem;
  }
  #top_about .about_contents .content .comment {}
  #top_about .about_contents .content .title {
    margin-bottom: 1em;    
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
  }
}
/******************************************************
よくあるご質問
******************************************************/
@media screen and (min-width:1240px) {
  #top_faq {
    padding: 10rem 0;
    background: url(/wp-content/uploads/images/bg_faq.webp) top center no-repeat;
    background-size: cover; 
  }
  #top_faq .faq_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_faq .title {
    margin-bottom: .5em;
    font-size: 2.4rem;
    font-weight: var(-text-weight-bold);
    font-family: var(--catch);
  }
  #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: #ffd0d0;
    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;
  }  
}
@media screen and (max-width:1239px) {
  #top_faq {
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_faq.webp) top center no-repeat;
    background-size: cover; 
  }
  #top_faq .faq_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_faq .title {
    margin-bottom: .5em;
    font-size: 1.6rem;
    font-weight: var(-text-weight-bold);
    font-family: var(--catch);
  }
  #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: #ffd0d0;
    cursor: pointer;
    line-height: 1.5;
    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;
  }  
}
/******************************************************
ご挨拶
******************************************************/
@media screen and (min-width:1240px) {
  #top_greeting {
    position: relative;
    padding: 10rem 0;
    background: url(/wp-content/uploads/images/bg_greeting.webp) top center no-repeat;
    background-size: cover;
  }
  #top_greeting:after {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 8rem);
    height: 100%;
    display: block;
    content: "";
    background: url(/wp-content/uploads/images/greeting_img001.webp) top center no-repeat;
    background-size: contain;
  }
  #top_greeting .greeting_box {
    position: relative;
    width: 600px;
    padding-left: calc(100% - 600px);
  }
  #top_greeting .greeting_box .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    border: 1px solid var(--text-color);
  }
  #top_greeting .greeting_box .title .name span {
    font-size: 1.5em;
  }
  #top_greeting .greeting_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
}
@media screen and (max-width:1239px) {
  #top_greeting {
    position: relative;
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_greeting.webp) top center no-repeat;
    background-size: cover;
  }
  #top_greeting .greeting_box {
    position: relative;
  }
  #top_greeting .greeting_box .title:before {
    display: block;
    content: "";
    width: 100%;
    margin-bottom: 3rem;
    aspect-ratio: 3 / 2;
    background: url(/wp-content/uploads/images/greeting_img001sp.webp) top center no-repeat;
    background-size: contain;
  }
  #top_greeting .greeting_box .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    line-height: 1.5;
    text-align: center;
  }
  #top_greeting .greeting_box .title .name span {
    font-size: 1.5em;
  }
  #top_greeting .greeting_box .comment {
    text-shadow: 0 0 .2em #fff, 0 0 .2em #fff, 0 0 .2em #fff, 0 0 .2em #fff, 0 0 .2em #fff;
  }
  #top_greeting .greeting_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
}
/******************************************************
クリニック情報
******************************************************/
@media screen and (min-width:1240px) {
  #top_clinic {
    padding: 10rem 0 0;
  }
  #top_clinic .clinic_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    padding: 8rem 0;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #top_clinic .clinic_data {
    width: 600px;
    padding: 0 4rem;
    box-sizing: border-box;
  }
  #top_clinic .clinic_data .logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  #top_clinic .clinic_data .address {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_clinic .clinic_data .tel_btn {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #top_clinic .clinic_data .tel_btn .btn {
    width: 50%;
  }
  #top_clinic .clinic_data .tel_btn .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 8rem;
    font-family: var(--catch);
    font-weight: var(--text-weight-bold);    
    line-height: 1.5;
    box-sizing: border-box;
  }
  #top_clinic .clinic_data .tel_btn .btn.tel a {
    background: #f9d3e3;
    border-radius: 1rem 0 0 1rem;
  }
  #top_clinic .clinic_data .tel_btn .btn.web a {
    background: #f2aeca;
    border-radius: 0 1rem 1rem 0;
  }
  #top_clinic .clinic_data .tel_btn .btn a .small {
    font-size: .8em;
  }
  #top_clinic .clinic_data .tel_btn .btn a .large {
    font-size: 1.2em;
  }
  #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 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: 600px;
  }
  #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 0;
  }
  #top_clinic .clinic_box {
    padding: 5rem 0;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #top_clinic .clinic_data {
    margin-bottom: 5rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  #top_clinic .clinic_data .logo {
    margin-bottom: 1rem;
    text-align: center;
  }
  #top_clinic .clinic_data .logo img {
    width: auto;
    height: 5rem;
  }
  #top_clinic .clinic_data .address {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_clinic .clinic_data .tel_btn {
    margin-bottom: 3rem;
  }
  #top_clinic .clinic_data .tel_btn .btn {
    width: 100%;
  }
  #top_clinic .clinic_data .tel_btn .btn:nth-child(n+2) {
    margin-top: 1rem;
  }
  #top_clinic .clinic_data .tel_btn .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 1rem;
    font-family: var(--catch);
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    box-sizing: border-box;
    border-radius: 1rem;
  }
  #top_clinic .clinic_data .tel_btn .btn.tel a {
    background: #f9d3e3;
  }
  #top_clinic .clinic_data .tel_btn .btn.web a {
    background: #f2aeca;
  }
  #top_clinic .clinic_data .tel_btn .btn a .small {

  }
  #top_clinic .clinic_data .tel_btn .btn a .large {
    font-size: 1.5em;
  }
  #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: .4em;
    border-bottom: 1px solid var(--text-color);
  }
  #top_clinic .clinic_data .schedule th {
    padding: .4em 0;
    text-align: left;
  }
  #top_clinic .clinic_data .schedule p {
    text-align: right;
  }
  #top_clinic .clinic_map {
    width: 100%;
  }
  #top_clinic .clinic_map {
    position: relative;
    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:1025px) {
  .fix_banner {
    position: fixed;
    bottom: 2rem;
    left: 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%;
  }
}