@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=Pinyon+Script&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/******************************************************
基本設定
******************************************************/
:root {  
  --white: #fff; /* 白 */
  --main-color: #ea637b; /* メインカラー（ピンク） */
  --sub-color: #a5cc3e; /* サブカラー（グリーン） */
  --sub-color-2: #f6a700; /* サブカラー2（オレンジ） */
  --bg-color: #ea637b; /* 背景色1（ピンク） */
  --bg-high-color: #f6f6f6; /* 背景色 */
  
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 18px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #717070; /* テキストカラー（通常） */
  --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', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', 'Yu Gothic', 'メイリオ', Meiryo, sans-serif; /* ゴシック体 */
  --serif: 'Noto Serif JP','游明朝体', 'Yu Mincho', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'Times New Roman', serif; /* 明朝体 */
  --catch: 'Noto Serif JP','游明朝体', 'Yu Mincho', 'Hiragino Mincho Pro', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'Times New Roman', serif; /* キャッチ */
  --alphabet: "Cormorant Garamond", serif; /* 英語フォント */
}
/******************************************************
リセット
******************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: var(--text-color);
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: middle;
  word-break: break-all;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: var(--text-size-pc);
  line-height: 2;
  font-weight: var(--text-weight);
  letter-spacing: var(--text-space);
  font-family: var(--sans);
}
@media screen and (max-width:767px) {
  body {
    font-size: var(--text-size-sp);
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: var(--text-weight);
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: var(--text-weight);
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
img {
  max-width: 100%;
	height: auto;
  vertical-align: middle;
}
a {
  color: var(--text-color);
  text-decoration: none;
  vertical-align: baseline;
  border:　none;
  outline:　none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
iPhoneリセット
******************************************************/
input,textarea,select {
  font-family: var(--sans);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 1.6rem;
  font-family: var(--sans);
  outline: none;
  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp30 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp30 {
  animation-name: fadeInUp30;
  animation-duration: 1s;
}
@keyframes fadeInUp60 {
  from {
    opacity: 0;
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp60 {
  animation-name: fadeInUp60;
  animation-duration: 1s;
}
@keyframes circlemove{
  0%{
    bottom:180px;
  }
  100%{
    bottom:20px;
  }
}
@keyframes cirlemovehide{
  0%{
    opacity:0
  }
  50%{
    opacity:1;
  }
  80%{
    opacity:1;
  }
  100%{
    opacity:0;
  }
}
/******************************************************
iPhoneリセット
******************************************************/
.clearfix:after,
.inner:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
レスポンシブ
******************************************************/
@media screen and (max-width: 1299px){
  .inner {
    position:relative;
    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: 1300px) {
  .inner {
    position:relative;
    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: var(--sans);  
}
.serif {
  font-family: var(--serif);
}
.bold {
  font-weight: var(--text-weight-bold);
}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width:1025px) {
  #header {
    width: 100%;
  }
  /* ここからロゴ */
  #h_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 25vw;
    z-index: 1;
  }
  #h_logo .logo {
    text-align: center;
  }
  #h_logo .logo img {}
  #h_logo .title {
    width: 65%;
    margin: 0 auto;
    padding: .5em;
    color: var(--white);
    text-align: center;
    line-height: 1;
    background: var(--main-color);
  }
  /* 問い合わせボタン */
  #h_btn {
    position: absolute;
    top: 0;
    right: 120px;
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
  }
  #h_btn .btn:nth-child(n+2) {
    margin-left: 1rem;
  }
  #h_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    width: 300px;
    height: 8rem;
    line-height: 1.35;
    letter-spacing: .1em;
    font-family: var(--serif);       
  }
  #h_btn a:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    background: #eb506c;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  #h_btn .tel a {
    background: var(--sub-color-2);
  }
  #h_btn .tel a:after {
    background: #e89d00;
  }
  #h_btn .form a {
    background: var(--sub-color);
  }
  #h_btn .form a:after {
    background: #97bf28;
  }
  
  #h_btn a .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #h_btn a .small {
    font-size: .8em;
  }
  #h_btn a .large {
    font-size: 1.2em;
  }
  #h_btn a:before {
    display: flex;
    content: "";
    width: 2.5em;
    height: 2.5em;
    margin-right: 1em;
  }
  #h_btn .tel a:before {
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #h_btn .form a:before {
    background: url(/wp-content/uploads/images/icon_form.webp) center center no-repeat;
    background-size: contain;
  }
  /* ハンバーガー */
  #h_toggle_btn_cover {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
  #h_toggle_btn {
    position: relative;
    width: 120px;
    height: 120px;
    padding-top: 70px;
    background: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    position: absolute;
    left: 43px;
    display: block;
    content: "";
    width: 34px;
    height: 2px;
    background: var(--text-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span:nth-child(1) {
    top: 35px;
  }
  #h_toggle_btn span:nth-child(2) {
    top: 47px;
  }
  #h_toggle_btn span:nth-child(3) {
    top: 59px;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 47px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 47px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }    
  #h_toggle_btn .name {
    font-size: 1.4rem;
    letter-spacing: .1em;
    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: 99;
    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: .8em;
    padding-left: 2em;
    border-bottom: 1px dotted var(--border-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.2em;
    height: 1.2em;
    margin-top: -.6rem;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width:1024px) {
  #header {
    width: 100%;
    height: 7rem;
  }  
  /* ここからロゴ */
  #h_logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 1rem;
    z-index: 98;
  }
  #h_logo .logo {
    text-align: center;
  }
  #h_logo .logo img {
    width: auto;
    height: 7rem;
  }
  #h_logo .title {
    margin-left: 1rem;
    padding: .3em .6em;
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    line-height: 1;
    background: var(--main-color);
  }
  /* 問い合わせボタン */
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 95;
  }
  #h_btn .btn {
    width: 50%;
  }
  #h_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    width: 100%;
    height: 6rem;
    line-height: 1.35;
    letter-spacing: .1em;
    font-family: var(--serif);       
  }
  #h_btn a:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: #eb506c;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  #h_btn .tel a {
    background: var(--sub-color-2);
  }
  #h_btn .tel a:after {
    background: #e89d00;
  }
  #h_btn .form a {
    background: var(--sub-color);
  }
  #h_btn .form a:after {
    background: #97bf28;
  }
  
  #h_btn a .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #h_btn a .small {
    font-size: .8em;
  }
  #h_btn a .large {
    font-size: 1.2em;
  }
  #h_btn a:before {
    display: flex;
    content: "";
    width: 2em;
    height: 2em;
    margin-right: .5em;
  }
  #h_btn .tel a:before {
    background: url(/wp-content/uploads/images/icon_tel.webp) center center no-repeat;
    background-size: contain;
  }
  #h_btn .form a:before {
    background: url(/wp-content/uploads/images/icon_form.webp) center center no-repeat;
    background-size: contain;
  }
  /* ハンバーガー */
  #h_toggle_btn_cover {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
  #h_toggle_btn {
    position: relative;
    width: 70px;
    height: 70px;
    padding-top: 42px;
    background: var(--white);
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    position: absolute;
    left: 21px;
    display: block;
    content: "";
    width: 28px;
    height: 1px;
    background: var(--text-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span:nth-child(1) {
    top: 20px;
  }
  #h_toggle_btn span:nth-child(2) {
    top: 28px;
  }
  #h_toggle_btn span:nth-child(3) {
    top: 36px;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 28px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 28px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }    
  #h_toggle_btn .name {
    font-size: 1rem;
    letter-spacing: .1em;
    text-align: center;
  }  
  /* ナビゲーション */
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 8rem 3rem 3rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
    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: .8em;
    padding-left: 2em;
    border-bottom: 1px dotted var(--border-color);
  }
  #h_nav li a:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.2em;
    height: 1.2em;
    margin-top: -.6rem;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width:1025px) {
  #f_map .map {}
  #f_map .map iframe {
    aspect-ratio: 3 / 1;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  /* 追尾バナー */
  #fix_banner_list {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
  }
  #fix_banner_list.fixed {
    position: absolute;
    bottom: 11.5rem;
  }
  #fix_banner_list .list:nth-child(n+2) {
    margin-left: 1.5rem;
  }
  #fix_banner_list .list.hidden {
    display: none;
  }
  #fix_banner_list .list span.close_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    color: var(--main-color);
    font-size: .8em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background: var(--bg-high-color);
  }  
  #fix_banner_list .list img {
    width: 100%;
    height: auto;
  }    
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-align: center;
    height: 10rem;
    font-family: var(--serif);
    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: 2rem;
    right: 2rem;
    z-index: 50;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    background: var(--sub-color);
    border-radius: 50%;
    -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: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }   
  #page_top a:hover {
    opacity: .7;
  }    
}
@media screen and (max-width:1024px) {
  #footer {
    padding-bottom: 6rem;
  }
  #f_map .map {}
  #f_map .map iframe {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  /* 追尾バナー */
  #fix_banner_list {
    position: fixed;
    bottom: 7rem;
    left: 1rem;
    z-index: 98;
  }
  #fix_banner_list.fixed {
    position: absolute;
    bottom: calc(100% + 1rem);
  }
  #fix_banner_list .list {
    width: 240px;
  }
  #fix_banner_list .list:nth-child(n+2) {
    margin-top: 10px;
  }
  #fix_banner_list .list.hidden {
    display: none;
  }
  #fix_banner_list .list span.close_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    color: var(--main-color);
    font-size: .8em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background: var(--bg-high-color);
  }
  #fix_banner_list .list img {
    width: 100%;
    height: auto;
  }  
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-align: center;
    padding: 3rem 0;
    font-family: var(--serif);
    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: 2rem;
    right: 2rem;
    z-index: 50;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    background: var(--sub-color);
    border-radius: 50%;
    -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: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }   
  #page_top a:hover {
    opacity: .7;
  }    
}
/******************************************************
メインビジュアル
*****************************************************/
@media screen and (min-width:1025px) {
  #top_main {
    position: relative;
    padding: 120px;
    padding-left: 25vw;
    height: calc(100vh);
    overflow: hidden;
    box-sizing: border-box;
    z-index: 0;
    background: url(/wp-content/uploads/images/bg_main.webp) top left no-repeat;
    background-size: 100% auto;
  }
  #top_main #catch_copy {
    position: absolute;
    top: 0;
    left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    z-index: 3;    
    text-shadow: 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white);    
    background: url(/wp-content/uploads/images/catch_img.webp) bottom 10% left 0% no-repeat;
    background-size: 24vw auto;
    box-sizing: border-box;
  }
  #top_main #catch_copy .large {
    font-size: 2.8vw;
    letter-spacing: .1em;
    line-height: 1.35;
    font-family: var(--serif);
  }
  #top_main #catch_copy .large:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    margin: .3em 0;
    background: var(--text-color);
    border: 3px solid var(--white);
  }
  #top_main #catch_copy .large .orange {
    color: var(--sub-color-2);
  }
  #top_main #catch_copy .large .green {
    color: var(--sub-color);
  }
  #top_main #catch_copy .small {
    font-size: 1.8vw;
    line-height: 1.6;
  }
  #top_main #recruit_comment {
    position: absolute;
    bottom: 6vw;
    left: 2vw;
    color: var(--white);
    font-size: 10.8vw;
    line-height: 1;
    font-family: "Pinyon Script", cursive;
    text-shadow: 0 0 .1em #999;
    z-index: 2;
    transform:rotate(-5deg);
  }
  #top_main #main_visual {
    z-index: 1;
  }
  #top_main #main_visual .image {
    margin-right: 2rem;
  }
  .scroll_down {
    position: absolute;
    bottom: 0;
    right: 60px;
  }
  .scroll_text {
    position: absolute;
    bottom: 200px;
    right: 50px;
    font-size: 1rem;
    writing-mode: vertical-lr;
    letter-spacing: .1em;
    font-family: var(--serif);
  }
  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-color);
    animation:
      circlemove 2s ease-in-out infinite,
      cirlemovehide 2s ease-out infinite;
  }
  .scroll_down:after{
    content:"";
    position: absolute;
    bottom: 20px;
    left:0;
    width:1px;
    height: 160px;
    background: var(--text-color);
  }
}
@media screen and (max-width:1024px) {
  #top_main {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 0;
  }
  #top_main #catch_copy {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    padding-bottom: 20vw;
    color: var(--text-color);
    z-index: 3;
    text-shadow: 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white), 0 0 .3em var(--white); 
    box-sizing: border-box;
  }
  #top_main #catch_copy .large {
    font-size: 6vw;
    letter-spacing: .1em;
    line-height: 1.35;
    font-family: var(--serif);
  }
  #top_main #catch_copy .large:after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    margin: .3em 0;
    background: var(--text-color);
    border: .1em solid var(--white);
  }
  #top_main #catch_copy .large .orange {
    color: var(--sub-color-2);
  }
  #top_main #catch_copy .large .green {
    color: var(--sub-color);
  }
  #top_main #catch_copy .small {
    font-size: 3.2vw;
    line-height: 1.6;
  }
  #top_main #recruit_comment {
    position: absolute;
    bottom: 3vw;
    left: 3vw;
    color: var(--white);
    font-size: 20vw;
    line-height: 1;
    font-family: "Pinyon Script", cursive;
    text-shadow: 0 0 .1em #999;
    z-index: 2;
    transform:rotate(-5deg);
  }
  #top_main #main_visual {
    z-index: 1;
  }
  #top_main #main_visual .image {
  }
  #top_main #main_visual {
    z-index: 1;
  }
  #top_main #main_visual img {
    object-fit: cover;
    aspect-ratio: 1 / 1.2;    
  }
  .scroll_text,
  .scroll_down {
    display: none;
  }
}
/******************************************************
タイトル
*****************************************************/
@media screen and (min-width:1025px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
  }
  .main_title .eng {
    color: var(--sub-color);
    font-size: 12rem;
    line-height: 1;
    font-family: var(--alphabet);
    letter-spacing: .1em;    
  }
  .main_title .eng.pink {
    color: var(--main-color);
  }
  .main_title .eng.green {
    color: var(--sub-color);
  }
  .main_title .eng.orange {
    color: var(--sub-color-2);
  }
  .main_title .eng:after {
    display: block;
    content: "";
    width: 60px;
    height: 60px;
    margin: .1em auto .2em;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  .main_title .jap {
    font-size: 3.6rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;  
    line-height: 1.35;
  }
  .main_title .jap .c_orange {
    color: var(--sub-color-2);
  }
  .sub_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 6rem;
    text-align: center;
  }
  .sub_title .jap {
    font-size: 5.4rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;  
    line-height: 1.35;
  }
}
@media screen and (max-width:1024px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
  }
  .main_title .eng {
    color: var(--sub-color);
    font-size: 4rem;
    line-height: 1;
    font-family: var(--alphabet);
    letter-spacing: .1em;    
  }
  .main_title .eng.pink {
    color: var(--main-color);
  }
  .main_title .eng.green {
    color: var(--sub-color);
  }
  .main_title .eng.orange {
    color: var(--sub-color-2);
  }
  .main_title .eng:after {
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    margin: .1em auto .2em;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  .main_title .jap {
    font-size: 1.8rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;  
    line-height: 1.35;
  }
  .main_title .jap .c_orange {
    color: var(--sub-color-2);
  }
  .sub_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    text-align: center;
  }
  .sub_title .jap {
    font-size: 2.4rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;  
    line-height: 1.35;
  }
}
/******************************************************
院長挨拶
*****************************************************/
@media screen and (min-width:1025px) {
  #top_greeting {
    position: relative;
    padding: 10rem 5rem;
    background: var(--white);
  }
  #top_greeting .greeting_inner {
    position: relative;
    padding: 5rem;
    background: var(--white) url(/wp-content/uploads/images/bg_greeting.webp) top center no-repeat;
    background-size: cover;     
  }
  #top_greeting .greeting_inner:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    height: 40%;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background: var(--sub-color-2);
    aspect-ratio: 1 / 1;
  }
  #top_greeting .greeting_inner:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    height: 40%;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background: var(--sub-color);
    aspect-ratio: 1 / 1;
  }      
  #top_greeting .greeting_box {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,.5);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.1);
    z-index: 1;
  }
  #top_greeting .greeting_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 8rem;
    border: 1px solid var(--text-color);
  }
  #top_greeting .greeting_flex .greeting_image {
    position: relative;
    width: 600px; 
  }
  #top_greeting .greeting_flex .greeting_image img {
    position: absolute;
    bottom: 0;
    right: -15%;
    width: 100%;
    z-index: 2;
  }
  #top_greeting .greeting_flex .greeting_image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    background: url(/wp-content/uploads/images/greeting_img002.webp) bottom left no-repeat;
    background-size: cover;
    width: calc(100% + 20rem);
    height: 100%;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }
  #top_greeting .greeting_flex .greeting_comment {
    width: calc(100% - 660px);
    font-size: 1.8rem;
  }
  #top_greeting h2 {
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    letter-spacing: .1em;
  }
  #top_greeting h2 .eng {
    display: flex;
    margin-bottom: .3em;
    color: var(--main-color);
    font-size: 9rem;
    line-height: 1;
    font-family: var(--alphabet);
  }
  #top_greeting h2 .eng:before {
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-right: .3em;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  #top_greeting h2 .jap {
    font-size: 2.4rem;
    font-family: var(--serif);
  }
  #top_greeting .greeting_flex .greeting_comment .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }  
  #top_greeting .greeting_flex .greeting_comment .comment p.name {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_greeting .greeting_flex .greeting_comment .comment p.name .large {
    margin-left: .5em;
    font-size: 1.5em;
  }
}
@media screen and (max-width:1024px) {
  #top_greeting {
    position: relative;
    padding: 5rem 1.5rem;
    background: var(--white);
  }
  #top_greeting .greeting_inner {
    position: relative;
    padding: 1rem;
    background: var(--white) url(/wp-content/uploads/images/bg_greeting.webp) top center no-repeat;
    background-size: cover;     
  }
  #top_greeting .greeting_inner:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    height: 50px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background: var(--sub-color-2);
    aspect-ratio: 1 / 1;
  }
  #top_greeting .greeting_inner:after {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    content: "";
    height: 50px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    background: var(--sub-color);
    aspect-ratio: 1 / 1;
  }      
  #top_greeting .greeting_box {
    position: relative;
    padding: 1rem;
    background: rgba(255,255,255,.5);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.1);
    z-index: 1;
  }
  #top_greeting .greeting_flex {
    padding: 1rem;
    border: 1px solid var(--text-color);
  }
  #top_greeting .greeting_flex .greeting_image {
    position: relative;
    margin-bottom: 3rem;
  }
  #top_greeting .greeting_flex .greeting_image img {
    position: relative;
    display: block;
    z-index: 2;
  }
  #top_greeting .greeting_flex .greeting_image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    background: url(/wp-content/uploads/images/greeting_img002.webp) bottom left no-repeat;
    background-size: cover;
    width: 100%;
    height: 60%;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }
  #top_greeting .greeting_flex .greeting_comment {}
  #top_greeting h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    letter-spacing: .1em;
  }
  #top_greeting h2 .eng {
    display: flex;
    margin-bottom: .3em;
    color: var(--main-color);
    font-size: 3rem;
    line-height: 1;
    font-family: var(--alphabet);
  }
  #top_greeting h2 .eng:before {
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-right: .3em;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  #top_greeting h2 .jap {
    font-size: 1.6rem;
    font-family: var(--serif);
  }
  #top_greeting .greeting_flex .greeting_comment .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }  
  #top_greeting .greeting_flex .greeting_comment .comment p.name {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_greeting .greeting_flex .greeting_comment .comment p.name .large {
    margin-left: .5em;
    font-size: 1.5em;
  }
}
/******************************************************
クリニックの働きやすさ
*****************************************************/
@media screen and (min-width:1025px) {
  #top_charm {
    padding: 10rem 0;
    background: #f6faeb url(/wp-content/uploads/images/bg_charm.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_charm .inner {
    width: 100%;
    padding: 0 10%;
  }
  #top_charm .charm_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #top_charm .charm_list .list {
    width: calc(100% / 3);
    font-size: 1.8rem;
    background: var(--white);
    box-sizing: border-box;
  }
  #top_charm .charm_list .list:nth-child(n+2) {
    border-left: 1px solid var(--bg-high-color);
  }
  #top_charm .charm_list .list:nth-child(1) .box {
    background: url(/wp-content/uploads/images/charm_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(2) .box {
    background: url(/wp-content/uploads/images/charm_img002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(3) .box {
    background: url(/wp-content/uploads/images/charm_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    text-align: center;
    font-size: 2.4rem;
    font-family: var(--serif);
    letter-spacing: .1em;    
    height: 240px;
    background: rgba(124,153,46,.65);
    text-shadow: #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em;
  }
  #top_charm .charm_list .list .title .number {
    font-size: 4.8rem;
  }
  #top_charm .charm_list .list .comment {
    padding: 5rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width:1024px) {
  #top_charm {
    padding: 5rem 0;
    background: #f6faeb url(/wp-content/uploads/images/bg_charm.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_charm .charm_list {}
  #top_charm .charm_list .list {
    background: var(--white);
    box-sizing: border-box;
  }
  #top_charm .charm_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_charm .charm_list .list:nth-child(1) .box {
    background: url(/wp-content/uploads/images/charm_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(2) .box {
    background: url(/wp-content/uploads/images/charm_img002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(3) .box {
    background: url(/wp-content/uploads/images/charm_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-family: var(--serif);
    letter-spacing: .1em;    
    height: 240px;
    background: rgba(124,153,46,.65);
    text-shadow: #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em, #7c992e 0 0 .3em;
  }
  #top_charm .charm_list .list .title .number {
    font-size: 3.6rem;
  }
  #top_charm .charm_list .list .comment {
    padding: 3rem;
    box-sizing: border-box;
  }
}
/******************************************************
当院の自慢
*****************************************************/
@media screen and (min-width:1025px) {
  #top_point {
    padding: 10rem 0;
    background-color: var(--white);
    background-image: radial-gradient(circle, #fafafa 6px, transparent 6px), radial-gradient(circle, #fafafa 6px, transparent 6px);
    background-position: 0 0, 16px 32px;
    background-size: 32px 64px;
  }
  #top_point .inner {
    width: 100%;
    padding: 0 10%;
  }
  #top_point .point_title {
    margin-bottom: 6rem;
    font-size: 6rem;
    text-align: center;
    font-style: italic;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_point .point_title span {
    position: relative;
    display: inline-block;
    color: var(--sub-color-2);
  }
  #top_point .point_title span:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--sub-color-2);
  }
  #top_point .point_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_point .point_list .list {
    width: calc((100% / 3) - 30px);
  }
  #top_point .point_list .list .image {
    margin-bottom: 3rem;
  }
  #top_point .point_list .list .image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_point .point_list .list .title {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    min-height: 4em;
    margin-bottom: 1em;
    color: var(--main-color);
    text-align: center;
    font-size: 2.4rem;
    font-family: var(--serif);
    font-weight: var(--text-weight-bold);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-image: repeating-linear-gradient(135deg, #fefefe, #fefefe 6px, #fafafa 6px, #fafafa 12px);
  }   
}
@media screen and (max-width:1024px) {
  #top_point {
    padding: 5rem 0;
    background-color: var(--white);
    background-image: radial-gradient(circle, #fafafa 6px, transparent 6px), radial-gradient(circle, #fafafa 6px, transparent 6px);
    background-position: 0 0, 16px 32px;
    background-size: 32px 64px;
  }
  #top_point .inner {
  }
  #top_point .point_title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    text-align: center;
    font-style: italic;
    font-weight: var(--text-weight-bold);
    font-family: var(--serif);
  }
  #top_point .point_title span {
    position: relative;
    display: inline-block;
    color: var(--sub-color-2);
  }
  #top_point .point_title span:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: var(--sub-color-2);
  }
  #top_point .point_list {
  }
  #top_point .point_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_point .point_list .list .image {
    margin-bottom: 3rem;
  }
  #top_point .point_list .list .image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_point .point_list .list .title {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    padding: .5em 0;
    margin-bottom: 1em;
    color: var(--main-color);
    text-align: center;
    font-size: 2rem;
    font-family: var(--serif);
    font-weight: var(--text-weight-bold);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-image: repeating-linear-gradient(135deg, #fefefe, #fefefe 6px, #fafafa 6px, #fafafa 12px);
  }   
}
/******************************************************
当院の自慢2
*****************************************************/
@media screen and (min-width:1025px) {
  #top_point_2 {
    padding: 10rem 0;
    background-image: linear-gradient(135deg, #f6a700, #ea637b);
  }
  #top_point_2 .sub_title {
    color: var(--white);
  }
  #top_point_2 .point_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding: 5rem;
    border-radius: 1rem;
    background: var(--bg-high-color);
  }
  #top_point_2 .point_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_point_2 .point_list .list .image {
    width: 360px;
  }
  #top_point_2 .point_list .list .text {
    width: calc(100% - 400px);
  }
  #top_point_2 .point_list .list .title {
    position: relative;
    padding-left: 2.5em;
    color: var(--main-color);
    font-size: 3rem;
    font-family: var(--serif);
  }
  #top_point_2 .point_list .list .title:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 2em;
    height: 2em;
    margin-top: -.7em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  #top_point_2 .point_list .list .title:after {
    display: block;
    content: "";
    width: 100%;
    margin: .5em 0;
    border-bottom: 3px dotted var(--border-color);
  }
}
@media screen and (max-width:1024px) {
  #top_point_2 {
    padding: 5rem 0;
    background-image: linear-gradient(135deg, #f6a700, #ea637b);
  }
  #top_point_2 .sub_title {
    color: var(--white);
  }
  #top_point_2 .point_list .list {
    align-items: center;
    padding: 3rem;
    border-radius: .5rem;
    background: var(--bg-high-color);
  }
  #top_point_2 .point_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_point_2 .point_list .list .image {
    margin-bottom: 2rem;
  }
  #top_point_2 .point_list .list .text {
  }
  #top_point_2 .point_list .list .title {
    position: relative;
    color: var(--main-color);
    font-size: 1.6rem;
    text-align: center;
    font-family: var(--serif);
  }
  #top_point_2 .point_list .list .title:before {
    display: block;
    content: "";
    width: 2em;
    height: 2em;
    margin: 0 auto 1em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_logo.webp) center center no-repeat;
    background-size: contain;
  }
  #top_point_2 .point_list .list .title:after {
    display: block;
    content: "";
    width: 100%;
    margin: .5em 0;
    border-bottom: 3px dotted var(--border-color);
  }
}
/******************************************************
スタッフの声
*****************************************************/
@media screen and (min-width:1025px) {
  #top_voice {
    padding: 10rem 0;
    background: #fef7f8;
  }
  #top_voice .voice_list {
    max-width: 1200px;
    margin: 0 auto;
  }
  #top_voice .voice_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_voice .voice_list .list:nth-child(even) {
    flex-direction: row-reverse;
  }
  #top_voice .voice_list .list:nth-child(n+2) {
    margin-top: 5rem;
  }  
  #top_voice .voice_list .list .box {
    position: relative;
    width: calc(100% - 240px);
    padding: 5rem;
    box-sizing: border-box;
    background: var(--white);
  }
  #top_voice .voice_list .list:nth-child(odd) .box:before {
    position: absolute;
    display: block;
    content: "";
    top: 100px;
    right: 100%;
    margin-top: -20px;
    border-top: 20px solid transparent;
    border-right: 20px solid var(--white);
    border-bottom: 20px solid transparent;
  }
  #top_voice .voice_list .list:nth-child(even) .box:before {
    position: absolute;
    display: block;
    content: "";
    top: 100px;
    left: 100%;
    margin-top: -20px;
    border-top: 20px solid transparent;
    border-left: 20px solid var(--white);
    border-bottom: 20px solid transparent;
  }  
  #top_voice .voice_list .list .box .s_box:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_voice .voice_list .list .image {
    width: 200px;
    height: 200px;
    border-radius: 100px;
  }
  #top_voice .voice_list .list .image img {
    border-radius: 50%;
  }
  #top_voice .voice_list .list h3 {
    margin-bottom: .8em;
    padding-bottom: .8em;
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
    border-bottom: 1px dotted var(--border-color);
  }
  #top_voice .voice_list .list h3 span {
    font-size: 2rem;
  }
}
@media screen and (max-width:1024px) {
  #top_voice {
    padding: 5rem 0;
    background: #fef7f8;
  }
  #top_voice .voice_list {
    max-width: 960px;
    margin: 0 auto;
  }
  #top_voice .voice_list .list {}
  #top_voice .voice_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }  
  #top_voice .voice_list .list .box {
    position: relative;
    width: 100%;
    padding: 3rem;
    box-sizing: border-box;
    background: var(--white);
  }
  #top_voice .voice_list .list .box:before {
    position: absolute;
    display: block;
    content: "";
    bottom: 100%;
    left: 50%;
    margin-left: -20px;
    border-bottom: 20px solid var(--white);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
  }
  #top_voice .voice_list .list .box .s_box:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_voice .voice_list .list .image {
    width: 160px;
    height: 160px;
    margin: 0 auto 3rem;
    border-radius: 80px;
  }
  #top_voice .voice_list .list .image img {
    border-radius: 50%;
  }
  #top_voice .voice_list .list h3 {
    margin-bottom: .8em;
    padding-bottom: .8em;
    color: var(--main-color);
    font-weight: 600;
    border-bottom: 1px dotted var(--border-color);
  }

  #top_voice .voice_list .list h3 span {
    font-size: 1.6rem;
  }
}
/****************************************************
ドクターインタビュー
****************************************************/
@media screen and (min-width:1025px) {
  #top_doctor {
    padding: 10rem 0;
    background: #f6faeb url(/wp-content/uploads/images/bg_doctor.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_doctor .doctor_cover {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
  #top_doctor .doctor_cover:nth-of-type(2) {
    flex-direction: row;
    margin-top: 10rem;
  }
  #top_doctor .doctor_cover:before {
    display: block;
    width: 40%;
    content: "";
  }
  #top_doctor .doctor_cover:nth-of-type(1):before {
    border-radius: 2rem 0 0 2rem;
    background: url(/wp-content/uploads/images/doctor_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_doctor .doctor_cover:nth-of-type(2):before {
    border-radius: 0 2rem 2rem 0;
    background: url(/wp-content/uploads/images/doctor_img002.webp) top center no-repeat;
    background-size: cover;
  }
  .doctor_list {
    width: 60%;    
    padding: 0 10rem;
    box-sizing: border-box;
  }
  .doctor_list .list:nth-child(n+2) {
    margin-top: 2em;
  }
  .doctor_list .list .title span {
    position: relative;
    display: block;
    padding-left: 1.5em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  .doctor_list .list .title span:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    color: var(--sub-color);
    line-height: 1;
    content: "Q.";
    font-family: var(--alphabet);  
  }
  .doctor_list .list p {
    margin-top: .5em;
    padding: 3rem;
    border-radius: 1rem;
    background: var(--white);
  }
}
@media screen and (max-width:1024px) {
  #top_doctor {
    padding: 5rem 0;
    background: #f6faeb url(/wp-content/uploads/images/bg_doctor.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_doctor .doctor_cover {}
  #top_doctor .doctor_cover:before {
    display: block;
    width: 100%;
    content: "";
    object-fit: cover;
    aspect-ratio: 3 / 2;
  }
  #top_doctor .doctor_cover:nth-of-type(1):before {
    background: url(/wp-content/uploads/images/doctor_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_doctor .doctor_cover:nth-of-type(2):before {
    background: url(/wp-content/uploads/images/doctor_img002.webp) top center no-repeat;
    background-size: cover;
  }
  .doctor_list {   
    padding: 3rem 1.5rem;
    box-sizing: border-box;
  }
  .doctor_list .list:nth-child(n+2) {
    margin-top: 2em;
  }
  .doctor_list .list .title span {
    position: relative;
    display: block;
    padding-left: 1.5em;
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  .doctor_list .list .title span:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    color: var(--sub-color);
    line-height: 1;
    content: "Q.";
    font-family: var(--alphabet);      
  }
  .doctor_list .list p {
    margin-top: .5em;
    padding: 3rem;
    background: var(--white);
  }
}
/******************************************************
1日のスケジュール
******************************************************/
@media screen and (min-width:1025px) {
  #top_schedule {
    padding: 10rem 0;
    background: var(--white);
  }  
  #top_schedule .inner {
    width: initial;
    padding: 0;
  }
  .parts_schedule_a .schedule_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 5%;
  }
  .parts_schedule_a .schedule_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% / 5) - 12px);
    margin-left: 15px;
  }
  .parts_schedule_a .schedule_list .list:nth-child(5n+1) {
    margin-left: 0;
  }
  .parts_schedule_a .schedule_list .list .image {
    position: relative;
    margin-bottom: 2rem;
  }
  .parts_schedule_a .schedule_list .list:nth-child(-n+5) .image:after {
    position: absolute;
    top: 50%;
    left: 100%;
    display: block;
    content: "";
    width: 4rem;
    height: 1px;
    background: #ccc;
  }
  .parts_schedule_a .schedule_list .list .time {
    position: absolute;
    top: -30px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 50%;
    background: var(--sub-color);
  }
  .parts_schedule_a .schedule_list .list .title {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
    font-size: 1.8rem;
  }
}
@media screen and (max-width:1024px) {
  #top_schedule {
    padding: 5rem 0;
    background: var(--white);
  }
  .parts_schedule_a .schedule_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .parts_schedule_a .schedule_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  .parts_schedule_a .schedule_list .list .image {
    position: relative;
    margin-bottom: 1rem;
  } 
  .parts_schedule_a .schedule_list .list .time {
    position: absolute;
    top: -30px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 50%;
    background: var(--sub-color);
  }
  .parts_schedule_a .schedule_list .list .title {
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.6rem;
  }
}
/******************************************************
特徴
******************************************************/
@media screen and (min-width:1025px) {
  #top_feature {   
    position: relative;
    padding: 10rem 0;
    background: #fef7f8;
  } 
  #top_feature .main_title .eng {
    position: relative;
    z-index: 1;
  }
  #top_feature .feature_list {
    position: relative;  
    padding: 0 5%;
    z-index: 1;
  }
  #top_feature .feature_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
  }
  #top_feature .feature_list .list:nth-child(odd) {
    flex-direction: row-reverse;
  }
  #top_feature .feature_list .list:nth-child(n+2) {
    margin-top: 8rem;
  }
  #top_feature .feature_list .list .image {
    width: 50%;
    margin-bottom: 8rem;
    box-sizing: border-box;
    background: var(--bg-high-color);
  }
  #top_feature .feature_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/feature_img001.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/feature_img002.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/feature_img003.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list .list .text {
    position: relative;
    width: calc(50% + 8rem);
    box-sizing: border-box;
    z-index: 1;
  }
  #top_feature .feature_list .list:nth-child(odd) .text {
    margin-right: -8rem;
  }
  #top_feature .feature_list .list:nth-child(even) .text {
    margin-left: -8rem;
  }
  #top_feature .feature_list .list .text .cover {
    padding: 8rem;
    background: var(--white);
    box-shadow: -.2em .2em .2em 0 rgba(0,0,0,.1);
  }
  #top_feature .feature_list .list .text .number {
    color: var(--sub-color);
    font-size: 6rem;
    text-align: center;
    font-family: var(--serif);
  }
  #top_feature .feature_list .list .text .number span {
    margin-left: .1em;
    font-size: 12rem;
    line-height: 1;
  }
  #top_feature .feature_list .list .text .title {
    margin-bottom: 1em;
    padding-bottom: 1em;
    color: var(--sub-color-2);
    font-size: 3rem;
    font-family: var(--serif);
    line-height: 1.5;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (max-width:1024px) {
  #top_feature {   
    position: relative;
    padding: 5rem 0;
    background: #fef7f8;
  } 
  #top_feature .main_title .eng {
    position: relative;
    z-index: 1;
  }
  #top_feature .feature_list {
    position: relative;  
    z-index: 1;
  }
  #top_feature .feature_list .list {
    z-index: 1;
  }
  #top_feature .feature_list .list:nth-child(n+2) {
    margin-top: 5rem;
  }
  #top_feature .feature_list .list .image {
    width: 100%;
    margin-bottom: 2rem;
    box-sizing: border-box;
    background: var(--bg-high-color);
    object-fit: cover;
    aspect-ratio: 3 / 2;
  }
  #top_feature .feature_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/feature_img001.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/feature_img002.webp?20250519) top center no-repeat;
    background-size: cover;
  }
  #top_feature .feature_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/feature_img003.webp?20250519) top center no-repeat;
    background-size: cover;
  }

  #top_feature .feature_list .list .text {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
  }
  #top_feature .feature_list .list .text .cover {
    padding: 0 1.5rem;
  }
  #top_feature .feature_list .list .text .number {
    color: var(--sub-color);
    font-size: 1.6rem;
    text-align: center;
    font-family: var(--serif);
  }
  #top_feature .feature_list .list .text .number span {
    margin-left: .1em;
    font-size: 3rem;
    line-height: 1;
  }
  #top_feature .feature_list .list .text .title {
    margin-bottom: 1em;
    padding-bottom: 1em;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }
}
/******************************************************
クリニック情報
******************************************************/
@media screen and (min-width:1025px) {
  #top_clinic {
    background: var(--white);
  }
  #top_clinic .clinic_flex {
    display: flex;
    flex-wrap: wrap;
  }
  #top_clinic .clinic_flex .image {
    width: 50%;
    background: url(/wp-content/uploads/images/clinic_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_clinic .clinic_flex .image img {
    display: none;
  }
  #top_clinic .clinic_flex .data {
    width: 50%;
    box-sizing: border-box;
  }
  #top_clinic .clinic_flex .data .box {
    max-width: 600px;    
    padding: 6rem;
    padding-right: 0;
    box-sizing: border-box;
  }
  #top_clinic .main_title {
    text-align: left;
  }
  #top_clinic .main_title .eng:after {
    display: none;
  }
  #top_clinic .clinic_data {
    margin-bottom: 3rem;
  }
  #top_clinic .clinic_data table {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
  }
  #top_clinic .clinic_data th,
  #top_clinic .clinic_data td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  #top_clinic .clinic_data th {
    width: 80px;
  }
  #top_clinic .clinic_schedule table {
    width: 100%;
    margin-bottom: 1rem;
  }
  #top_clinic .clinic_schedule th,
  #top_clinic .clinic_schedule td {
    padding: 1rem;
    text-align: center;
  }
  #top_clinic .clinic_schedule th {
    color: var(--white);
    background: var(--main-color);
  }
  #top_clinic .clinic_schedule td {
    border-bottom: 1px solid var(--border-color);
  }
  #top_clinic .clinic_schedule .color {
    color: var(--sub-color);
  }
  #top_clinic .clinic_schedule p {
    text-align: right;
  }
}
@media screen and (max-width:1024px) {
  #top_clinic {
    background: var(--white);
  }
  #top_clinic .clinic_flex {
  }
  #top_clinic .clinic_flex .image {
    width: 100%;
    background: url(/wp-content/uploads/images/clinic_img001.webp) top center no-repeat;
    background-size: cover;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_clinic .clinic_flex .image img {
    display: none;
  }
  #top_clinic .clinic_flex .data {
    box-sizing: border-box;
  }
  #top_clinic .clinic_flex .data .box { 
    padding: 5rem 1.5rem;
    box-sizing: border-box;
  }
  #top_clinic .main_title {}
  #top_clinic .clinic_data {
    margin-bottom: 3rem;
  }
  #top_clinic .clinic_data table {
    width: 100%;
    border-top: 1px solid var(--border-color);
  }
  #top_clinic .clinic_data th,
  #top_clinic .clinic_data td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  #top_clinic .clinic_data th {
    width: 80px;
  }
  #top_clinic .clinic_schedule table {
    width: 100%;
    margin-bottom: 1rem;
  }
  #top_clinic .clinic_schedule th,
  #top_clinic .clinic_schedule td {
    padding: .5em;
    text-align: center;
  }
  #top_clinic .clinic_schedule th {
    color: var(--white);
    background: var(--main-color);
  }
  #top_clinic .clinic_schedule td {
    border-bottom: 1px solid var(--border-color);
  }
  #top_clinic .clinic_schedule .color {
    color: var(--sub-color);
  }
  #top_clinic .clinic_schedule p {
    text-align: right;
  }
}
/******************************************************
スライダー
******************************************************/
@media screen and (min-width:1025px) {
  #top_slider {
    padding: 2rem 0;
  }
  .simply-scroll-container {
    position: relative;
  }
  .simply-scroll-clip {
    position: relative;
    overflow: hidden; 
  }
  .simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .simply-scroll-list li img {
    display: block;
    border-radius: 2rem;
  }
  #image-scroll.simply-scroll-list div {
    float: left; 
    padding: 0 1rem;
    margin: 0;
    width: 25vw;
  }    
  #image-scroll.simply-scroll-list img {
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
}
@media screen and (max-width:1024px) {
  #top_slider {
    padding: 1rem 0;
  }
  .simply-scroll-container {
    position: relative;
  }
  .simply-scroll-clip {
    position: relative;
    overflow: hidden; 
  }
  .simply-scroll-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .simply-scroll-list li img {
    display: block;
    border-radius: 2rem;
  }
  #image-scroll.simply-scroll-list div {
    float: left; 
    padding: 0 .5rem;
    margin: 0;
    width: 40vw;
  }    
  #image-scroll.simply-scroll-list img {
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }  
}
/******************************************************
採用の流れ
******************************************************/
@media screen and (min-width:1025px) {
  #top_flow {
    padding: 10rem 0;
    background: var(--white);
  }
  #top_flow .inner {
    width: initial;
    padding: 0 10%;
    box-sizing: border-box;
  }
  #top_flow .flow_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_flow .flow_list .list {
    position: relative;
    width: calc((100% / 5) - 32px);
  }
  #top_flow .flow_list .list .number {
    position: absolute;
    top: -3rem;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    margin-left: -3rem;
    padding: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--serif);
    text-align: center;
    line-height: 1;
    background: var(--main-color);
    border-radius: 3rem;
    z-index: 1;
    box-sizing: border-box; 
  }
  #top_flow .flow_list .list .number span {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .list .image {
    position: relative;
    margin-bottom: 2rem;
  }
  #top_flow .flow_list .list:nth-child(n+2) .image:before {
    position: absolute;
    display: block;
    content: "\f04e";
    font-family: "FontAwesome";
    top: 50%;
    left: -30px;
    margin-top: -0.5em;
    color: var(--sub-color);
    font-size: 2rem;
    line-height: 1;
  }
  #top_flow .flow_list .list h3 {
    margin-bottom: .8em;
    text-align: center;
  }
  #top_flow .flow_list .list h3 span {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .list a {
    color: var(--main-color);
    text-decoration: underline;
  }
  #top_flow .flow_list .list a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width:1024px) {
  #top_flow {
    padding: 5rem 0;
    background: var(--white);
  }
  #top_flow .flow_list {}
  #top_flow .flow_list .list {
    position: relative;
    margin-top: 5rem;
  }
  #top_flow .flow_list .list .number {
    position: absolute;
    top: -3rem;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: 6rem;
    margin-left: -3rem;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
    font-family: var(--serif);
    text-align: center;
    line-height: 1;
    background: var(--main-color);
    border-radius: 3rem;
    z-index: 1;
    box-sizing: border-box; 
  }
  #top_flow .flow_list .list .number span {
    font-size: 2.4rem;
  }
  #top_flow .flow_list .list .image {
    position: relative;
    margin-bottom: 2rem;
  }
  #top_flow .flow_list .list:nth-child(n+2) .image:before {
    position: absolute;
    display: block;
    content: "\f04e";
    font-family: "FontAwesome";
    top: 50%;
    left: -30px;
    margin-top: -0.5em;
    color: var(--sub-color);
    font-size: 2rem;
    line-height: 1;
  }
  #top_flow .flow_list .list h3 {
    margin-bottom: .8em;
    font-size: 2rem;
    text-align: center;
  }
  #top_flow .flow_list .list h3 span {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
  #top_flow .flow_list .list a {
    color: var(--main-color);
    text-decoration: underline;
  }
  #top_flow .flow_list .list a:hover {
    text-decoration: none;
  }  
}
/******************************************************
募集要項
******************************************************/
@media screen and (min-width:1025px) {
  #top_recruit {
    padding: 10rem 0;
    background: #f6faeb;
  }
  #top_recruit .recruit_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6rem;
  }
  #top_recruit .recruit_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 240px;
    height: 60px;
    margin-left: 2rem;
    color: var(--white);
    background: var(--main-color);
    border: 1px solid var(--main-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
    box-sizing: border-box;
  }
  #top_recruit .recruit_btn .btn.active,
  #top_recruit .recruit_btn .btn:hover {
    color: var(--main-color);
    background: var(--white);
  }
  #top_recruit .recruit_btn .btn:nth-child(4n+1) {
    margin-left: 0;
  }
  #top_recruit .recruit_box {
    display: none;
  }
  #top_recruit .recruit_box.active {
    display: block;
  }
  #top_recruit .recruit_box dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_recruit .recruit_box dl:nth-of-type(n+2) {
    margin-top: 15px;
  }
  #top_recruit .recruit_box dl dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(25% - 7.5px);
    padding: 1em;
    color: var(--white);
    line-height: 1.5;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: var(--sub-color);
    box-sizing: border-box;
  }
  #top_recruit .recruit_box dl dd {
    width: calc(75% - 7.5px);
    padding: 1em;
    line-height: 1.5;
    background: var(--white);
    box-sizing: border-box;
  }
  #top_recruit .recruit_box dl dd > *:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_recruit .recruit_box dl dd li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_recruit .recruit_box dl dd li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #top_recruit .recruit_box dl dd li:nth-child(n+2) {
    margin-top: .5em;
  }
  #top_recruit .recruit_box dl dd span {
    font-weight: var(--text-weight-bold);
  }
}
@media screen and (max-width:1024px) {
  #top_recruit {
    padding: 5rem 0;
    background: #f6faeb;
  }
  #top_recruit .recruit_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #top_recruit .recruit_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: calc((100% / 3) - 2px);
    height: 40px;
    margin-left: 3px;
    color: var(--white);
    font-size: 1.2rem;
    background: var(--main-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
    box-sizing: border-box;
    border: 1px solid var(--main-color);
  }
  #top_recruit .recruit_btn .btn:nth-child(3n+1) {
    margin-left: 0;
  }
  #top_recruit .recruit_btn .btn:nth-child(n+4) {
    margin-top: 6px;
  }
  #top_recruit .recruit_btn .btn.active,
  #top_recruit .recruit_btn .btn:hover {
    color: var(--main-color);
    background: var(--white);
  }
  #top_recruit .recruit_box {
    display: none;
  }
  #top_recruit .recruit_box.active {
    display: block;
  }
  #top_recruit .recruit_box dl {
  }
  #top_recruit .recruit_box dl:nth-of-type(n+2) {
    margin-top: 1.5rem;
  }
  #top_recruit .recruit_box dl dt {
    padding: 1em;
    color: var(--white);
    text-align: center;
    background: var(--sub-color);
    box-sizing: border-box;
  }
  #top_recruit .recruit_box dl dd {
    margin-top: 1rem;
    padding: 1em;
    background: var(--white);
    box-sizing: border-box;
  }
  #top_recruit .recruit_box dl dd > *:nth-child(n+2) {
    margin-top: 1em;
  }
  #top_recruit .recruit_box dl dd li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_recruit .recruit_box dl dd li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #top_recruit .recruit_box dl dd li:nth-child(n+2) {
    margin-top: .5em;
  }
  #top_recruit .recruit_box dl dd span {
    font-weight: var(--text-weight-bold);
  }
}
/******************************************************
応募フォーム
******************************************************/
@media screen and (min-width:1025px) {
  #top_entry {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_entry .no_recruit {
    font-size: 2rem;
    font-weight: var(--text-weihgt-bold);
    text-align: center;
  }
  #top_entry .entry_form {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
  }
  #top_entry .entry_form .form_table {
    margin-bottom: 5rem;
  }
  #top_entry .entry_form dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
    background: var(--white);
    box-sizing: border-box;
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
  }
  #top_entry .entry_form dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_entry .entry_form dt {
    position: relative;
    width: 300px;
    padding: 1.5em;
    box-sizing: border-box;
  }
  #top_entry .entry_form dt.req:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "必須";
    padding: 0 1rem;
    color: var(--white);
    margin-top: -1.6rem;
    font-size: 1.4rem;
    line-height: 3.2rem;
    background: var(--sub-color-2);
  }
  #top_entry .entry_form dd {
    width: calc(100% - 315px);
    padding: 1.5em;
    box-sizing: border-box;
  }
  #top_entry .entry_form dd.flex {
    display: flex;
    flex-wrap: wrap;
  }
  #top_entry .entry_form dd input[type=text],
  #top_entry .entry_form dd input[type=email],
  #top_entry .entry_form dd textarea {
    width: 100%;
    padding: 1em;
    border: none;
    background: #f2f2f2;
    box-sizing: border-box;
  }
  #top_entry .entry_form dd input[type=text].number {
    width: 120px;
  }
  #top_entry .entry_form dd input.post {
    width: 240px!important;
  }
  #top_entry .entry_form dd div:nth-child(n+2) {
    margin-left: 1em;
  }
  #top_entry .entry_form .note {
    margin-bottom: 5rem;
    padding: 4rem;
    text-align: center;
    background: var(--white);
  }
  #top_entry .entry_form .check_comment {
    margin-bottom: 5rem;
    text-align: center;
  }
  #top_entry .entry_form .entry_btn {
    position: relative;
    width: 360px;
    margin: 0 auto 5rem;
    text-align: center;
  }
  #top_entry .entry_form .entry_btn input[type=submit] {
    display: inline-block;
    width: 100%;
    height: 6rem;
    color: var(--white);
    font-size: 1.8rem;
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #top_entry .entry_form .entry_btn input[type=submit]:hover {
    opacity: .7;
  }
  #top_entry .entry_form .entry_btn:after {
    position: absolute;
    display: block;
    content: "\f105";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    color: var(--white);
    line-height: 1;  
  }
  #top_entry .entry_form .privacy {
    padding: 4rem;
    border: 1px solid var(--border-color);
  }
  #top_entry .entry_form .privacy .title {
    margin-bottom: 1em;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #top_entry .entry_form .privacy li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_entry .entry_form .privacy li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
}
@media screen and (max-width:1024px) {
  #top_entry {
    padding: 5rem 0;
    background: var(--bg-high-color);    
  }
  #top_entry .no_recruit {
    font-weight: var(--text-weight-bold);
    text-align: center;
  }  
  #top_entry .entry_form {}
  #top_entry .entry_form .form_table {
    margin-bottom: 3rem;
  }
  #top_entry .entry_form dl {
    background: var(--white);
    box-sizing: border-box;
  }
  #top_entry .entry_form dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_entry .entry_form dt {
    position: relative;
    padding: 1.5em;
    padding-bottom: .5rem;
    box-sizing: border-box;
  }
  #top_entry .entry_form dt.req:after {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    content: "必須";
    padding: 0 1rem;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 3.2rem;
    background: var(--sub-color-2);
  }
  #top_entry .entry_form dd {
    padding: 1.5em;
    padding-top: .5rem;
    box-sizing: border-box;
  }
  #top_entry .entry_form dd.flex {
    display: flex;
    flex-wrap: wrap;
  }
  #top_entry .entry_form dd input[type=text],
  #top_entry .entry_form dd input[type=email],
  #top_entry .entry_form dd textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    background: #f2f2f2;
    box-sizing: border-box;
  }
  #top_entry .entry_form dd input[type=text].number {
    width: 70px;
  }
  
  #top_entry .entry_form dd .mwform-radio-field.horizontal-item {
    display: block;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0!important;
  }
  #top_entry .entry_form dd input.post {
    width: 50%!important;
  }
  #top_entry .entry_form dd div:nth-child(n+2) {
    margin-left: 1em;
  }
  #top_entry .entry_form .note {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--white);
  }
  #top_entry .entry_form .check_comment {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_entry .entry_form .entry_btn {
    position: relative;
    margin: 0 auto 3rem;
    text-align: center;
  }
  #top_entry .entry_form .entry_btn input[type=submit] {
    display: inline-block;
    width: 100%;
    height: 5rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #top_entry .entry_form .entry_btn input[type=submit]:hover {
    opacity: .7;
  }
  #top_entry .entry_form .entry_btn:after {
    position: absolute;
    display: block;
    content: "\f105";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    color: var(--white);
    line-height: 1;  
  }
  #top_entry .entry_form .privacy {
    padding: 3rem 1.5rem;
    border: 1px solid var(--border-color);
  }
  #top_entry .entry_form .privacy .title {
    margin-bottom: 1em;
    font-size: 1.8rem;
    text-align: center;
  }
  #top_entry .entry_form .privacy li {
    position: relative;
    padding-left: 1.5em;
  }
  #top_entry .entry_form .privacy li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
}