@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');
/******************************************************
リセット
******************************************************/
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: normal;
	font: inherit;
	vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: #4c4a4a;
	font-size: 100%;
  font-weight: normal;
	font: inherit;
	vertical-align: middle;
  word-break : break-all;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: 16px;
	font-size: 1.6rem;
  line-height: 2;
  font-weight: normal;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width:767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: normal;
}
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: #4c4a4a;
  text-decoration: none;
  vertical-align: baseline;
  border:none;
  outline:none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
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);
  }
}
.add-animation {
  animation: zoomUp 20s linear 0s normal both;
}
/******************************************************
iPhoneリセット
******************************************************/
.clearfix:after,
.inner:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
iPhoneリセット
******************************************************/
input,textarea,select {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
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 {
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ccc;
}
/******************************************************
レスポンシブ
******************************************************/
.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: 1300px;
    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;}
}
/******************************************************
基本フォント
******************************************************/
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
.sans {font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;}
.serif {font-family: "Noto Serif JP", serif;}
.bold {font-weight: bold;}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width: 1240px) {
  #header {
    position: relative;
    z-index: 100;
  }
  /* ロゴ */
  #h_logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 140px;
    padding: 3rem;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
  }
  #h_logo .large {
    width: 100%;
    padding: .4em 1.2em;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: .2em;
    background: #12b9c1;
    box-sizing: border-box;
  }
  #h_logo .small {
    width: 100%;
    margin-top: 1rem;
    letter-spacing: .2em;
  }
  /* メニューボタン */
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    z-index: 101;
    color: #fff;
    background: #12b9c1;
    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: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 25px;
    -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: 32px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 40px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 48px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }  
  #h_toggle_btn.open span:nth-child(1) {
    top: 40px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 40px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  } 
  /* メニュー */
  #h_nav {
    background: #f8f6f7;
    display: block;
    width: 540px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 18rem 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: 1.2em 0;
    padding-right: 3em;
    border-bottom: 1px solid #ccc;
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--main-color);
  }
  #h_nav li:nth-child(even) a:before {
    background: var(--sub-color);
  }  
  /* ヘッダーボタン */
  #h_btn {
    position: fixed;
    top: 0;
    right: 80px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_cover.active #h_btn {
    right: 90px;
  }
  #h_btn .btn {
    margin-left: 1rem;
  }
  #h_btn .btn a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 60px;
    font-size: 2rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    border-radius: 30px;
    background: #f8f6f7;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_btn .btn a:hover {
    opacity: .7;
  }
  #h_btn .btn a:before {
    display: block;
    content: "";
    width: 2.4rem;
    height: 2.4rem;
    margin-right: .6em;
  }
  #h_btn .btn.tel a:before {  
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #h_btn .btn.web a:before {
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }
  #h_cover.active #h_btn .btn a {
    box-shadow: 0 0 3px 0 rgba(0,0,0,.1);
  }
  /* ページトップ */
  #page_top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 50;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 6rem;
    height: 6rem;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    background: #8d806f;
    -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: 12px;
    height: 1px;
    margin-top: -6px;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 12px;
    height: 1px;
    margin-top: -6px;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }     
  #page_top a:hover {
    opacity: .7;
  }  
  
 .fix_banner_list {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    display: flex;
  }
  .fix_banner_list .fix_banner:nth-child(n+2) {
    margin-left: 1rem;
  }
  .fix_banner_list .fix_banner {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear; 
  }
  .fix_banner_list .fix_banner:hover {
    opacity: .7;
  }
  .fix_banner_list .fix_banner img {
    width: 360px;
  }
  
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    color: #6d7783;
    line-height: 15px;
    text-align: center;
    background: #eee;
    cursor: pointer;
  }  
  .fix_banner span.close_btn:before,
  .fix_banner span.close_btn:after {
    position: absolute;
    display: block;
    width: 12px;
    height: 1px;
    content: "";
    background: #6d7783;
    top: 10px;
    left: 4px;
  }
  .fix_banner span.close_btn:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .fix_banner span.close_btn:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }  
    
  
}
@media screen and (max-width: 1239px) {
  #header {
    position: relative;
    width: 100%;
    height: 6rem;
    z-index: 100;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: #fff;
  }
  /* ロゴ */
  #h_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 6rem;
    padding: 1.5rem;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    background: #fff;
    box-sizing: border-box;
  }
  #h_logo .large {
    padding: .3em .9em;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: .2em;
    background: #12b9c1;
    box-sizing: border-box;
  }
  #h_logo .small {
    margin-top: .3rem;
    font-size: 1rem;
    letter-spacing: .2em;
  }
  /* メニューボタン */
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 101;
    color: #fff;
    background: #12b9c1;
    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: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 20px;
    -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: 30px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 36px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }  
  #h_toggle_btn.open span:nth-child(1) {
    top: 30px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 30px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  } 
  /* メニュー */
  #h_nav {
    background: #f8f6f7;
    display: block;
    width: 540px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 8rem 1.5rem 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: 1.2em 0;
    padding-right: 3em;
    border-bottom: 1px solid #ccc;
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1rem;
    height: 1rem;
    margin-top: -.5rem;
    line-height: 1;
    background: var(--main-color);
  }
  #h_nav li:nth-child(even) a:before {
    background: var(--sub-color);
  }  
  /* ヘッダーボタン */
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  #h_btn .btn {
    width: 50%;
    box-sizing: border-box;
  }
  #h_btn .btn:nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
  #h_btn .btn a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    font-size: 1.4rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    background: #f8f6f7;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_btn .btn a:hover {
    opacity: .7;
  }
  #h_btn .btn a:before {
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    margin-right: .6em;
  }
  #h_btn .btn.tel a:before {  
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #h_btn .btn.web a:before {
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }
  #h_cover.active #h_btn .btn a {
    box-shadow: 0 0 3px 0 rgba(0,0,0,.1);
  }
  /* ページトップ */
  #page_top {
    position: fixed;
    bottom: 6rem;
    right: 0;
    z-index: 50;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 4.8rem;
    height: 4.8rem;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    background: #8d806f;
    -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: 10px;
    height: 1px;
    margin-top: -5px;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 10px;
    height: 1px;
    margin-top: -5px;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }     
  #page_top a:hover {
    opacity: .7;
  }  
  
  .fix_banner_list {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    display: flex;   
    
    display: none;
  }
  .fix_banner_list .fix_banner:nth-child(n+2) {
    margin-left: 1rem;
  }
  .fix_banner_list .fix_banner {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear; 
  }
  .fix_banner_list .fix_banner:hover {
    opacity: .7;
  }
  .fix_banner_list .fix_banner img {
    width: 360px;
  }
  
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    color: #6d7783;
    line-height: 15px;
    text-align: center;
    background: #eee;
    cursor: pointer;
  }  
  .fix_banner span.close_btn:before,
  .fix_banner span.close_btn:after {
    position: absolute;
    display: block;
    width: 12px;
    height: 1px;
    content: "";
    background: #6d7783;
    top: 10px;
    left: 4px;
  }
  .fix_banner span.close_btn:before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .fix_banner span.close_btn:after {
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }  
    
  
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width: 1240px){
  .gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 480px;
  } 
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }  
  #copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
    color: #fff;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    background: #7eacae;
  }
}
@media screen and (max-width: 1239px){
  #footer {
    padding-bottom: 6rem;
  }
  .gmap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
  } 
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }  
  #copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
    color: #fff;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    background: #7eacae;
  }
}
/******************************************************
タイトル・領域
******************************************************/
@media screen and (min-width: 1240px) {
  .title_cover {
    position: relative;
  }
  .main_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 6em;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
  }
  .main_title span {
    font-size: 4.8rem;
    font-family: "Noto Serif JP", serif;
  }
  .main_title span i {
    vertical-align: baseline;
  }
  .main_title span i.large {
    font-size: 1.5em;
  }
  .main_title span i.green {
    color: #12b9c1;
  }
  .main_title span i.beige {
    color: #8d806f;
  }    
  .title_cover .eng {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -.5em;
    color: #f8f6f7;
    font-size: 10vw;
    text-align: center;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
  }      
  /* サブタイトル（白文字） */
  .sub_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 6rem;
    color: #fff;
    font-size: 3rem;
    text-align: center;
  }
  .sub_title span {
    display: block;
  }
  .sub_title .eng {
    margin-bottom: .1em;
    font-size: 12rem;
    font-weight: 500;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;    
  }
  .sub_title .jap {
    font-family: "Noto Serif JP", serif;
  }  
  /* 矢印タイトル */
  .arrow_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 8rem;
    padding: 1em 0;
    font-size: 4.8rem;
    text-align: center;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    overflow: hidden;
    z-index: 2;
  }
  .arrow_title span i {
    vertical-align: baseline;
  }
  .arrow_title span i.green {
    color: #12b9c1;
  }
  .arrow_title span i.beige {
    color: #8d806f;
  }  
  .arrow_title:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 5em solid #f8f6f7;
    border-bottom: 0;    
    z-index: -1;
  }  
}
@media screen and (max-width: 1239px) {
  .title_cover {
    position: relative;
  }
  .main_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
  }
  .main_title span {
    font-family: "Noto Serif JP", serif;
  }
  .main_title span i {
    vertical-align: baseline;
  }
  .main_title span i.large {
    font-size: 1.5em;
  }
  .main_title span i.green {
    color: #12b9c1;
  }
  .main_title span i.beige {
    color: #8d806f;
  }    
  .title_cover .eng {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -.5em;
    color: #f8f6f7;
    font-size: 15vw;
    text-align: center;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
  }      
  /* サブタイトル（白文字） */
  .sub_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
  }
  .sub_title span {
    display: block;
  }
  .sub_title .eng {
    margin-bottom: .1em;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;    
  }
  .sub_title .jap {
    font-family: "Noto Serif JP", serif;
  }  
  /* 矢印タイトル */
  .arrow_title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 1em 0;
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
    overflow: hidden;
    z-index: 2;
  }
  .arrow_title span i {
    vertical-align: baseline;
  }
  .arrow_title span i.green {
    color: #12b9c1;
  }
  .arrow_title span i.beige {
    color: #8d806f;
  }  
  .arrow_title:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 5em solid #f8f6f7;
    border-bottom: 0;    
    z-index: -1;
  }  
}
/******************************************************
メインビジュアル
******************************************************/
@media screen and (min-width: 1240px) {
  #main_visual {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 8rem;
    background: #f8f6f7;
    box-sizing: border-box;
  }
  #catch_copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 8rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: .5em;
    font-family: "Noto Serif JP", serif;
    box-sizing: border-box;
    z-index: 1;
  }
  #catch_copy #catch_cover {
    padding: 8rem;
  }
  #catch_copy #main_catch {
    margin-bottom: .5em;
    font-size: 3vw;
    line-height: 1.35;    
  }
  #catch_copy #sub_catch {
    font-size: 1.6vw;
  }
  #main_slider {
    position: relative;
  }
  #main_slider:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(141,128,111,.3);
  }
  #main_slider .slide {
    width: 100%;
    height: calc(100vh - 16rem);
  }
  #main_slider .slide_1 {
    background: url(/wp-content/uploads/images/main_img001.webp) center center no-repeat;
    background-size: cover;
  }
  #main_slider .slide_2 {
    background: url(/wp-content/uploads/images/main_img002.webp) center center no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 1239px) {
  #main_visual {
    position: relative;
    width: 100%;
    height: 80vh;
    background: #f8f6f7;
    box-sizing: border-box;
  }
  #catch_copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: .2em;
    font-family: "Noto Serif JP", serif;
    box-sizing: border-box;
    z-index: 1;
  }
  #catch_copy #catch_cover {}
  #catch_copy #main_catch {
    margin-bottom: .5em;
    font-size: 4.8vw;
    line-height: 1.5;    
  }
  #catch_copy #sub_catch {
    font-size: 3.2vw;
  }
  #main_slider {
    position: relative;
  }
  #main_slider:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(141,128,111,.3);
  }
  #main_slider .slide {
    width: 100%;
    height: 80vh;
  }
  #main_slider .slide_1 {
    background: url(/wp-content/uploads/images/main_img001sp.webp) center center no-repeat;
    background-size: cover;
  }
  #main_slider .slide_2 {
    background: url(/wp-content/uploads/images/main_img002sp.webp) center center no-repeat;
    background-size: cover;
  }
}
/******************************************************
このようなお悩みはありませんか？
******************************************************/
@media screen and (min-width: 1240px) {
  #top_worry {
    padding: 12rem 0;
    color: #fff;
    background: url(/wp-content/uploads/images/bg_worry.webp) top center;
  }
  #top_worry .worry_box {
    width: 720px;
    margin-left: auto;
  }
  #top_worry .worry_box li {
    position: relative;
    padding: .6em 0;
    padding-left: 2.4em;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px dotted #fff;
  }
  #top_worry .worry_box li:first-child {
    border-top: 1px dotted #fff;
  }
  #top_worry .worry_box 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_white.webp) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 1239px) {
  #top_worry {
    padding: 5rem 0;
    color: #fff;
    background: url(/wp-content/uploads/images/bg_worry.webp) top center;
  }
  #top_worry .worry_box {
    margin-left: auto;
  }
  #top_worry .worry_box li {
    position: relative;
    padding: .6em 0;
    padding-left: 2.4em;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px dotted #fff;
  }
  #top_worry .worry_box li:first-child {
    border-top: 1px dotted #fff;
  }
  #top_worry .worry_box 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_white.webp) center center no-repeat;
    background-size: contain;
  }
}
/******************************************************
頭痛の予防治療
******************************************************/
@media screen and (min-width: 1240px) {
  #top_headache {
    padding-bottom: 12rem;
    background: url(/wp-content/uploads/images/bg_headache.webp) bottom center no-repeat;
    background-size: 100% auto;
  }
  #top_headache .headache_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_headache .headache_comment .message {
    margin-bottom: 1em;
    font-size: 3rem;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;    
  }
  #top_headache .headache_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_headache .headache_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 4) - 15px);
    margin-left: 20px;
    color: #fff;
    text-align: center;
    background: #8d806f;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 5px 5px 0 0 rgba(115,104,91);
  }
  #top_headache .headache_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #top_headache .headache_list .list .icon {
    width: 40%;
    margin-bottom: 1em;
  }
  #top_headache .headache_list .list .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 2em;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1239px) {
  #top_headache {
    padding-bottom: 5rem;
    background: url(/wp-content/uploads/images/bg_headache.webp) bottom center no-repeat;
    background-size: 100% auto;
  }
  #top_headache .headache_comment {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_headache .headache_comment .message {
    margin-bottom: 1em;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;    
  }
  #top_headache .headache_comment .comment {
    text-align: left;
  }
  #top_headache .headache_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_headache .headache_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 2) - 5px);
    margin-left: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    background: #8d806f;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 3px 3px 0 0 rgba(115,104,91);
  }
  #top_headache .headache_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_headache .headache_list .list:nth-child(n+3) {
    margin-top: 10px;
  }
  #top_headache .headache_list .list .icon {
    width: 40%;
    margin-bottom: 1em;
  }
  #top_headache .headache_list .list .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 2em;
    line-height: 1.5;
  }
}
/******************************************************
1つでも当てはまる方は、
******************************************************/
@media screen and (min-width: 1240px) {
  #top_contact {
    padding-bottom: 12rem;
    background: url(/wp-content/uploads/images/bg_contact.webp) bottom center no-repeat;
    background-size: 100% auto;
  }
  #top_contact .contact_comment {
    margin-top: -6rem;
    padding: 6rem;
    text-align: center;
    background: url(/wp-content/uploads/images/contact_img001.webp) top right no-repeat;
    background-size: auto 100%;
  }
  #top_contact .contact_comment .title {
    color: #12b9c1;
    font-size: 6rem;
    font-family: "Cormorant Garamond", serif;
  }
  #top_contact .contact_comment .comment {
    margin-bottom: 1em;
    font-size: 2.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  }
  #top_contact .contact_comment .marker {
    display: inline-block;
    padding: .4em 1.2em;
    color: #fff;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    background: #8d806f;
  }
  #top_contact .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_contact .contact_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 20px);
    padding: 3rem;
    line-height: 1;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    box-sizing: border-box;
    box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, .1);
  }
  #top_contact .contact_list .list .title {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;      
  }  
  #top_contact .contact_list .list .title:before {
    display: block;
    content: "";
    width: 2.4rem;
    height: 2.4rem;
    margin-right: .6em;
  }
  #top_contact .contact_list .list .tel .title:before {  
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #top_contact .contact_list .list .web .title:before {
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }  
  #top_contact .contact_list .list .number {
      margin-bottom: 1rem;
  }
  #top_contact .contact_list .list .number a  {
    color: #12b9c1;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif; 
  }
  #top_contact .contact_list .list .number span {
    font-size: 4rem;
  }
  #top_contact .contact_list .list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 5rem;
    margin: 0 auto;
    border-radius: 2.5rem;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif; 
    text-align: center;
    background: #12b9c1;
  }
  #top_contact .contact_list .list .schedule {
    line-height: 2;
  }
  #top_contact .contact_list .list .schedule span {
    font-weight: 600;
  }
}
@media screen and (max-width: 1239px) {
  #top_contact {
    padding-bottom: 5rem;
    background: url(/wp-content/uploads/images/bg_contact.webp) bottom center no-repeat;
    background-size: 100% auto;
  }
  #top_contact .contact_comment {
    margin-bottom: 3rem;
    text-align: center;
    /*
    background: url(/wp-content/uploads/images/contact_img001.webp) top right no-repeat;
    background-size: auto 100%;
    */
  }
  #top_contact .contact_comment .title {
    color: #12b9c1;
    font-size: 3rem;
    font-family: "Cormorant Garamond", serif;
  }
  #top_contact .contact_comment .comment {
    margin-bottom: 1em;
    font-weight: 600;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  }
  #top_contact .contact_comment .marker {
    display: inline-block;
    padding: .8em 1.2em;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    background: #8d806f;
  }
  #top_contact .contact_list {
  }
  #top_contact .contact_list .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    line-height: 1;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    box-sizing: border-box;
    box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, .1);
  }
  #top_contact .contact_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_contact .contact_list .list .title {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;      
  }  
  #top_contact .contact_list .list .title:before {
    display: block;
    content: "";
    width: 2.2rem;
    height: 2.2rem;
    margin-right: .6em;
  }
  #top_contact .contact_list .list .tel .title:before {  
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #top_contact .contact_list .list .web .title:before {
    background: url(/wp-content/uploads/images/icon_web.webp) center center no-repeat;
    background-size: contain;
  }  
  #top_contact .contact_list .list .number {
      margin-bottom: 1rem;
  }
  #top_contact .contact_list .list .number a  {
    color: #12b9c1;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif; 
  }
  #top_contact .contact_list .list .number span {
    font-size: 3rem;
  }
  #top_contact .contact_list .list .btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
    border-radius: 2.5rem;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif; 
    text-align: center;
    background: #12b9c1;
  }
  #top_contact .contact_list .list .schedule {
    line-height: 2;
  }
  #top_contact .contact_list .list .schedule span {
    font-weight: 600;
  }
}
/******************************************************
適切な頭痛の予防治療について
******************************************************/
@media screen and (min-width: 1240px) {
  #top_treatment {
    padding: 12rem 0;
    background: #fff;
  }
  #top_treatment .inner {
    width: 100%;
    padding: 0;
  }
  #top_treatment .treatment_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 10rem;
    box-shadow: 0 0 24px 0 rgba(0,0,0,.1);
    background: #f8f6f7;
  }
  #top_treatment .treatment_list .list:nth-child(n+2) {
    margin-top: 10rem;
  }
  #top_treatment .treatment_list .list:nth-child(even) {
    flex-direction: row-reverse;
  }
  #top_treatment .treatment_list .list:nth-child(odd) .image_area {
    width: calc(50% + 5rem);
    padding-top: 5rem;
    margin-left: -5rem;
    margin-bottom: -5rem;
  }
  #top_treatment .treatment_list .list:nth-child(even) .image_area {
    width: calc(50% + 5rem);
    padding-top: 5rem;
    margin-right: -5rem;
    margin-bottom: -5rem;
  }  
  #top_treatment .treatment_list .list .comment_area {
    width: 50%;
    padding: 5rem;        
    box-sizing: border-box;
  }
  #top_treatment .treatment_list .list .number {
    margin-bottom: 3rem;
    color: #12b9c1;    
    text-align: center;
    font-family: "Cormorant Garamond", serif;  
  }
  #top_treatment .treatment_list .list .number span {
    position: relative;
    display: inline-block;
    font-size: 12rem;
    line-height: 1;
  }
  #top_treatment .treatment_list .list .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 3rem;  
    font-family: "Noto Serif JP", serif;   
    text-align: center;
    border-bottom: 1px solid #4c4a4a;
  }
  #top_treatment .treatment_list .list .title .m_title {
    font-size: 3rem;
  }
  #top_treatment .treatment_list .list .title .s_title {
    color: #12b9c1;
    font-size: 2.4rem;
  }  
}
@media screen and (max-width: 1239px) {
  #top_treatment {
    padding: 5rem 0;
    background: #fff;
  }
  #top_treatment .inner {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #top_treatment .treatment_list .list {
    background: #f8f6f7;
  }
  #top_treatment .treatment_list .list .comment_area {
    padding: 3rem 1.5rem;; 
    box-sizing: border-box;
  }
  #top_treatment .treatment_list .list .number {
    color: #12b9c1;    
    text-align: center;
    font-family: "Cormorant Garamond", serif;  
  }
  #top_treatment .treatment_list .list .number span {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    line-height: 1;
  }
  #top_treatment .treatment_list .list .title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;  
    font-family: "Noto Serif JP", serif;   
    text-align: center;
    border-bottom: 1px solid #4c4a4a;
  }
  #top_treatment .treatment_list .list .title .m_title {
    font-size: 2rem;
  }
  #top_treatment .treatment_list .list .title .s_title {
    color: #12b9c1;
    font-size: 1.6rem;
  }  
}
/******************************************************
頭痛予防治療の選択肢
******************************************************/
@media screen and (min-width: 1240px) {
  #top_method {
    padding: 12rem 0;
    background: #7eacae url(/wp-content/uploads/images/bg_method.webp) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5%;
  }
  #top_method .method_list .list {
    width: calc((100% / 3) - 20px);
    color: #fff;
    font-size: 1.8rem;
    box-sizing: border-box;   
  }  
  #top_method .method_list .list .image {
    margin-bottom: 3rem;
  }
  #top_method .method_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/method_img001.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/method_img002.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/method_img003.webp?20250519) top center no-repeat;
    background-size: cover;
  }  
  #top_method .method_list .list .title {
    margin-bottom: .5em;
    color: #fff;
    text-align: center;
    font-size: 3rem;
    font-family: "Noto Serif JP", serif;  
    letter-spacing: .1em;
  }
}
@media screen and (max-width: 1239px) {
  #top_method {
    padding: 5rem 0;
    background: #7eacae url(/wp-content/uploads/images/bg_method.webp) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list {
    padding: 0 1.5;
  }
  #top_method .method_list .list {
    color: #fff;
    box-sizing: border-box;   
  }  
  #top_method .method_list .list .image {
    margin-bottom: 1.5rem;
  }
  #top_method .method_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/method_img001.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/method_img002.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_method .method_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/method_img003.webp?20250519) top center no-repeat;
    background-size: cover;
  }  
  #top_method .method_list .list .title {
    margin-bottom: .5em;
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;  
    letter-spacing: .1em;
  }
  #top_method .method_list .list .comment {
    padding: 3rem 1.5rem;
  }
}
/******************************************************
治療卒業までのプロセス
******************************************************/
@media screen and (min-width: 1240px) {
  #top_process {
    padding: 12rem 0;
  }
  #top_process .process_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 30px;
    border-left: 1px solid #ccc;
  }
  #top_process .process_list .list:last-child {
    border: none;
  }
  #top_process .process_list .list .number {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    color: #fff;
    font-size: 3rem;
    text-align: center;
    line-height: 60px;
    background: #12b9c1;
    font-family: 'EB Garamond', serif;     
  }
  #top_process .process_list .list .process_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    width: calc(100% - 100px);
    padding: 5rem 0;
    border-top: 1px solid #ccc;
  }
  #top_process .process_list .list .process_box .image {
    width: 400px;
  }
  #top_process .process_list .list .process_box .comment {
    width: calc(100% - 440px);
  }
  #top_process .process_list .list .process_box .title {
    color: #8d806f;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;  
  }  
}
@media screen and (max-width: 1239px) {
  #top_process {
    padding: 5rem 0;
  }
  #top_process .process_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 20px;
    border-left: 1px solid #ccc;
  }
  #top_process .process_list .list:last-child {
    border: none;
  }
  #top_process .process_list .list .number {
    width: 40px;
    height: 40px;
    margin-left: -20px;
    color: #fff;
    font-size: 2rem;
    text-align: center;
    line-height: 40px;
    background: #12b9c1;
    font-family: 'EB Garamond', serif;     
  }
  #top_process .process_list .list .process_box {

    align-items: center;
    flex-direction: row-reverse;
    width: calc(100% - 40px);
    padding: 3rem 0;
    border-top: 1px solid #ccc;
  }
  #top_process .process_list .list .process_box .image {
    margin-bottom: 1.5rem;
  }
  #top_process .process_list .list .process_box .comment {

  }
  #top_process .process_list .list .process_box .title {
    color: #8d806f;
    font-size: 1.6rem;
    font-family: "Noto Serif JP", serif;  
  }  
}
/******************************************************
当院が選ばれる理由
******************************************************/
@media screen and (min-width: 1240px) {
  #top_feature {
    padding: 12rem 0;
    background: #7eacae url(/wp-content/uploads/images/bg_feature.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5rem 10rem 0;
  }
  #top_feature .feature_list .list {
    position: relative;
    width: calc((100% / 4) - 30px);
    color: #fff;
  }
  #top_feature .feature_list .list:nth-child(odd) {
    margin-top: 10rem;
  }
  #top_feature .feature_list .list:nth-child(even) {
    margin-bottom: 10rem;
  }
  #top_feature .feature_list .list .icon {
    position: absolute;
    top: -50px;
    left: -50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    margin: 0 auto;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    font-family: "Noto Serif JP", serif;  
    background: #567778;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_feature .feature_list .list .icon .number {
    font-size: 3em;
  }
  #top_feature .feature_list .list .image {
    margin-bottom: 3rem;
  }
  #top_feature .feature_list .list .image img {
    object-fit: cover;
    aspect-ratio: 5 / 4;
  }
  #top_feature .feature_list .list .title {
    margin-bottom: 1em;
    font-size: 2rem;
    text-align: center;
    font-family: "Noto Serif JP", serif;  
  }
}
@media screen and (max-width: 1239px) {
  #top_feature {
    padding: 5rem 0;
    background: #7eacae url(/wp-content/uploads/images/bg_feature.webp) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list {
    padding: 0 1.5rem;
  }
  #top_feature .feature_list .list {
    position: relative;
    color: #fff;
  }
  #top_feature .feature_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_feature .feature_list .list .icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    margin: 0 auto;
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    font-family: "Noto Serif JP", serif;  
    background: #567778;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_feature .feature_list .list .icon .number {
    font-size: 2em;
  }
  #top_feature .feature_list .list .image {
    margin-bottom: 2rem;
  }
  #top_feature .feature_list .list .image img {
    object-fit: cover;
    aspect-ratio: 3 / 2;
  }
  #top_feature .feature_list .list .title {
    margin-bottom: 1em;
    font-size: 1.8rem;
    text-align: center;
    font-family: "Noto Serif JP", serif;  
  }
}
/******************************************************
よくあるご質問
******************************************************/
@media screen and (min-width: 1240px) {
  #top_faq {
    padding: 12rem 0;
    background: #fff;
  }
  #top_faq .faq_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_faq .faq_flex .faq_list {
    width: calc(50% - 2rem);
  }
  #top_faq .faq_list .list:nth-child(n+2) {
    margin-top: 2rem;
  }
  #top_faq .faq_list .list .question {
    position: relative;
    padding: 1em;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    background: #7eacae;
    cursor: pointer;
  }
  #top_faq .faq_list .list .answer {
    display: none;
  }
  #top_faq .faq_list .list .answer.active {
    display: block;
  }
  #top_faq .faq_list .list .question:before,
  #top_faq .faq_list .list .question:after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
  }
  #top_faq .faq_list .list .question:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
  }
  #top_faq .faq_list .list .question.active:before {
    opacity: 0;
  }
  #top_faq .faq_list .list .question.active:after {
    transform: translateY(-50%) rotate(180deg);
  }    
}
@media screen and (max-width: 1239px) {
  #top_faq {
    padding: 5rem 0;
    background: #fff;
  }
  #top_faq .faq_flex {}
  #top_faq .faq_flex .faq_list:nth-child(n+2) {
    margin-top: 1rem;
  }
  #top_faq .faq_list .list:nth-child(n+2) {
    margin-top: 1rem;
  }
  #top_faq .faq_list .list .question {
    position: relative;
    padding: 1em;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    background: #7eacae;
    cursor: pointer;
  }
  #top_faq .faq_list .list .answer {
    display: none;
  }
  #top_faq .faq_list .list .answer.active {
    display: block;
  }
  #top_faq .faq_list .list .question:before,
  #top_faq .faq_list .list .question:after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
  }
  #top_faq .faq_list .list .question:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
  }
  #top_faq .faq_list .list .question.active:before {
    opacity: 0;
  }
  #top_faq .faq_list .list .question.active:after {
    transform: translateY(-50%) rotate(180deg);
  }    
}
/******************************************************
お問い合わせ
******************************************************/
@media screen and (min-width: 1240px) {
  #bottom_contact {
    padding: 8rem 0;
    background-image: linear-gradient(130deg, rgba(163,213,217,1), rgba(18,185,193,1));
  }
  #bottom_contact h2 {
    color: #fff;
    font-size: 6vw;
    text-align: center;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
  }
  #bottom_contact .contact_cover {
    margin: 0 10rem;
    padding: 8rem;
    background: #fff;
  }
  #bottom_contact h3 {
    margin-bottom: 3rem;
    color: #12b9c1;
    font-size: 3.6rem;
    font-family: "Noto Serif JP", serif;  
    text-align: center;
  }
  #bottom_contact .comment {
    margin-bottom: 3rem;
    text-align: center;
  }
  #bottom_contact .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #bottom_contact .contact_list .list {
    width: 420px;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
  }
  #bottom_contact .contact_list .list a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 3rem;
    text-align: center;
  }
  #bottom_contact .contact_list .list a.tel span {
    margin: 0 .3em;
  }
  #bottom_contact .contact_list .list a.tel span img {
    width: auto;
    height: 2.4rem;
  }
  #bottom_contact .contact_list .list a.tel {
    color: #12b9c1;
    border: 1px solid #12b9c1;
    background: #fff;
  }
  #bottom_contact .contact_list .list a.tel div:nth-child(n+2) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #12b9c1;
  }  
  #bottom_contact .contact_list .list a.web div:nth-child(n+2) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #fff;
  }    
  #bottom_contact .contact_list .list a .main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;  
  }
  #bottom_contact .contact_list .list a.web {
    color: #fff;
    background: #12b9c1;
  }
  #bottom_contact .contact_list .list a.web .sub {
    font-size: 3rem;
    font-family: "Noto Serif JP", serif;  
  }
  #bottom_contact .contact_list .list a.web span {
    margin: 0 .3em;
  }
  #bottom_contact .contact_list .list a.web span img {
    width: auto;
    height: 3rem;
  }  
}
@media screen and (max-width: 1239px) {
  #bottom_contact {
    padding: 5rem 0;
    background-image: linear-gradient(130deg, rgba(163,213,217,1), rgba(18,185,193,1));
  }
  #bottom_contact h2 {
    color: #fff;
    font-size: 4rem;
    text-align: center;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
  }
  #bottom_contact .contact_cover {
    margin: 0 1.5rem;
    padding: 3rem 1.5rem;
    background: #fff;
  }
  #bottom_contact h3 {
    margin-bottom: 2rem;
    color: #12b9c1;
    font-size: 1.6rem;
    font-family: "Noto Serif JP", serif;  
    text-align: center;
  }
  #bottom_contact .comment {
    margin-bottom: 2rem;
    text-align: center;
  }
  #bottom_contact .contact_list {
  }
  #bottom_contact .contact_list .list {
    display: flex;
    flex-direction: column;
  }
  #bottom_contact .contact_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #bottom_contact .contact_list .list a {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 3rem;
    text-align: center;
  }
  #bottom_contact .contact_list .list a.tel span {
    margin: 0 .3em;
  }
  #bottom_contact .contact_list .list a.tel span img {
    width: auto;
    height: 2.4rem;
  }
  #bottom_contact .contact_list .list a.tel {
    color: #12b9c1;
    border: 1px solid #12b9c1;
    background: #fff;
  }
  #bottom_contact .contact_list .list a.tel div:nth-child(n+2) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #12b9c1;
  }  
  #bottom_contact .contact_list .list a.web div:nth-child(n+2) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #fff;
  }    
  #bottom_contact .contact_list .list a .main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;  
  }
  #bottom_contact .contact_list .list a.web {
    color: #fff;
    background: #12b9c1;
  }
  #bottom_contact .contact_list .list a.web .sub {
    font-size: 2.4rem;
    font-family: "Noto Serif JP", serif;  
  }
  #bottom_contact .contact_list .list a.web span {
    margin: 0 .3em;
  }
  #bottom_contact .contact_list .list a.web span img {
    width: auto;
    height: 3rem;
  }  
}
/******************************************************
クリニック情報
******************************************************/
@media screen and (min-width: 1240px) {
  #top_clinic {
    position: relative;
    padding: 12rem 0;
    background: #fff;
  }
  #top_clinic:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 24rem;
    background: #7eacae;
  }
  #top_clinic .clinic_box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    box-shadow: -1.2rem 1.2rem 1.2rem 0 rgba(0,0,0,.15);
    background: #fff;
    z-index: 1;
  }
  #top_clinic .clinic_box:before {
    display: block;
    content: "";
    width: 50%;
    background: url(/wp-content/uploads/images/clinic_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_clinic .clinic_box .text {
    width: 50%;
    padding: 6rem;
    text-align: center;
    box-sizing: border-box;
  }
  #top_clinic .clinic_box .text .logo {
    margin-bottom: 3rem;
  }
  #top_clinic .clinic_box .text .logo img {
    width: 300px;
    height: auto;
  }
  #top_clinic .clinic_box .text .name {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    letter-spacing: .1em;
  }
  #top_clinic .clinic_box .text .type {
    margin-bottom: 2rem;
  }
  #top_clinic .clinic_box .text .type span {
    display: inline-block;
    padding: 0 2em;
    line-height: 3;
    border: 1px solid #ccc;
  }
  #top_clinic .clinic_box .text .address {
    margin-bottom: 2rem;
  }
  #top_clinic .clinic_box .text .tel {
    color: #7eacae;
    font-size: 3.6rem;
    font-family: "Noto Serif JP", serif;
  }
  #top_clinic .clinic_box .text .tel a {
    color: #7eacae;
  }
  #top_clinic .clinic_box .text .schedule {
    margin-bottom: 1em;
    padding: 2rem;
    background: #f2f2f2;
  }
  #top_clinic .clinic_box .text .schedule table {
    width: 100%;
    table-layout: fixed;
  }
  #top_clinic .clinic_box .text .schedule table tr:nth-child(1) {
    border-bottom: 1px solid #4c4a4a;
  }
  #top_clinic .clinic_box .text .schedule th,
  #top_clinic .clinic_box .text .schedule td {
    padding: .5em 0;
  }
  #top_clinic .clinic_box .text .schedule th {
    width: 100px;
  }
  #top_clinic .clinic_box .text .schedule table span {
    color: #7eacae;
  }
  #top_clinic .clinic_box .text .note {
    display: flex;
    align-items: center;
  }
  #top_clinic .clinic_box .text .note span {
    margin-right: .5em;
    padding: 0 1em;
    color: #fff;
    background: #7eacae;
  }
  #top_clinic .clinic_box .text .memo {
    text-align: left;
  }
}
@media screen and (max-width: 1239px) {
  #top_clinic {
    position: relative;
    padding: 5rem 0;
    background: #fff;
  }
  #top_clinic .clinic_box {
    box-shadow: 0 0 .6rem 0 rgba(0,0,0,.15);
    background: #fff;
    z-index: 1;
  }
  #top_clinic .clinic_box:before {
    display: block;
    content: "";
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    background: url(/wp-content/uploads/images/clinic_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_clinic .clinic_box .text {
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
  }
  #top_clinic .clinic_box .text .logo {
    margin-bottom: 3rem;
  }
  #top_clinic .clinic_box .text .logo img {
    width: 300px;
    height: auto;
  }
  #top_clinic .clinic_box .text .name {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: "Noto Serif JP", serif;
    letter-spacing: .1em;
  }
  #top_clinic .clinic_box .text .type {
    margin-bottom: 2rem;
  }
  #top_clinic .clinic_box .text .type span {
    display: inline-block;
    padding: 0 2em;
    line-height: 3;
    border: 1px solid #ccc;
  }
  #top_clinic .clinic_box .text .address {
    margin-bottom: 2rem;
  }
  #top_clinic .clinic_box .text .tel {
    color: #7eacae;
    font-size: 3.6rem;
    font-family: "Noto Serif JP", serif;
  }
  #top_clinic .clinic_box .text .tel a {
    color: #7eacae;
  }
  #top_clinic .clinic_box .text .schedule {
    margin-bottom: 1em;
    padding: 2rem;
    background: #f2f2f2;
  }
  #top_clinic .clinic_box .text .schedule table {
    width: 100%;
    table-layout: fixed;
  }
  #top_clinic .clinic_box .text .schedule table tr:nth-child(1) {
    border-bottom: 1px solid #4c4a4a;
  }
  #top_clinic .clinic_box .text .schedule th,
  #top_clinic .clinic_box .text .schedule td {
    padding: .5em 0;
  }
  #top_clinic .clinic_box .text .schedule th {
    width: 100px;
  }
  #top_clinic .clinic_box .text .schedule table span {
    color: #7eacae;
  }
  #top_clinic .clinic_box .text .note {
    display: flex;
    align-items: center;
  }
  #top_clinic .clinic_box .text .note span {
    margin-right: .5em;
    padding: 0 1em;
    color: #fff;
    background: #7eacae;
  }
  #top_clinic .clinic_box .text .memo {
    text-align: left;
  }
}
/******************************************************
バナー
******************************************************/
@media screen and (min-width: 1240px) {
  #top_banner {
    padding: 0 0 12rem;
    background: #7eacae;
  }
  #top_banner .banner_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_banner .banner_list .list {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 1239px) {
  #top_banner {
    padding: 3rem 0;
    background: #7eacae;
  }
  #top_banner .banner_list {
  }
  #top_banner .banner_list .list {
    width: 100%;
  }
  #top_banner .banner_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
}






