@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=Corinthia:wght@400;700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap');
/******************************************************
基本設定
******************************************************/
:root {  
  --white: #fff; /* 白 */
  --main-color: #f39800; /* メインカラー */
  --sub-color: #89ceb2; /* サブカラー */
  --bg-high-color: #fef6ea; /* 背景色（オレンジ） */
  --bg-high-color-2: #f1f9f6; /* 背景色（グリーン） */
  --inner-size: 1300px; /* インナー */
  --text-size-pc: 16px; /* フォントサイズ */
  --text-size-sp: 14px; /* フォントサイズ */
  --text-color: #444444; /* テキストカラー（通常） */
  --text-high-color: #fff; /* テキストカラー（背景あり） */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 400; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 900; /* フォント（超太字）の太さ */
  --border-color: #ddd; /* 線の色 */
  --sans: "Noto Sans JP", "游ゴシック", "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; /* ゴシック体 */
  --serif: "Shippori Mincho", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman", serif; /* 明朝体 */
  --catch: "Noto Sans JP", "游ゴシック", "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --alphabet: font-family: "Figtree", sans-serif; /* 英語フォント */
}
/******************************************************
リセット
******************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
  margin: 0;
	padding: 0;
	border: 0;
  color: var(--text-color);
	font-size: 100%;
  font-weight: var(--text-weight);
	font: inherit;
	vertical-align: middle;
  word-break: break-all;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  font-size: var(--text-size-pc);
  line-height: 2;
  font-weight: var(--text-weight);
  letter-spacing: var(--text-space);
  font-family: var(--sans);
}
@media screen and (max-width:767px) {
  body {
    font-size: var(--text-size-sp);
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: var(--text-weight);
  line-height: 1.5;
}
table, th, td {
  border-collapse: collapse;
  font-weight: var(--text-weight);
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
img {
  max-width: 100%;
	height: auto;
  vertical-align: middle;
}
a {
  color: var(--text-color);
  text-decoration: none;
  vertical-align: baseline;
  border:　none;
  outline:　none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
iPhoneリセット
******************************************************/
input,textarea,select {
  font-family: var(--sans);
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 1.6rem;
  font-family: var(--sans);
  outline: none;

  -webkit-appearance:none;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
@keyframes fadeInUp30 {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp30 {
  animation-name: fadeInUp30;
  animation-duration: 1s;
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/******************************************************
iPhoneリセット
******************************************************/
.clearfix:after,
.inner:after,
.box:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
/******************************************************
レスポンシブ
******************************************************/
.pc, .tab, .sp {display: none;}
.inner {position: relative;}
@media screen and (max-width: 767px){
  .inner {
    margin: 0 1.5rem;
  }
  .sp {display: block;}
  .sp-left {text-align:left!important;}
  .sp-right {text-align:right!important;}
  .sp-center {text-align:center!important;}
}
@media screen and (min-width: 768px) {
  .inner {
    width: var(--inner-size);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  .pc {display: block;}
  .pc-left {text-align:left!important;}
  .pc-right {text-align:right!important;}
  .pc-center {text-align:center!important;}
}
/******************************************************
基本フォント
******************************************************/
.sans {
  font-family: var(--sans);
}
.serif {
  font-family: var(--serif);
}
.bold {
  font-weight: var(--text-weight-bold);
}
/******************************************************
ヘッダー
******************************************************/
@media screen and (min-width:1025px) {
  #header {
  }
  #h_cover {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-right: calc(70px + 3rem);
    box-sizing: border-box;
    z-index: 100;
  }
  #h_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }
  #h_logo .image {
    box-sizing: border-box;
    background: url(/wp-content/uploads/images/logo.webp) center center no-repeat;
    background-size: contain;
  }
  #h_logo img {
    height: 72px;
  }
  #h_logo .type {
    width: 300px;
    margin-left: 3rem;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 3.2rem;
    border-radius: 1.6rem;
    font-family: var(--serif);
    background: var(--main-color);
  }
  #h_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-family: var(--serif);
    padding: 1.5rem 0;
  }
  #h_btn .btn {
    position: relative;
    width: 300px;
    margin-left: 1.5rem;
  }
  #h_btn .btn a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;    
    height: 70px; 
    color: var(--white);
    border-radius: 35px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_btn .btn a:hover {
    opacity: .7;
  }
  #h_btn .btn a .title {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  #h_btn .btn a .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 3rem;
  }
  
  /* 電話番号 */
  #h_btn .btn a.tel {
    color: var(--white);
    background: var(--sub-color);
  }
  /*
  #h_btn .btn a.tel:after {
    content: "";
    position: absolute;
    border-left: 30px solid var(--main-color);
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    bottom: -20px;
    right: -5px;
    width: 0;
    height: 0;
    transform: rotate(45deg);
  }
  */
  #h_btn .btn a.tel .logo .icon {
    content: "";
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    line-height: 3rem;
    background: url(/wp-content/uploads/images/icon_phone.webp) center center;
    background-size: contain;
  }
  /* フォーム */
  #h_btn .btn a.form {
    color: var(--white);
    background: var(--sub-color);
  }
  /*
  #h_btn .btn a.form:after {
    content: "";
    position: absolute;
    border-left: 30px solid var(--sub-color);
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    bottom: -20px;
    right: -5px;
    width: 0;
    height: 0;
    transform: rotate(45deg);
  }
  */
  #h_btn .btn a.form .logo .icon {
    content: "";
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    line-height: 3rem;
    background: url(/wp-content/uploads/images/icon_plane.webp) center center;
    background-size: contain;
  }  
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 70px;
    height: 70px;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 101;
    color: var(--white);
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 50%;
  }
  #h_toggle_btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--white);
    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: 26px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 36px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 46px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 36px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 36px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    font-family: var(--serif);
    
    display: none;
  }
  
  /* メニュー全体 */
  #h_nav {
    background: rgba(255,255,255,.95);
    display: block;
    width: 480px;
    max-width: calc(100% - 60px);
    height: 100%;
    padding: 12rem 6rem 6rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    border-bottom: 1px solid #f2f2f2;
  }
  #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(--sub-color);
  }
  
  #page_top {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 7rem;
    height: 7rem;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    background: var(--sub-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;   
    border-radius: 50%;
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 1.4rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1.4rem;
    height: 1px;
    margin-top: -.5rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }     
  #page_top a:hover {
    opacity: .7;
  }
}
@media screen and (max-width:1024px) {
  #header {
    height: 6rem;
  }
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    background: var(--white);    
  }
  #h_logo {
    padding: 1.5rem;
    padding-right: 7.2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #h_logo .image {
  }
  #h_logo .image img {
    display: block;
    height: 3rem;
    vertical-align: middle;
  }
  #h_logo .type {
    margin-left: 1rem;
    padding: .6rem;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
    text-align: left;
    background: var(--main-color);
  }
  
  #h_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #h_btn .btn {
    width: calc(100% / 2);
  }
  #h_btn .btn a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem .5rem;   
    height: 6rem;
    box-sizing: border-box;
  }
  #h_btn .btn a .title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #h_btn .btn a .logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    line-height: 2.5rem;
  }
  
  /* 電話番号 */
  #h_btn .btn a.tel {
    color: var(--white);
    background: var(--sub-color);
  }
  #h_btn .btn a.tel .logo .icon {
    content: "";
    width: 2rem;
    height: 2rem;
    margin-right: .4rem;
    line-height: 2rem;
    background: url(/wp-content/uploads/images/icon_phone.webp) center center;
    background-size: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  /* フォーム */
  #h_btn .btn a.form {
    color: var(--white);
    background: var(--sub-color);
    border-left: 1px solid var(--white);
  }
  #h_btn .btn a.form .logo .icon {
    content: "";
    width: 2rem;
    height: 2rem;
    margin-right: .4rem;
    line-height: 2rem;
    background: url(/wp-content/uploads/images/icon_plane.webp) center center;
    background-size: contain;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }  
  #h_toggle_btn {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 101;
    color: var(--white);
    background: var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_toggle_btn span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 17px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;	
  }
  #h_toggle_btn span:nth-child(1){
    top: 16px;
  }
  #h_toggle_btn span:nth-child(2){
    top: 22px;
  }
  #h_toggle_btn span:nth-child(3){
    top: 28px;
  }
  #h_toggle_btn.open {
    z-index: 10004;
  }
  #h_toggle_btn.open span {
    color: var(--white);
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #h_toggle_btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #h_toggle_btn.open span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }  
  #h_toggle_btn div {
    position: absolute;
    width: 100%;
    bottom: .8rem;
    font-size: 1rem;
    text-align: center;
  }  
  /* メニュー全体 */
  #h_nav {
    background: rgba(255,255,255,.9);
    display: block;
    width: 280px;
    max-width: 100%;
    height: 100%;
    padding: 9rem 3rem 3rem;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    box-sizing: border-box;
  }
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #h_nav li a {
    position: relative;
    display: block;
    padding: 1em;
    padding-left: 1.5em;
    border-bottom: 1px solid #f2f2f2;
  }
  #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(--sub-color);
  }
  #page_top {
    position: fixed;
    bottom: 6rem;
    right: 0;
    z-index: 99;
  }
  #page_top.fixed {
    position: absolute;
    bottom: 6rem;
  }
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    color: var(--white);
    text-align: center;
    background: var(--sub-color);
    font-family: var(--alphabet);
    border-bottom: 1px solid #f4f9fc;
  }  
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.3rem;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: var(--white);
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 1rem;
    height: 1px;
    margin-top: -.3rem;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: var(--white);
  }  
}
/******************************************************
フッター
******************************************************/
@media screen and (min-width:1025px) {
  #footer #f_map {}
  #footer .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 480px;
    position: relative;
  }
  #footer .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    line-height: 1;
    height: 10rem;
    background: #60be98;
  }
  #copyright span.logo:after {
    display: inline-block;
    content: "";
    width: 1px;
    margin: 0 1em;
    height: 1em;
    background: var(--white);
    vertical-align: middle;
  }
  #copyright span.logo img {
    width: auto;
    height: 4rem;
  }  
}
@media screen and (max-width:1024px) {
  #footer {
    padding-bottom: 6rem;
  }
  #footer #f_map {}
  #footer .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
  }
  #footer .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }  
  #copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    text-align: center;
    line-height: 1;
    padding: 3rem 0;
    background: #60be98;
  }
  #copyright span.logo {
    margin-bottom: 1.5rem;
  }
  #copyright span.logo img {
    width: auto;
    height: 3rem;
  }   
  
}
/******************************************************
追従バナー
******************************************************/
@media screen and (min-width:1025px) {
  .fix_banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
  }
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--sub-color);
    line-height: 15px;
    text-align: center;
    background: var(--white);
    cursor: pointer;
  }
}
@media screen and (max-width:1024px) {
  .fix_banner {
    position: fixed;
    bottom: 7rem;
    left: 1rem;
    z-index: 99;
  }
  .fix_banner.hidden {
    display: none;
  }
  .fix_banner span.close_btn {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--sub-color);
    line-height: 15px;
    text-align: center;
    background: var(--white);
    cursor: pointer;
  }
  .fix_banner img {
    max-width: 60%;
  }
}
/******************************************************
タイトル
******************************************************/
@media screen and (min-width:1025px) {
  .main_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 6rem;
    font-size: 3rem;
    text-align: center;
  }
  .main_title span {
    display: block;
    font-family: var(--serif);
  }
  .main_title .eng {
    margin-bottom: .1em;
    font-size: 12rem;
    letter-spacing: .1em;
    line-height: 1;
    color: var(--main-color);
    font-family: var(--alphabet);    
  }
  .main_title .eng i {
    background: linear-gradient(90deg, #f4a000 0%, #f8d209 35%, #d3d342 66%, #89ceb2 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;      
  }
  .main_title .jap {
  }
}
@media screen and (max-width:1024px) {
  .main_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    font-size: 1.6rem;
    text-align: center;
  }
  .main_title span {
    display: block;
    font-family: var(--serif);
  }
  .main_title .eng {
    margin-bottom: .1em;
    font-size: 3rem;
    letter-spacing: .1em;
    line-height: 1;
    color: var(--main-color);    
    font-family: var(--alphabet);  
  }
  .main_title .eng i {
    background: linear-gradient(90deg, #f4a000 0%, #f8d209 35%, #d3d342 66%, #89ceb2 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;      
  }  
  .main_title .jap {
  }
}
/******************************************************
メインビジュアル
******************************************************/
@media screen and (min-width:1240px) {
  #top_main {
    position: relative;
    background: url(/wp-content/uploads/images/bg_main.webp) center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #main_cover {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    padding: 10rem 5%;    
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
  }
  #main_cover .main_image {
    width: 55%;
  }
  #main_cover .main_catch {
    position: relative;
    width: 40%;
    z-index: 2;
  }
  #main_cover .block_a {
    position: absolute;
    top: -10vw;
    left: -10vw;
    width: 20vw;
    height: 20vw;
    margin: auto;
  }
  #main_cover .block_b {
    position: absolute;
    bottom: -20vw;
    right: -20vw;
    width: 40vw;
    height: 40vw;
    margin: auto;
  }  
  #main_cover .block_c {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    width: 10vw;
    height: 10vw;
    margin: auto;
  }  
  
  #main_cover .main_recruit {
    position: absolute;
    bottom: .2em;
    right: .2em;
    text-align: center;
    z-index: 3;
    font-size: 12vw;
    line-height: 1;
    font-family: "Corinthia", cursive;
    transform: rotate(-8deg);
    transform-origin: center;
  }
  
  .circleText {
    overflow: visible;
    animation: rotation 30s linear infinite;
  }
  .circleText__circle {
    fill: none;     
  }
  .circleText__text {
    fill: var(--white);
    letter-spacing: 0.12em;
    font-family: var(--alphabet);
    border: 1px solid var(--main-color);
    opacity: .5;
  }  
}
@media screen and (max-width:1239px) {
  #top_main {
    position: relative;
    background: url(/wp-content/uploads/images/bg_main.webp) center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  #main_cover {
    position: relative;
    width: 100%;
    padding: 1.5rem;    
    padding-bottom: 12vw;
    box-sizing: border-box;
    z-index: 1;
    overflow: hidden;
  }
  #main_cover .main_image {
    text-align: center;
  }
  #main_cover .main_image img {
    width: 100%;
  }
  #main_cover .main_catch {
    position: relative;
    text-align: center;
    z-index: 2;
  }
  #main_cover .main_catch img {
    width: 80%;
  }
  #main_cover .block_a {
    position: absolute;
    top: -10vw;
    left: -10vw;
    width: 20vw;
    height: 20vw;
    margin: auto;
    
    display: none;
  }
  #main_cover .block_b {
    position: absolute;
    bottom: -20vw;
    right: -20vw;
    width: 40vw;
    height: 40vw;
    margin: auto;
    
    display: none;
  }  
  #main_cover .block_c {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    width: 10vw;
    height: 10vw;
    margin: auto;
    
    display: none;
  }  
  
  #main_cover .main_recruit {
    position: absolute;
    bottom: .2em;
    right: .2em;
    text-align: center;
    z-index: 3;
    font-size: 12vw;
    line-height: 1;
    font-family: "Corinthia", cursive;
    transform: rotate(-8deg);
    transform-origin: center;
  }
  
  .circleText {
    overflow: visible;
    animation: rotation 30s linear infinite;
  }
  .circleText__circle {
    fill: none;     
  }
  .circleText__text {
    fill: var(--white);
    letter-spacing: 0.15em;
    font-family: var(--alphabet);
    border: 1px solid var(--main-color);
    opacity: .5;
  }  
}
/******************************************************
院長メッセージ
******************************************************/
@media screen and (min-width:1240px) {
  #top_greeting {
    position: relative;
    overflow: hidden;
  }
  #top_greeting .greeting_cover {
    position: relative;
    margin-top: 12rem;
    padding: 9rem 0 12rem;
    background: url(/wp-content/uploads/images/bg_greeting.webp) top center no-repeat;
  }
  #top_greeting .heading {
    position: absolute;
    top: -.5em;
    right: -5em;
    transform-origin: top left;
    transform: rotate(90deg);
    font-size: 6.25vw;
    letter-spacing: .1em;    
    line-height: 1;
    font-family: var(--alphabet);
    z-index: 1;
  }
  #top_greeting .heading span {
    background: linear-gradient(90deg, #f4a000 0%, #f8d209 35%, #d3d342 66%, #89ceb2 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;      
  }
  
  
  #top_greeting .greeting_box {
    position: relative;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  #top_greeting .name {
    position: absolute;
    bottom: 12rem;
    right: 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 240px;
    font-weight: 600;
    line-height: 1.5;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--white);
  }
  #top_greeting .name .doctor {
    font-size: 3rem;
  }
  #top_greeting .greeting_box .title {
    margin-bottom: .5em;
    font-size: 4rem;
    font-weight: 600;
  }
  #top_greeting .greeting_box .title .orange {
    color: var(--main-color);
  }
  #top_greeting .greeting_box .title .green {
    color: var(--sub-color);
  }
  #top_greeting .greeting_box .comment {
    width: 800px;
    padding: 6rem;
    background: rgba(255,255,255,.5);
    box-sizing: border-box;
  }
  #top_greeting .greeting_box .comment p:nth-child(n+2) {
    margin-top: 1em;
  }
}
@media screen and (max-width:1239px) {
  #top_greeting {
    position: relative;
    overflow: hidden;
  }
  #top_greeting:before {
    display: block;
    width: 100%;
    height: 65vw;
    content: "";
    margin-top: 3rem;
    background: url(/wp-content/uploads/images/greeting_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_greeting .greeting_cover {
    position: relative;
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_greeting_sp.webp) top center no-repeat;
  }
  #top_greeting .heading {
    margin-bottom: 3rem;
    font-size: 3rem;
    letter-spacing: .1em;    
    line-height: 1;
    text-align: center;
    font-family: var(--alphabet);
    z-index: 1;
  }
  #top_greeting .heading span {
    background: linear-gradient(90deg, #f4a000 0%, #f8d209 35%, #d3d342 66%, #89ceb2 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;      
  }
  
  
  #top_greeting .greeting_box {
    position: relative;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  #top_greeting .name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1em;
    text-align: right;
  }
  #top_greeting .name .doctor {
    font-size: 1.8rem;
  }
  #top_greeting .greeting_box .title {
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  #top_greeting .greeting_box .title .orange {
    color: var(--main-color);
  }
  #top_greeting .greeting_box .title .green {
    color: var(--sub-color);
  }
  #top_greeting .greeting_box .comment {
    box-sizing: border-box;
  }
  #top_greeting .greeting_box .comment p:nth-child(n+2) {
    margin-top: 1em;
  }
}
/******************************************************
お問い合わせ
******************************************************/
@media screen and (min-width:1025px) {
  #top_contact {
    margin-bottom: 9rem;
    padding: 9rem 0 12rem;
    background: url(/wp-content/uploads/images/bg_main.webp) center center no-repeat;
    background-size: cover;
  }
  #top_contact .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_contact .contact_list .list {
    width: calc(50% - 2rem);
  }
  #top_contact .contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
    border: 6px solid var(--white);    
    box-shadow: 1rem 1rem 0 0 rgba(0,0,0,.3);
  }
  #top_contact .contact_list .list a.tel {
    background: var(--main-color);
  }
  #top_contact .contact_list .list a.entry {
    background: var(--sub-color);
  }
  #top_contact .contact_list .list a .small {
    font-size: 2.4rem;
  }
  #top_contact .contact_list .list a .large {
    font-size: 3.6rem;
  }
}
@media screen and (max-width:1024px) {
  #top_contact {
    margin-bottom: 5rem;
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_main.webp) center center no-repeat;
    background-size: cover;
  }
  #top_contact .contact_list {
  }
  #top_contact .contact_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_contact .contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.5;
    border: 3px solid var(--white);    
    box-shadow: .4rem .4rem 0 0 rgba(0,0,0,.3);
  }
  #top_contact .contact_list .list a.tel {
    background: var(--main-color);
  }
  #top_contact .contact_list .list a.entry {
    background: var(--sub-color);
  }
  #top_contact .contact_list .list a .small {
    font-size: 1.6rem;
  }
  #top_contact .contact_list .list a .large {
    font-size: 2.4rem;
  }
}
/******************************************************
クリニックの働きやすさ
******************************************************/
@media screen and (min-width:1240px) {
  #top_charm {
    padding: 9rem 0 12rem;
  }
  #top_charm .charm_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }  
  #top_charm .charm_list .list:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
  }
  #top_charm .charm_list .list:nth-child(odd):after {
    clip-path: polygon(100% 50%, 20% 10%, 50% 80%);
    background: var(--bg-high-color);
  }
  #top_charm .charm_list .list:nth-child(even):after {
    clip-path: polygon(0% 50%, 80% 10%, 50% 80%);
    background: var(--bg-high-color);
  }
  #top_charm .charm_list .list:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
  }  
  #top_charm .charm_list .list:nth-child(odd):before {
    clip-path: polygon(30% 40%, 0 70%, 20% 100%);
    background: var(--bg-high-color-2);
  }
  #top_charm .charm_list .list:nth-child(even):before {
    clip-path: polygon(70% 40%, 100% 70%, 80% 100%);
    background: var(--bg-high-color-2);
  }  
  #top_charm .charm_list .list:nth-child(n+2) {
    margin-top: 8rem;    
  }
  #top_charm .charm_list .list:nth-child(odd) {
    flex-direction: row-reverse;
  }
  #top_charm .charm_list .list .image {
    position: relative;
    width: calc(100% - 860px);
    z-index: 1;
  }
  #top_charm .charm_list .list:nth-child(odd) .image {
    box-shadow: -2rem 2rem 0 0 rgba(196,230,216,1);
  }
  #top_charm .charm_list .list:nth-child(even) .image {
    box-shadow: 2rem 2rem 0 0 rgba(249,203,127,1);
  }  
  
  #top_charm .charm_list .list:nth-child(1) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(2) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(3) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(4) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img004.webp) top center no-repeat;
    background-size: cover;
  }  
  #top_charm .charm_list .list:nth-child(5) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img005.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(6) .image {
    background: var(--white) url(/wp-content/uploads/images/charm_img006.webp) top center no-repeat;
    background-size: cover;
  }    
  
  #top_charm .charm_list .list .text {
    position: relative;
    z-index: 1;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 860px;
    padding: 8rem;
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 3 / 2;
  }
  #top_charm .charm_list .list .text .number {
    margin-bottom: 1.2em;
    color: var(--sub-color);
    font-size: 3rem;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    font-family: var(--alphabet);
  }
  #top_charm .charm_list .list .text .title {
    margin-bottom: 1.2em;
    color: var(--main-color);
    font-size: 3.6rem;
    text-align: center;
    line-height: 1.5;
    font-family: var(--serif);
  }
}
@media screen and (max-width:1239px) {
  #top_charm {
    padding: 5rem 1.5rem;
  }
  #top_charm .charm_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }    
  #top_charm .charm_list .list:nth-child(n+2) {
    margin-top: 3rem;    
  }

  #top_charm .charm_list .list .image {
    position: relative;
    width: 100%;
    height: 56.25vw;
    margin-bottom: 3rem;
    z-index: 1;
  }
  #top_charm .charm_list .list:nth-child(odd) .image {
    box-shadow: -.5rem .5rem 0 0 rgba(196,230,216,1);
  }
  #top_charm .charm_list .list:nth-child(even) .image {
    box-shadow: .5rem .5rem 0 0 rgba(249,203,127,1);
  }  
  #top_charm .charm_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/charm_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/charm_img002.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/charm_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(4) .image {
    background: url(/wp-content/uploads/images/charm_img004.webp) top center no-repeat;
    background-size: cover;
  }  
  #top_charm .charm_list .list:nth-child(5) .image {
    background: url(/wp-content/uploads/images/charm_img005.webp) top center no-repeat;
    background-size: cover;
  }
  #top_charm .charm_list .list:nth-child(6) .image {
    background: url(/wp-content/uploads/images/charm_img006.webp) top center no-repeat;
    background-size: cover;
  }  
  
  #top_charm .charm_list .list .text {
    position: relative;
    z-index: 1;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 3 / 2;
  }
  #top_charm .charm_list .list .text .number {
    margin-bottom: 1.2em;
    color: var(--sub-color);
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.5;
    font-family: var(--serif);
  }
  #top_charm .charm_list .list .text .title {
    margin-bottom: 1.2em;
    color: var(--main-color);
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    font-family: var(--serif);
  }
}
/******************************************************
スタッフの声
******************************************************/
@media screen and (min-width:1025px) {
  #top_voice {
    padding: 9rem 0 12rem;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_voice.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_voice .voice_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 6rem;
  }
  #top_voice .voice_btn .btn {
    width: 280px;
    margin: 0 1rem;    
    line-height: 6rem;
    border-radius: 3rem;
    color: var(--main-color);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--main-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #top_voice .voice_btn .btn:hover {
    color: var(--white);
    background: var(--main-color);
  }
  #top_voice .voice_btn .btn.active {
    color: var(--white);
    background: var(--main-color);
  }
  #top_voice .voice_list .list {
    display: none;
  }
  #top_voice .voice_list .list.show {
    display: block;
  }
  #top_voice .voice_list .list .title {
    margin-bottom: 5rem;
    color: var(--main-color);
    font-size: 3rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;       
  }
  #top_voice .voice_list .list .faq {}
  #top_voice .voice_list .list .faq dl {
    position: relative;
    width: 100%;
    padding: 3rem 6rem;
    border-radius: 2rem;
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-sizing: border-box;
  }
  #top_voice .voice_list .list .faq dl:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_voice .voice_list .list:nth-child(1) .faq dl:first-child {
    padding-right: 300px;
  }
  #top_voice .voice_list .list:nth-child(2) .faq dl:first-child {
    padding-left: 300px;
  }
  #top_voice .voice_list .list:nth-child(1) .faq dl:first-child:before {
    position: absolute;
    display: block;
    bottom: 3rem;
    right: 0;
    width: 300px;
    height: 300px;
    content: "";
    background: url(/wp-content/uploads/images/voice_img001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_voice .voice_list .list:nth-child(2) .faq dl:first-child:before {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    content: "";
    background: url(/wp-content/uploads/images/voice_img002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_voice .voice_list .list .faq dt {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 600;
  }
  #top_voice .voice_list .list .faq dt:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 3px;    
    background-image: repeating-linear-gradient(135deg, #f2f2f2, #f2f2f2 3px, transparent 3px, transparent 6px);
  }  
  #top_voice .voice_list .list .faq dt:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100px;
    height: 3px;
    background: var(--main-color);
  }
  #top_voice .voice_list .list .faq dt:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 3px;    
    background-image: repeating-linear-gradient(135deg, #f2f2f2, #f2f2f2 3px, #ddd 3px, #ddd 6px);
  }
  #top_voice .voice_list .list .faq dt span {
    position: relative;
    display: block;
    padding-left: 1.5em;    
  }
  #top_voice .voice_list .list .faq dt span:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q";
  }
}
@media screen and (max-width:1024px) {
  #top_voice {
    padding: 5rem 0;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_voice.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_voice .voice_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #top_voice .voice_btn .btn {
    width: calc(50% - .5rem);
    margin-left: 1rem;
    line-height: 4rem;
    border-radius: 2rem;
    color: var(--main-color);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--main-color);
    cursor: pointer;
    box-sizing: border-box;
  }
  #top_voice .voice_btn .btn:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_voice .voice_btn .btn.active {
    color: var(--white);
    background: var(--main-color);
  }
  #top_voice .voice_list .list {
    display: none;
  }
  #top_voice .voice_list .list.show {
    display: block;
  }
  #top_voice .voice_list .list .title {
    margin-bottom: 3rem;
    color: var(--main-color);
    font-size: 1.8rem;
    text-align: center;
    font-family: var(--serif);
    letter-spacing: .1em;       
  }
  #top_voice .voice_list .list .faq {}
  #top_voice .voice_list .list .faq dl {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
    box-sizing: border-box;
  }
  #top_voice .voice_list .list .faq dl:nth-child(n+2) {
    margin-top: 1rem;
  }
  /*
  #top_voice .voice_list .list:nth-child(1) .faq dl:first-child {
    padding-left: 300px;
  }
  #top_voice .voice_list .list:nth-child(2) .faq dl:first-child {
    padding-right: 300px;
  }
  */
  #top_voice .voice_list .list:nth-child(1) .faq dl:first-child:before {
    display: block;
    width: 240px;
    height: 240px;
    max-width: 100%;
    content: "";
    margin: 0 auto 3rem;
    background: url(/wp-content/uploads/images/voice_img001.webp) center center no-repeat;
    background-size: contain;
  }
  #top_voice .voice_list .list:nth-child(2) .faq dl:first-child:before {
    display: block;
    width: 240px;
    height: 240px;
    max-width: 100%;
    content: "";
    margin: 0 auto;
    background: url(/wp-content/uploads/images/voice_img002.webp) center center no-repeat;
    background-size: contain;
  }
  #top_voice .voice_list .list .faq dt {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
  }
  #top_voice .voice_list .list .faq dt:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 3px;    
    background-image: repeating-linear-gradient(135deg, #f2f2f2, #f2f2f2 3px, transparent 3px, transparent 6px);
  }  
  #top_voice .voice_list .list .faq dt:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100px;
    height: 3px;
    background: var(--main-color);
  }
  #top_voice .voice_list .list .faq dt:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 3px;    
    background-image: repeating-linear-gradient(135deg, #f2f2f2, #f2f2f2 3px, #ddd 3px, #ddd 6px);
  }
  #top_voice .voice_list .list .faq dt span {
    position: relative;
    display: block;
    padding-left: 1.5em;    
  }
  #top_voice .voice_list .list .faq dt span:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q";
  }
}
/******************************************************
当院の自慢
******************************************************/
@media screen and (min-width:1025px) {
  #top_point {
    padding: 9rem 0 12rem;
    overflow: hidden;  
  }
  #top_point .point_list {
    padding: 0;
  }
  #top_point .point_list .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 12rem;
    background: var(--bg-high-color-2);
  }
  #top_point .point_list .list:nth-child(n+2) {
    margin-top: 20rem;
  }
  #top_point .point_list .list:nth-child(odd) {
    margin-left: 16rem;
  }
  #top_point .point_list .list:nth-child(odd):before {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    display: block;
    content: "";
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    border-left: 1px solid var(--sub-color);
    border-bottom: 1px solid var(--sub-color);
    box-sizing: border-box;
  }
  #top_point .point_list .list:nth-child(even) {
    flex-direction: row-reverse;
    margin-right: 16rem;
  }
  #top_point .point_list .list:nth-child(even):before {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    display: block;
    content: "";
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    border-right: 1px solid var(--sub-color);
    border-bottom: 1px solid var(--sub-color);
    box-sizing: border-box;
  }  
  #top_point .point_list .list .image {
    position: relative;
    width: 50%;
    margin-top: -8rem;
    padding-bottom: 8rem;
    z-index: 1;
  }
  #top_point .point_list .list:nth-child(odd) .image {
    margin-left: -8rem;
  }
  #top_point .point_list .list:nth-child(odd) .image img {
    box-shadow: 2rem 2rem rgba(196,230,216,1);
  }
  #top_point .point_list .list:nth-child(even) .image {
    margin-right: -8rem;
  }
  #top_point .point_list .list:nth-child(even) .image img {
    box-shadow: -2rem 2rem rgba(196,230,216,1);
  }  
  #top_point .point_list .list .comment {
    width: 50%;
    padding: 12rem 8rem;
    box-sizing: border-box;
  }
  #top_point .point_list .list:nth-child(odd) .comment {
    padding-left: 0;
  }
  #top_point .point_list .list:nth-child(even) .comment {
    padding-right: 0;
  }
  #top_point .point_list .list .title {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_point .point_list .list .number {
    width: 160px;
    color: var(--sub-color);
    font-style: italic;
    font-size: 12rem;
    font-family: var(--serif);
    line-height: 1;
  }
  #top_point .point_list .list h3 {
    width: calc(100% - 160px);
    font-size: 3.6rem;
    font-family: var(--serif);
  }  
  #top_point .point_list .list h3:first-letter {
    color: var(--sub-color);
  }  
}
@media screen and (max-width:1024px) {
  #top_point {
    padding: 5rem 0;
    overflow: hidden;
  }
  #top_point .point_list {
    padding: 0;
  }
  #top_point .point_list .list {
    margin-top: 3rem;
    background: var(--bg-high-color-2);
  }
 
  #top_point .point_list .list .image {
    position: relative;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    z-index: 1;
  }

  #top_point .point_list .list .comment {
    padding: 3rem 1.5rem;
    box-sizing: border-box;
  }
  #top_point .point_list .list .title {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
  }
  #top_point .point_list .list .number {
    width: 60px;
    color: var(--sub-color);
    font-style: italic;
    font-size: 4rem;
    text-align: right;
    font-family: var(--serif);
    line-height: 1;
  }
  #top_point .point_list .list h3 {
    width: calc(100% - 60px);
    font-size: 1.8rem;
    font-family: var(--serif);
  }  
  #top_point .point_list .list h3:first-letter {
    color: var(--sub-color);
  }
}
/****************************************************
ドクターインタビュー
****************************************************/
@media screen and (min-width: 1025px) {
  #top_doctor {
    padding: 9rem 0 12rem;
    background: var(--bg-high-color) 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(n+2) {
    margin-top: 10rem;
  }
  #top_doctor .doctor_cover:nth-of-type(even) {
    flex-direction: row;
  }
  #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;
  }
  #top_doctor .doctor_cover:nth-of-type(3):before {
    border-radius: 2rem 0 0 2rem;
    background: url(/wp-content/uploads/images/doctor_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_doctor .doctor_cover:nth-of-type(4):before {
    border-radius: 0 2rem 2rem 0;
    background: url(/wp-content/uploads/images/doctor_img004.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: 600;
  }
  .doctor_list .list .title span:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    color: var(--main-color);
    line-height: 1;
    content: "Q.";
    font-family: var(--alphabet);      
  }
  .doctor_list .list p {
    margin-top: .5em;
    padding: 3rem;
    background: var(--white);
  }
}
@media screen and (max-width: 1024px) {
  #top_doctor {
    padding: 5rem 0;
    background: var(--bg-high-color) 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;
  }
  #top_doctor .doctor_cover:nth-of-type(3):before {
    background: url(/wp-content/uploads/images/doctor_img003.webp) top center no-repeat;
    background-size: cover;
  }
  #top_doctor .doctor_cover:nth-of-type(4):before {
    background: url(/wp-content/uploads/images/doctor_img004.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: 600;
    line-height: 1.5;
  }
  .doctor_list .list .title span:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -.5em;
    color: var(--main-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: 9rem 0 12rem;
    background: var(--white) url(/wp-content/uploads/images/bg_schedule.webp) bottom center no-repeat;
    background-size: 100% auto;
  }  
  #top_schedule .inner {
    width: initial;
    padding: 0 2%;
  }
  .parts_schedule_a .schedule_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .parts_schedule_a .schedule_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc((100% / 5) - 20px);
    background: var(--white);
    margin-right: 25px;
    box-shadow: 0 0 1em 0 rgba(0,0,0,.1);
  }
  .parts_schedule_a .schedule_list .list:nth-child(5n) {
    margin-right: 0;
  }
  .parts_schedule_a .schedule_list .list .image {
    position: relative;
  }
  .parts_schedule_a .schedule_list .list:nth-child(n+2) .image:after {
    position: absolute;
    top: 50%;
    right: 100%;
    display: block;
    content: "";
    width: 25px;
    height: 1px;
    background: var(--border-color);
  }
  .parts_schedule_a .schedule_list .list .time {
    position: absolute;
    top: -20px;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: 40px;
    margin-left: -60px;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 20px;
    background: var(--main-color);
  }
  .parts_schedule_a .schedule_list .list .text {
    padding: 1.5em;
  }
  .parts_schedule_a .schedule_list .list .title {
    color: var(--sub-color);
    font-weight: var(--text-weight-bold);
    font-size: 1.8rem;
    text-align: center;
  }
}
@media screen and (max-width:1024px) {
  #top_schedule {
    padding: 5rem 0;
    background: var(--white) url(/wp-content/uploads/images/bg_schedule.webp) bottom center no-repeat;
    background-size: 100% auto;
  }  
  #top_schedule .inner {}
  .parts_schedule_a .schedule_list {}
  .parts_schedule_a .schedule_list .list {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }
  .parts_schedule_a .schedule_list .list .image {
    position: relative;
    margin-bottom: 2rem;
  }
  .parts_schedule_a .schedule_list .list:nth-child(n+2) .image:after {
    position: absolute;
    top: 50%;
    right: 100%;
    display: block;
    content: "";
    width: 25px;
    height: 1px;
    background: var(--border-color);
  }
  .parts_schedule_a .schedule_list .list .time {
    position: absolute;
    top: -15px;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100px;
    height: 30px;
    margin-left: -50px;
    color: var(--white);
    text-align: center;
    font-family: var(--serif);
    border-radius: 15px;
    background: var(--main-color);
  }
  .parts_schedule_a .schedule_list .list .title {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
    font-size: 1.8rem;
    text-align: center;
  }

}
/******************************************************
採用の流れ
******************************************************/
@media screen and (min-width:1025px) {
  #top_flow {
    padding: 9rem 0 12rem;
    background: var(--white);
  }
  #top_flow .inner {
    width: initial;
    padding: 0 5%;
    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(--sub-color);
    border-radius: 3rem;
    z-index: 1;
    box-sizing: border-box; 
  }
  #top_flow .flow_list .list .number span {
    font-size: 2rem;
  }
  #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: "\f061";
    font-family: "FontAwesome";
    top: 50%;
    left: -30px;
    margin-top: -0.5em;
    color: var(--main-color);
    font-size: 2rem;
    line-height: 1;
  }
  #top_flow .flow_list .list p {
    line-height: 1.6;
  }
  #top_flow .flow_list .list p span {
    font-weight: var(--text-weight-bold);
  }
  #top_flow .comment {
    text-align: center;
  }
  #top_flow .comment p span {
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
  }
}
@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: var(--white);
    font-size: 1rem;
    font-family: var(--serif);
    text-align: center;
    line-height: 1;
    background: var(--sub-color);
    border-radius: 3rem;
    z-index: 1;
    box-sizing: border-box; 
  }
  #top_flow .flow_list .list .number span {
    font-size: 2rem;
  }
  #top_flow .flow_list .list .image {
    position: relative;
    margin-bottom: 2rem;
  } 
  #top_flow .flow_list .list p {
    line-height: 1.6;
  }
  #top_flow .flow_list .list p span {
  }
  #top_flow .comment {
    text-align: center;
  }
  #top_flow .comment p span {
    font-size: 1.8rem;
  }
}
/******************************************************
クリニック情報
******************************************************/
@media screen and (min-width:1025px) {
  #top_clinic {
    background: var(--bg-high-color);
  }
  #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 .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_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(--main-color);
  }
  #top_clinic .clinic_schedule p {
    text-align: right;
  }
}
@media screen and (max-width:1024px) {
  #top_clinic {
    background: var(--bg-high-color);
  }
  #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(--main-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: 360px;
    height: 240px;
    list-style:none!important;
  }    
  #image-scroll.simply-scroll-list img {

    display: block;
  }  
}
@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: 1rem;
  }
  #image-scroll.simply-scroll-list div {
    float: left; 
    padding: 0 .5rem;
    margin: 0;
    width: 240px;
    height: 160px;
    list-style:none!important;
  }    
  #image-scroll.simply-scroll-list img {
    display: block;
  }  
}
/******************************************************
募集要項
******************************************************/
@media screen and (min-width:1025px) {
  #top_recruit {
    padding: 9rem 0 12rem;
    background: var(--bg-high-color-2);
  }
  #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(--sub-color);
    background: var(--white);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
    border: 1px solid var(--sub-color);
  }
  #top_recruit .recruit_btn .btn.active,
  #top_recruit .recruit_btn .btn:hover {
    color: var(--white);
    background: var(--sub-color);
  }
  #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: #fff;
    line-height: 1.5;
    text-align: center;
    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;
  }
}
@media screen and (max-width:1024px) {
  #top_recruit {
    padding: 5rem 0;
    background: var(--bg-high-color-2);
  }
  #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: #fff;
    font-size: 1.2rem;
    background: var(--sub-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(--sub-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(--sub-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;
  }
}
/******************************************************
応募フォーム
******************************************************/
@media screen and (min-width:1025px) {
  #top_entry {
    padding: 10rem 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255, 1), rgba(255,255,255, 1) 12px, rgba(250,250,250,1) 0, rgba(250,250,250,1) 16px);
  }
  #top_entry .no_recruit {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
  #top_entry .entry_form {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    padding: 5rem;
    brder-radius: 2rem;
    background: var(--white);
    box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
  }
  #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;
  }
  #top_entry .entry_form dl:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_entry .entry_form dt {
    position: relative;
    width: 300px;
    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(--main-color);
  }
  #top_entry .entry_form dd {
    width: calc(100% - 315px);
    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: #f6f6f6;
    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;
    border: 1px solid var(--text-color);
  }
  #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;
    background: var(--bg-high-color);
  }
  #top_entry .entry_form .privacy .title {
    margin-bottom: 1em;
    font-size: 2.4rem;
    text-align: center;
    font-weight: 500;
  }
  #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: repeating-linear-gradient(135deg, rgba(255,255,255, 1), rgba(255,255,255, 1) 12px, rgba(250,250,250,1) 0, rgba(250,250,250,1) 16px);  
  }
  #top_entry .no_recruit {
    font-weight: 600;
    text-align: center;
  }  
  #top_entry .entry_form {
    padding: 3rem 1.5rem;
    background: var(--white);
  }
  #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-bottom: .5rem;
    box-sizing: border-box;
  }
  #top_entry .entry_form dt.req:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "必須";
    padding: 0 1rem;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 3.2rem;
    background: var(--main-color);  
  }
  #top_entry .entry_form dd {
    padding-top: 1rem;
    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: #f6f6f6;
    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: 4rem;
    text-align: center;
    border: 1px solid var(--text-color);
  }
  #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;
    background: var(--bg-high-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: "・";
  }
}

.grecaptcha-badge {
  visibility: hidden;
}