@charset "utf-8";
/*
Theme Name: RUSH DESIGN THEME
Author: RUSH DESIGN
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=Allura&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
@import url('library/css/keyframe.css');
/******************************************************
基本設定
******************************************************/
:root {
  --main-color: #e60012; /* メインカラー */
  --sub-color: #ff9900; /* サブカラー */
  --bg-color: #e60012; /* 背景色1（基本的にメインカラーと同じ） */
  --bg-high-color: #f2f2f2; /* 背景色2 */
  --text-color: #303030; /* テキストカラー（通常） */
  --white: #fff; /* テキストカラー（背景あり） */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 500; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 800; /* フォント（超太字）の太さ */
  --border-color: #ccc; /* 線の色 */
  --sans: "Zen Kaku Gothic New", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "メイリオ", Meiryo, sans-serif; /* ゴシック体 */
  --serif: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Hiragino Mincho ProN", "MS PMincho", "Times New Roman", serif; /* 明朝体 */
  --alphabet: "Allura", cursive; /* 英語フォント */
}
/******************************************************
リセット
******************************************************/
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: 16px;
	font-size: 1.6rem;
  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: 13px;
    font-size: 1.3rem;
  }
}
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;
}
/******************************************************
レスポンシブ
******************************************************/
@media screen and (max-width: 767px){
  .inner {
    position: relative;
    margin: 0 1.5rem;
  }
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    position: relative;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
  }
  .sp {
    display: none;
  }
}
/******************************************************
パンくず
******************************************************/
#breadcrumb {
  padding: 1em 0;
}
#breadcrumb li {
  display: inline-block;
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: var(--text-weight-bold);
}
@media screen and (max-width:767px) {
  #breadcrumb li {
    font-size: 1.2rem;
  }
}
#breadcrumb li a {
  color: var(--main-color);
}
#breadcrumb li a:hover {
  color: var(--text-color);
}
#breadcrumb li:after {
  content: "\f105";
  font-family: "FontAwesome";
  margin: 0 1em;
}
#breadcrumb li:last-child:after {
  content: none;
  margin: 0;
}
#breadcrumb li br {
  display: none;
}
/******************************************************
ページネーション
******************************************************/
#pagination {
  margin-top: 3rem;
}
#pagination ul {
  text-align: center;
}
#pagination li {
  display: inline-block;
  margin: 0 .3rem;
  font-size: 1.4rem;
  padding: 0!important;
}
@media screen and (max-width:1024px) {
  #pagination li {
    margin: 0 .1rem;
    font-size: 1.2rem;
  }
}
#pagination li:before {
  display: none;
}
#pagination li:last-child {
  margin-right: 0;
}
#pagination li a,
#pagination li span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  color: var(--text-color);
  font-weight: var(--text-weight-bold);
  text-align: center;
  line-height: 1;
  background: var(--bg-high-color);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media screen and (min-width:1025px) {
  #pagination li a {
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
}
#pagination li a:hover {
  color: var(--white);
  background: var(--main-color);
}
#pagination li span.current {
  color: var(--white);
  background: var(--main-color);
}
#pagination li span.dots {
  color: var(--text-color);
  background: none;
}

#pagination li a.prev,
#pagination li a.next {
  background: none;
}
#pagination li a.prev:hover,
#pagination li a.next:hover {
  color: var(--main-color);
}
#pagination li a.prev:before {
  content: "\f104";
  font-family: "FontAwesome";
}
#pagination li a.next:before {
  content: "\f105";
  font-family: "FontAwesome";
}

/******************************************************
ヘッダー
******************************************************/
@media screen and (max-width:1024px) {
  #header {
    position: relative;
    width: 100%;
  }
  /* ヘッダー */
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 7rem;
    z-index: 1000;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_cover.active {
    background: var(--main-color);
  }
  /* ロゴ */
  #h_logo a {
    display: block;
    padding: 1.5rem;
  }
  #h_logo a img {
    display: block;
    width: auto;
    height: 4rem;
  }
  /* PC用 */
  #pc_nav {
    display: none;
  }
  /* ハンバーガーメニュー */
  #h_toggle_btn {
    position: fixed;
    top: 0;
    right: 0;
  }
  #h_toggle_btn .btn {
    position: relative;
    width: 7rem;
    height: 7rem;
  }
  #h_toggle_btn .btn span {
    position: absolute;
    left: 20px;
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #h_toggle_btn .btn span:nth-child(1) {
    top: 27px;
  }
  #h_toggle_btn .btn span:nth-child(2) {
    top: 35px;
  }
  #h_toggle_btn .btn span:nth-child(3) {
    top: 43px;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 35px;
    -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: 35px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }  
  /* メニュー */  
  #h_nav {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: calc(100% - 7rem);
    max-width: 600px;
    height: 100%;
    overflow: hidden;
    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 .5s linear;
    -moz-transition: all .5s linear;
    transition: all .5s linear;
    z-index: 1001;
    background: #fff;    
  }
  #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_cover {
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
  }
  /* 大メニュー */
  #h_nav .first_nav {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .first_list:nth-child(n+2) {
    border-top: 1px solid #eee;
  }  
  #h_nav .first_link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2em;
    padding-right: 2em;
    height: 6rem;
    box-sizing: border-box;
  }
  #h_nav .first_link:after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-right: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    transform: rotate(45deg);
  }
  /* 開閉ボタン */
  #h_nav .toggle_box {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .toggle_box .first_link {
    width: calc(100% - 6rem);
  }
  #h_nav .toggle_btn {
    position: relative;
    width: 6rem;
    border-left: 1px solid #eee;
    box-sizing: border-box;
  }
  #h_nav .toggle_btn:before,
  #h_nav .toggle_btn:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 1px;
    background: var(--text-color);
    position: absolute;
    right: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s;
  }
  #h_nav .toggle_btn:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .5s;
  }
  #h_nav .toggle_btn.active:before {
    opacity: 0;
  }
  #h_nav .toggle_btn.active:after {
    transform: translateY(-50%) rotate(180deg);
  }  
  /* サービス */
  #h_nav .service_navigation {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid #eee;
  }
  #h_nav .service_nav {}
  #h_nav .service_list {
    width: 100%;
    box-sizing: border-box;
  }
  #h_nav .service_list:nth-child(n+2) {
    border-top: 1px dotted #eee;
  }  
  #h_nav .service_link {
    position: relative;
    display: block;
    padding: .8em;
    padding-right: 2em;
    box-sizing: border-box;
  }     
  #h_nav .service_link:after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-right: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    transform: rotate(45deg);
  }  
  /* エリア */
  #h_nav .area_title {
    position: relative;
    margin-bottom: .6em;
    padding-left: 1em;
    font-weight: var(--text-weight-bold);
  }
  #h_nav .area_title:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: .5em;
    height: .5em;
    margin-top: -0.2em;
    background: var(--main-color);
  }
  #h_nav .area_navigation {
    padding: 1.5rem;
    border-top: 1px solid #eee;    
  }
  #h_nav .area_box:nth-child(n+2) {
    margin-top: 1.5rem;
  }  
  #h_nav .area_nav {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .area_list {
    width: calc((100% / 4) - 6px);
    margin-left: 8px;
  }
  #h_nav .area_list:nth-child(4n+1) {
    margin-left: 0;
  }
  #h_nav .area_list:nth-child(n+5) {
    margin-top: 8px;
  }
  #h_nav .area_link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: var(--text-weight-bold);
    line-height: 2.4;
    border-radius: 4px;
    box-sizing: border-box;
    background: var(--bg-high-color);
  }
  /* モーダル */
  #h_nav_modal {
    background: rgba(0,0,0,.15);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    position: fixed;
    top: 0;
    z-index: 999;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  #h_nav_modal.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }  
  /* フローティングボタン */
  
  #sp_fix_btn_cover {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 100;
  }  
  #sp_fix_btn_cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem;
    background: var(--main-color);
    box-sizing: border-box;
  }
  #fix_btn_title {
    margin-top: -1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
    text-shadow:
      .2em .2em .2em var(--main-color), -.2em -.2em .2em var(--main-color), -.2em .2em .2em var(--main-color), .2em -.2em .2em var(--main-color), .2em 0 .2em var(--main-color), -.2em  0 .2em var(--main-color), 0 .2em .2em var(--main-color), 0 -.2em .2em var(--main-color),
      .2em .2em .2em var(--main-color), -.2em -.2em .2em var(--main-color), -.2em .2em .2em var(--main-color), .2em -.2em .2em var(--main-color), .2em 0 .2em var(--main-color), -.2em  0 .2em var(--main-color), 0 .2em .2em var(--main-color), 0 -.2em .2em var(--main-color),
      .2em .2em .2em var(--main-color), -.2em -.2em .2em var(--main-color), -.2em .2em .2em var(--main-color), .2em -.2em .2em var(--main-color), .2em 0 .2em var(--main-color), -.2em  0 .2em var(--main-color), 0 .2em .2em var(--main-color), 0 -.2em .2em var(--main-color),
      .2em .2em .2em var(--main-color), -.2em -.2em .2em var(--main-color), -.2em .2em .2em var(--main-color), .2em -.2em .2em var(--main-color), .2em 0 .2em var(--main-color), -.2em  0 .2em var(--main-color), 0 .2em .2em var(--main-color), 0 -.2em .2em var(--main-color),
      .2em .2em .2em var(--main-color), -.2em -.2em .2em var(--main-color), -.2em .2em .2em var(--main-color), .2em -.2em .2em var(--main-color), .2em 0 .2em var(--main-color), -.2em  0 .2em var(--main-color), 0 .2em .2em var(--main-color), 0 -.2em .2em var(--main-color)      
      ;
  }
  #fix_btn_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
  }
  #fix_btn_list .list {
    width: calc(50% - 2px);
  }
  #fix_btn_list .list a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: var(--text-weight-bold);
    text-orientation: upright;
    border-radius: 4px;
  }
  #fix_btn_list .list a.line {
    background: #00b900;
  }
  #fix_btn_list .list a.line:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1rem;
    content: "";
    background: url(/wp-content/uploads/images/icon_line.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  #fix_btn_list .list a.trial {
    background: #f90;
  }
  #fix_btn_list .list a.trial:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1rem;
    content: "";
    background: url(/wp-content/uploads/images/icon_mail.webp?20260303) center center no-repeat;
    background-size: contain;
  }  
  /* トップに戻る */
  #page_top {}  
  #page_top a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #404040;
  }
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 9px;
    height: 1px;
    margin-top: -4px;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 9px;
    height: 1px;
    margin-top: -4px;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }   
}
@media screen and (min-width:1025px) {
  #header {
    position: relative;
    width: 100%;
  }
  /* ヘッダー */
  #h_cover {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    z-index: 1002;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #h_cover.active {
    background: var(--main-color);
  }  
  /* ロゴ */
  #h_logo a {
    display: block;
    padding: 2rem;
  }
  #h_logo a img {
    display: block;
    width: auto;
    height: 6rem;
  }
  /* PC用 */
  #pc_nav ul {
    height: 10rem;
    padding-right: 10rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #pc_nav ul li {
    margin-right: 2em;
  }
  #pc_nav ul li a {
    color: #fff;
    font-weight: var(--text-weight-bold);
  }
  
  
  /* ハンバーガーメニュー */
  #h_toggle_btn {
    position: fixed;
    top: 0;
    right: 0;
  }
  #h_toggle_btn .btn {
    position: relative;
    width: 10rem;
    height: 10rem;
    cursor: pointer;
  }
  #h_toggle_btn .btn span {
    position: absolute;
    left: 30px;
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #h_toggle_btn .btn span:nth-child(1) {
    top: 38px;
  }
  #h_toggle_btn .btn span:nth-child(2) {
    top: 50px;
  }
  #h_toggle_btn .btn span:nth-child(3) {
    top: 62px;
  }
  #h_toggle_btn.open span:nth-child(1) {
    top: 50px;
    -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: 50px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }  
  /* メニュー */  
  #h_nav {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: calc(100% - 7rem);
    max-width: 600px;
    height: 100%;
    overflow: hidden;
    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 .5s linear;
    -moz-transition: all .5s linear;
    transition: all .5s linear;
    z-index: 1001;
    background: #fff;    
  }
  #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_cover {
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
  }
  /* 大メニュー */
  #h_nav .first_nav {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .first_list:nth-child(n+2) {
    border-top: 1px solid #eee;
  }  
  #h_nav .first_link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2em;
    padding-right: 2em;
    height: 6rem;
    box-sizing: border-box;
  }
  #h_nav .first_link:after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-right: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    transform: rotate(45deg);
  }
  /* 開閉ボタン */
  #h_nav .toggle_box {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .toggle_box .first_link {
    width: calc(100% - 6rem);
  }
  #h_nav .toggle_btn {
    position: relative;
    width: 6rem;
    border-left: 1px solid #eee;
    box-sizing: border-box;
  }
  #h_nav .toggle_btn:before,
  #h_nav .toggle_btn:after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 1px;
    background: var(--text-color);
    position: absolute;
    right: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .5s;
  }
  #h_nav .toggle_btn:after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .5s;
  }
  #h_nav .toggle_btn.active:before {
    opacity: 0;
  }
  #h_nav .toggle_btn.active:after {
    transform: translateY(-50%) rotate(180deg);
  }  
  /* サービス */
  #h_nav .service_navigation {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid #eee;
  }
  #h_nav .service_nav {}
  #h_nav .service_list {
    width: 100%;
    box-sizing: border-box;
  }
  #h_nav .service_list:nth-child(n+2) {
    border-top: 1px dotted #eee;
  }  
  #h_nav .service_link {
    position: relative;
    display: block;
    padding: .8em;
    padding-right: 2em;
    box-sizing: border-box;
  }     
  #h_nav .service_link:after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-right: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    transform: rotate(45deg);
  }  
  /* エリア */
  #h_nav .area_title {
    position: relative;
    margin-bottom: .6em;
    padding-left: 1em;
    font-weight: var(--text-weight-bold);
  }
  #h_nav .area_title:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: .5em;
    height: .5em;
    margin-top: -0.2em;
    background: var(--main-color);
  }
  #h_nav .area_navigation {
    padding: 1.5rem;
    border-top: 1px solid #eee;    
  }
  #h_nav .area_box:nth-child(n+2) {
    margin-top: 1.5rem;
  }  
  #h_nav .area_nav {
    display: flex;
    flex-wrap: wrap;
  }
  #h_nav .area_list {
    width: calc((100% / 4) - 6px);
    margin-left: 8px;
  }
  #h_nav .area_list:nth-child(4n+1) {
    margin-left: 0;
  }
  #h_nav .area_list:nth-child(n+5) {
    margin-top: 8px;
  }
  #h_nav .area_link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: var(--text-weight-bold);
    line-height: 2.4;
    border-radius: 4px;
    box-sizing: border-box;
    background: var(--bg-high-color);
  }
  /* モーダル */
  #h_nav_modal {
    background: rgba(0,0,0,.15);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    position: fixed;
    top: 0;
    z-index: 999;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  #h_nav_modal.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }  
  /* フローティングボタン */
  #sp_fix_btn_cover {
    z-index: 1000;
  }
  #fix_btn_title {
    display: none;
  }  
  #fix_btn_list {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 1000;
  }
  #fix_btn_list .list {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;    
  }
  #fix_btn_list .list a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 7rem;
    height: 240px;
    padding: 1rem 0;
    color: #fff;
    line-height: 1.2;
    font-weight: var(--text-weight-bold);
    text-orientation: upright;
    box-sizing: border-box;
  }
  #fix_btn_list .list a.line {
    background: #00b900;
  }
  #fix_btn_list .list a.line:before {
    display: block;
    width: 7rem;
    height: 7rem;
    content: "";
    background: url(/wp-content/uploads/images/icon_line.webp?20260303) center center no-repeat;
    background-size: 50%;
  }
  #fix_btn_list .list a.trial {
    background: #f90;
  }
  #fix_btn_list .list a.trial:before {
    display: block;
    width: 7rem;
    height: 7rem;
    content: "";
    background: url(/wp-content/uploads/images/icon_mail.webp?20260303) center center no-repeat;
    background-size: 50%;
  }    
  
  /* トップに戻る */
  #page_top {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1001;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 6rem;
    height: 6rem;
    background: #404040;
  }
  #page_top a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 9px;
    height: 1px;
    margin-top: -4px;
    transform-origin: top left;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff;
  }
  #page_top a:after {
    position: absolute;
    top: 50%;
    right: 50%;
    display: block;
    content: "";
    width: 9px;
    height: 1px;
    margin-top: -4px;
    transform-origin: top right;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff;
  }   
}
/******************************************************
フッター
******************************************************/
@media screen and (max-width:1024px) {
  #footer {
    margin-bottom: 6rem;
    background: var(--text-color);
  }
  #footer,
  #footer a {
    color: #fff;
  }
  #f_inner {
    padding: 5rem 1.5rem;
  }
  #footer .f_flex_box {
    display: flex;
    flex-direction: column;
  }
  #footer .f_flex_box .f_sns {
    order: 1;
    margin-bottom: 5rem;
  }
  #footer .f_flex_box .f_contact {
    order: 2;
    margin-bottom: 5rem;
  }  
  #footer .f_flex_box .f_nav {
    order: 3;
    margin-bottom: 5rem;
  }
  #footer .f_flex_box .f_information {
    order: 4;
  }
  #footer .f_title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  #footer .f_sns_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #footer .f_sns_list .list:nth-child(n+2) {
    margin-left: 1.5rem;
  }
  #footer .f_sns_list .list img {
    width: auto;
    height: 4rem;
  }
  #footer .f_contact_list .list {
    margin-top: 1.5rem;
  }
  #footer .f_contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 7rem;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
    border: 1px solid #fff;
    box-sizing: border-box;
  }
  #footer .f_nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer .f_nav_list .list {
    width: 50%;
  }
  #footer .f_nav_list .list li {
    position: relative;
    padding-left: 1em;
  }
  #footer .f_nav_list .list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #footer #f_logo {
    margin-bottom: 3rem;
    text-align: center;
  }
  #footer #f_logo img {
    width: auto;
    height: 6rem;
  }
  #footer #f_address {
    text-align: center;
  }
  #copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6rem;
    color: #fff;
    text-align: center;
    background: var(--main-color);
  }
}
@media screen and (min-width:1025px) {
  #footer {
    background: var(--text-color);
  }
  #footer,
  #footer a {
    font-size: 1.6rem;
    color: #fff;
  }
  #f_inner {
    position: relative;
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10rem 5rem;
    box-sizing: border-box;
  }
  #footer .f_flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }   
  #footer .f_flex_box .box:nth-child(n+2) {
    margin-left: 5rem;
    padding-left: 5rem;
    border-left: 1px solid #fff;
  }
  #footer .f_title {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
  }
  #footer .f_sns_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #footer .f_sns_list .list:nth-child(n+2) {
    margin-left: 1.5rem;
  }
  #footer .f_sns_list .list img {
    width: auto;
    height: 3rem;
  }
  #footer .f_contact_list .list {
    margin-top: 1.5rem;
  }
  #footer .f_contact_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 300px;
    height: 6rem;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
    border: 1px solid #fff;
    box-sizing: border-box;
  }
  #footer .f_nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer .f_nav_list .list:nth-child(n+2) {
    margin-left: 2em;
  }
  #footer .f_nav_list .list li {
    position: relative;
    padding-left: 1em;
  }
  #footer .f_nav_list .list li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #footer #f_logo {
    margin-bottom: 3rem;
  }
  #footer #f_logo img {
    width: auto;
    height: 8rem;
  }  
  #copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10rem;
    color: #fff;
    text-align: center;
    background: var(--main-color);
  }
}
/******************************************************
トップページ　共通パーツ
******************************************************/
@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;
    font-weight: var(--text-weight-black);
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 3rem;    
  }
  .main_title .jap {
    font-size: 1.4rem;
  }
  .main_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main_btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    text-align: center;
    border: 1px solid var(--text-color);
    box-sizing: border-box;
  }
  .main_btn a:before {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    background: var(--text-color);
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  .main_btn a:after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    content: "";
    width: 16px;
    height: 1px;
    background: var(--text-color);
  }
}
@media screen and (min-width:1025px) {
  .main_title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    text-align: center;
    font-weight: var(--text-weight-black);
  }
  .main_title .eng {
    color: var(--main-color);
    font-size: 7.2rem;    
  }
  .main_title .jap {
    font-size: 2rem;
  }
  .main_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main_btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 480px;
    height: 100px;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    border: 1px solid var(--text-color);
    box-sizing: border-box;
  }
  .main_btn a:before {
    position: absolute;
    top: 50%;
    right: 3rem;
    display: block;
    content: "";
    width: 14px;
    height: 1px;
    background: var(--text-color);
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  .main_btn a:after {
    position: absolute;
    top: 50%;
    right: 3rem;
    display: block;
    content: "";
    width: 28px;
    height: 1px;
    background: var(--text-color);
  }
}
/******************************************************
トップページ　メインビジュアル
******************************************************/
@media screen and (max-width:1024px) {
  #top_main {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
  }
  #top_main:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/images/main_logo.webp) center center no-repeat;
    background-size: auto 100%;
    z-index: 0;
    opacity: .2;
  }    
  #top_main .image {
    width: 65vw;
    height: calc(32.5vh - .3rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;  
  }
  #top_main .main_visual_top .image {
    margin: 0 .3rem .3rem;  
  }
  #top_main .main_visual_bottom .image {
    margin: .3rem .3rem 0;
  }
  #catch_area {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 65vh;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
    background-color: rgba(0,0,0,.05);
    background-image: radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%), radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
  }
  #catch_copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    line-height: 1.5;
    font-style: italic;
    font-weight: var(--text-weight-black);
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.65);
    background-image: radial-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 85%);    
  }
  #catch_copy span.large {
    font-size: 6.8vw;
  }
  #catch_copy span.small {
    font-size: 5.1vw;
  }
  
  #top_main .trial {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
  }
  #top_main .trial a {
    position: relative;
    display: flex;
    flex-diretion: column;
    justify-content: center;
    align-items: center;
    height: 5rem;
    padding: 0 3em;
    color: #fff;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: var(--main-color);
  }  
  #top_main .trial a:after {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';  
  }
}
@media screen and (min-width:1025px) {
  #top_main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  #top_main:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/images/main_logo.webp) center left no-repeat;
    background-size: auto 100%;
    z-index: 0;
    opacity: .2;
  }  
  #top_main .image {
    width: 35vw;
    height: calc(50vh - .5rem);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }  
  #top_main .main_visual_top .image {
    margin: 0 .5rem .5rem;
  }
  #top_main .main_visual_bottom .image {
    margin: .5rem .5rem 0;
  }
  #catch_area {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
    background-color: rgba(0,0,0,.05);
    background-image: radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%), radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
  }
  #catch_copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5vw;
    line-height: 1.35;
    font-style: italic;
    font-weight: var(--text-weight-black);
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.65);
    background-image: radial-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 85%);    
  }
  #catch_copy span.large {
    font-size: 4.8vw;
  }
  #catch_copy span.small {
    font-size: 3.6vw;
  }
  #main_logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  #main_logo img {
    width: 20vw;
    height: auto;
  }

}
/******************************************************
トップページ　ABOUT US
******************************************************/
@media screen and (max-width:1024px) {
  #top_about {
    padding: 5rem 0;
  }
  #top_about .about_box .comment {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_about .about_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_about .about_box .comment p.bg_area {
    margin: 1.2em 0;
    padding: 1.2em 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: var(--text-weight-black);
    line-height: 1.5;
    background: url(/wp-content/uploads/images/bg_about.webp?20260303) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_box .comment p span {
    font-weight: var(--text-weight-black);
  }
  #top_about .about_list {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    margin-bottom: 3rem;
    background: var(--bg-high-color);
  }
  #top_about .about_list .list {
    position: relative;
    padding: 1.2em;
    padding-left: 3.6em;
    line-height: 1.35;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
    background: var(--white);
    box-sizing: border-box;
  }
  #top_about .about_list .list:nth-child(n+2) {
    margin-top: 5px;
  }
  #top_about .about_list .list:before {
    position: absolute;
    top: 50%;
    left: 1.2em;
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-top: -.8em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width:1025px) {
  #top_about {
    padding: 10rem 0;
  }
  #top_about .about_box .comment {
    margin-bottom: 5rem;
    font-size: 2rem;
    text-align: center;
  }
  #top_about .about_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_about .about_box .comment p.bg_area {
    width: 800px;
    margin: 1.2em auto;
    padding: 1.2em;
    color: #fff;
    font-weight: var(--text-weight-black);
    line-height: 1.5;
    background: url(/wp-content/uploads/images/bg_about.webp?20260303) top center no-repeat;
    background-size: cover;
    box-sizing: border-box;
    box-shadow: -1rem 1rem 0 0 rgba(0,0,0,.1);
  }
  #top_about .about_box .comment p span {
    font-weight: var(--text-weight-black);
  }
  #top_about .about_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  #top_about .about_list .list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% / 3) - 10px);
    height: 8rem;
    font-size: 2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: var(--bg-high-color);
    box-sizing: border-box;
  }  
  #top_about .about_list .list span {
    position: relative;
  }  
  #top_about .about_list .list:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin-right: .8em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }
}
/******************************************************
トップページ　無料体験
******************************************************/
@media screen and (max-width:1024px) {
  .top_contact {
    padding: 3rem 0;
    background: var(--main-color) url(/wp-content/uploads/images/bg_contact.webp?20260303) top center no-repeat;
    background-size: cover;
  }
  .top_contact .contact_box {
    text-align: center;
  }
  .top_contact h2 {
    margin-bottom: 1em;
    color: #fff;
    font-size: 2.4rem;
    font-weight: var(--text-weight-black);
  }
  .top_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top_contact .contact_btn .btn {
    width: calc((100% / 2) - 3px);
  }  
  .top_contact .contact_btn .btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: var(--text-weight-bold);
    text-orientation: upright;
    border-radius: 4px;
  }
  .top_contact .contact_btn .btn a:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }    
  .top_contact .contact_btn .btn a.line {
    background: #00b900;
  }
  .top_contact .contact_btn .btn a.line:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1em;
    content: "";
    background: url(/wp-content/uploads/images/icon_line.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  .top_contact .contact_btn .btn a.trial {
    background: #f90;
  }
  .top_contact .contact_btn .btn a.trial:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1em;
    content: "";
    background: url(/wp-content/uploads/images/icon_mail.webp?20260303) center center no-repeat;
    background-size: contain;
  }    
}
@media screen and (min-width:1025px) {
  .top_contact {
    padding: 10rem 0;
    background: var(--main-color) url(/wp-content/uploads/images/bg_contact_pc.webp?20260303) top center no-repeat;
    background-size: cover;
  }
  .top_contact .contact_box {
    text-align: center;
  }
  .top_contact h2 {
    margin-bottom: 1em;
    color: #fff;
    font-size: 4.8rem;
    font-weight: var(--text-weight-black);
  }
  .top_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top_contact .contact_btn .btn {
    width: calc((100% / 2) - 15px);
  }  
  .top_contact .contact_btn .btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 160px;
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: var(--text-weight-bold);
    text-orientation: upright;
    border-radius: 4px;
  }
  .top_contact .contact_btn .btn a:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }  
  .top_contact .contact_btn .btn a.line {
    background: #00b900;
  }
  .top_contact .contact_btn .btn a.line:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1em;
    content: "";
    background: url(/wp-content/uploads/images/icon_line.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  .top_contact .contact_btn .btn a.trial {
    background: #f90;
  }
  .top_contact .contact_btn .btn a.trial:before {
    display: block;
    width: 2em;
    height: 2em;
    margin-right: 1em;
    content: "";
    background: url(/wp-content/uploads/images/icon_mail.webp?20260303) center center no-repeat;
    background-size: contain;
  }     
  
  
  
  
  
  
  
  
  /*
  .top_contact .contact_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top_contact .contact_btn .btn {
    width: calc((100% / 2) - 15px);
  }
  .top_contact .contact_btn .btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: #fff;
    font-weight: var(--text-weight-black);
    font-size: 3rem;
  }
  .top_contact .contact_btn .btn a:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
  .top_contact .contact_btn .btn a span {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  .top_contact .contact_btn .btn a span:before {
    display: block;
    content: "";
    width: 2em;
    height: 2em;
    margin-right: .8em;
  }  
  .top_contact .contact_btn .btn a.line {
    background: #00b900;
  }
  .top_contact .contact_btn .btn a.line span:before {
    background: url(/wp-content/uploads/images/icon_line.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  .top_contact .contact_btn .btn a.mail {
    background: #f90;
  }
  .top_contact .contact_btn .btn a.mail span:before {
    background: url(/wp-content/uploads/images/icon_mail.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  */
}
/******************************************************
トップページ　REASON
******************************************************/
@media screen and (max-width:1024px) {
  #top_reason {
    padding: 5rem 0;
    background: #fff;
  }
  #top_reason .reason_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #top_reason .reason_list .list .image {
    margin-bottom: 1rem;
  }
  #top_reason .reason_list .list .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
  }
  #top_reason .reason_list .list .title .number {
    width: 1.2em;
    color: var(--main-color);
    font-size: 5rem;
    font-weight: var(--text-weight-black);
    line-height: 1;
  }
  #top_reason .reason_list .list .title .text {
    margin-top: .5em;
    font-size: 1.5rem;
    font-weight: var(--text-weight-black);
    line-height: 1.5;
  }
}
@media screen and (min-width:1025px) {
  #top_reason {
    padding: 10rem 5rem;
    background: var(--bg-high-color);
  }
  #top_reason .reason_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_reason .reason_list .list {
    width: 50%;
    box-sizing: border-box;
    padding-bottom: 5rem;
  }
  #top_reason .reason_list .list:nth-child(odd) {
    padding-right: 5rem;
    border-right: 1px solid var(--bg-high-color);
  }
  #top_reason .reason_list .list:nth-child(even) {
    padding-left: 5rem;
    border-left: 1px solid var(--border-color);
  }
  #top_reason .reason_list .list:nth-child(n+3) {
    padding-bottom: 0;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
  }

  #top_reason .reason_list .list .image {
    margin-bottom: 1rem;
  }
  #top_reason .reason_list .list .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
  }
  #top_reason .reason_list .list .title .number {
    width: 1.2em;
    color: var(--main-color);
    font-size: 8rem;
    font-weight: var(--text-weight-black);
    line-height: 1;
  }
  #top_reason .reason_list .list .title .text {
    margin-top: .5em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-black);
    line-height: 1.5;
  }
}
/******************************************************
トップページ　TARGET
******************************************************/
@media screen and (max-width:1024px) {
  #top_target {
    padding-bottom: 5rem;
  }
  #top_target h2 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    text-align: center;
    font-weight: var(--text-weight-black);
  }
  #top_target h2 span {
    color: var(--main-color);
  }
  #top_target .target_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_target .target_btn .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((100% / 2) - 2px);
    height: 50px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_target .target_btn .btn.child {
    background: #f90;
  }
  #top_target .target_btn .btn.parent {
    background: #9c4fd7;
  }
  #top_target .target_contents .content {
    display: none;
    padding: 1.5rem;
    background: #fff;
  }
  #top_target .target_contents .content.active {
    display: block;
  }
  #top_target .target_contents .content.child {
    border: 5px solid #f90;
  }
  #top_target .target_contents .content.parent {
    border: 5px solid #9c4fd7;
  }
  #top_target .target_list .list {
    position: relative;
    padding: .5em 0;
    padding-left: 2em;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  #top_target .content .target_list .list:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.5em;
    height: 1.5em;
    margin-top: -.75em;
  }  
  #top_target .content.child .target_list .list:before {
    background: url(/wp-content/uploads/images/icon_check_orange.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  #top_target .content.parent .target_list .list:before {
    background: url(/wp-content/uploads/images/icon_check_purple.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  #top_target .target_list .list:nth-child(n+2) {
    border-top: 1px solid var(--border-color);
  }
}
@media screen and (min-width:1025px) {
  #top_target {
    padding-bottom: 10rem;
    background: var(--bg-high-color);
  }
  #top_target h2 {
    margin-bottom: 5rem;
    font-size: 4.8rem;
    text-align: center;
    font-weight: var(--text-weight-black);
  }
  #top_target h2 span {
    color: var(--main-color);
  }
  #top_target .target_cover {
    margin: 0 auto;
  }
  #top_target .target_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #top_target .target_btn .btn {
    width: calc(50% - 1.5rem);
  }
  #top_target .target_btn .btn span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    border-radius: 30px;
  }
  #top_target .target_btn .btn.child span {
    background: #f90;
  }
  #top_target .target_btn .btn.parent span {
    background: #9c4fd7;
  }
  #top_target .target_contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #top_target .target_contents .content {
    width: calc(50% - 1.5rem);
    padding: 3rem;
    background: #fff;
    box-sizing: border-box;
  }
  #top_target .target_contents .content.active {
    display: block;
  }

  #top_target .target_list .list {
    position: relative;
    padding: .5em 0;
    padding-left: 2em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #top_target .content .target_list .list:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.5em;
    height: 1.5em;
    margin-top: -.75em;
  }  
  #top_target .content.child .target_list .list:before {
    background: url(/wp-content/uploads/images/icon_check_orange.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  #top_target .content.parent .target_list .list:before {
    background: url(/wp-content/uploads/images/icon_check_purple.webp?20260303) center center no-repeat;
    background-size: contain;
  }
  #top_target .target_list .list:nth-child(n+2) {
    border-top: 1px solid var(--border-color);
  }
}
/******************************************************
トップページ　CONCEPT
******************************************************/
@media screen and (max-width:1024px) {
  #top_concept {
    padding: 5rem 0;
    color: #fff;
    background: #505050;
  }
  #top_concept .main_title,
  #top_concept .main_title .eng {
    color: #fff;
  }
  #top_concept .concept_list .image img {
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }
  #top_concept .concept_list .text {
    padding: 3rem 1.5rem;
  }
  #top_concept .concept_list .list:last-child .text {
    padding-bottom: 0;
  }
  #top_concept .concept_list .number {
    font-size: 3rem;
    text-align: center;
    font-family: var(--alphabet);
  }
  #top_concept .concept_list .title {
    margin-bottom: 1em;
    color: #ff0;
    font-size: 1.5rem;
    font-weight: var(--text-weight-black);
    text-align: center;
  }
}
@media screen and (min-width:1025px) {
  #top_concept {
    padding: 10rem 0;
    color: #fff;
    background: #505050;
  }
  #top_concept .main_title,
  #top_concept .main_title .eng {
    color: #fff;
  }
  #top_concept .concept_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 8rem;
  }
  #top_concept .concept_list .list:nth-child(odd) {
    flex-direction: row-reverse;
  }
  #top_concept .concept_list .list:nth-child(n+2) {
    margin-top: 8rem;
  }
  #top_concept .concept_list .image {
    width: calc(100% - 640px);
    margin-bottom: 8rem;
  }
  #top_concept .concept_list .image img {
    display: none;
  }
  #top_concept .concept_list .list:nth-child(odd) .image {
    margin-right: 8rem;
    margin-left: -8rem;
  }
  #top_concept .concept_list .list:nth-child(even) .image {
    margin-right: -8rem;
    margin-left: 8rem;
  }
  #top_concept .concept_list .list:nth-child(1) .image {
    background: url(/wp-content/uploads/images/top_concept_img001.webp?20260303) center center no-repeat;
    background-size: cover;
  }
  #top_concept .concept_list .list:nth-child(2) .image {
    background: url(/wp-content/uploads/images/top_concept_img002.webp?20260303) center center no-repeat;
    background-size: cover;
  }
  #top_concept .concept_list .list:nth-child(3) .image {
    background: url(/wp-content/uploads/images/top_concept_img003.webp?20260303) center center no-repeat;
    background-size: cover;
  }
  #top_concept .concept_list .text {
    position: relative;
    width: 640px;
    margin-top: 8rem;
    padding: 8rem;
    box-sizing: border-box;
    background: #606060;
  }
  #top_concept .concept_list .number {
    position: absolute;
    top: -.5em;
    left: 0;
    width: 100%;
    font-size: 6rem;
    line-height: 1;
    text-align: center;
    font-family: var(--alphabet);
  }
  #top_concept .concept_list .title {
    margin-bottom: 1em;
    color: #ff0;
    font-size: 2.4rem;
    font-weight: var(--text-weight-black);
    text-align: center;
  }
  #top_concept .concept_list .text .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_concept .concept_list .text .comment span {
    color: #ff0;
    font-size: 2rem;
  }
}
/******************************************************
トップページ　VOICE
******************************************************/
@media screen and (max-width:1024px) {
  #top_voice {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_voice .voice_list {
    display: flex;
    margin-bottom: 3rem;
  }
  #top_voice .voice_list .list {
    width: calc(100vw - 3rem)!important;
    margin: 0 1.5rem;
    padding: 1.5rem;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 12px 12px 0 rgba(0,0,0,.1);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }  
  #top_voice .voice_list .list.slick-active {
    box-shadow: none;
  }
  /* タイトルエリア */
  #top_voice .popup .heading {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
  }  
  #top_voice .popup .heading .image {
    width: 90px;
    margin-bottom: 1em;
  }  
  #top_voice .popup .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_voice .popup .heading .title {
    margin-bottom: 1.2em;
    text-align: center;
  }
  #top_voice .popup .heading .name span {
    margin-right: .5em;
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }  
  #top_voice .popup .heading .name span.boy {
    color: var(--sub-color);
  }
  #top_voice .popup .heading .name span.girl {
    color: #ea43b5;
  }
  #top_voice .popup .heading .message {
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  /* FAQ */
  #top_voice .list .popup .faq {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
  #top_voice .list .popup .faq:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;    
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1));
  }  
  #top_voice .popup .faq dl:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_voice .popup .faq dt {
    position: relative;
    margin-bottom: .5em;
    padding-left: 1.5em;
    font-weight: var(--text-weight-bold);
  }
  #top_voice .popup .faq dt:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q";
    color: var(--main-color);
  }  
  #top_voice .popup .faq dd {
    padding: 1.2em;
    font-size: 13px!important;
    border-radius: .4em;
    background: var(--bg-high-color);
  }
  /* もっと見る */
  #top_voice .voice_list .list .more {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 3rem;
    margin-top: 1.5rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    cursor: pointer;
  }
  #top_voice .voice_list .list .more span:after {
    margin-left: 1em;
    content: "\f105";
    font-family: "FontAwesome";
  }  
  /* ポップアップ */
  #top_voice #voice_modal {
    background: rgba(0,0,0,.15);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    position: fixed;
    top: 0;
    z-index: 1999;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  #top_voice #voice_modal.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }
  #top_voice #popup_clone_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 1.5rem;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2000;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);    
  }  
  #top_voice #popup_clone_cover.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }
  #top_voice #popup_clone {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: calc(100vh - 3rem);
    padding: 1.5rem;
    border-radius: .6rem;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2001;
  }
  #top_voice #popup_clone #popup_scroll {
    height: calc(100vh - 3rem - 6rem);
    overflow-y: auto;    
  }    
  #top_voice #popup_close {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
  }
  #top_voice #popup_close:before,
  #top_voice #popup_close:after {
    position: absolute;
    display: block;
    content: "";
    top: 8px;
    left: 0;
    width: 16px;
    height: 1px;
    background: var(--text-color);   
    transform-origin: center center;
  }
  #top_voice #popup_close:before {
    transform: rotate(45deg);     
  }
  #top_voice #popup_close:after {
    transform: rotate(-45deg);  
  }
  /* スライダー矢印 */
  #top_voice .voice_list .arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--border-color);
  }
  #top_voice .voice_list .prev {
    left: 0;
    background: #fff;
    background-size: contain;    
  }  
  #top_voice .voice_list .next {
    right: 0;
    background: #fff;
    background-size: contain;    
  }   
  #top_voice .voice_list .prev:before,
  #top_voice .voice_list .next:before {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    width: 7px;
    height: 1px;
    background: var(--text-color);    
  }  
  #top_voice .voice_list .prev:before {
    left: 50%;
    margin-left: -7px;
    transform: rotate(-45deg);
    transform-origin: bottom left;
  }
  #top_voice .voice_list .next:before {
    right: 50%;
    margin-right: -7px;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #top_voice .voice_list .prev:after,
  #top_voice .voice_list .next:after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";    
    width: 14px;
    height: 1px;    
    background: var(--text-color);
  }
  #top_voice .voice_list .prev:after {
    left: 50%;
    margin-left: -7px;
  }   
  #top_voice .voice_list .next:after {
    right: 50%;
    margin-right: -7px;
  }    
}
@media screen and (min-width:1025px) {
  #top_voice {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_voice .voice_list {
    display: flex;
    margin-bottom: 5rem;
  }
  #top_voice .voice_list .list {
    width: 800px;
    max-width: 100%;
    margin: 0 1.5rem;
    padding: 5rem;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 12px 12px 0 rgba(0,0,0,.1);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }  
  #top_voice .voice_list .list.slick-active {
    box-shadow: none;
  }
  /* タイトルエリア */
  #top_voice .popup .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
  }  
  #top_voice .popup .heading .image {
    width: 120px;
    margin-right: 30px;
  }  
  #top_voice .popup .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_voice .popup .heading .title {
    width: calc(100% - 150px);
  }
  #top_voice .popup .heading .name span {
    margin-right: .5em;
    color: var(--main-color);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }  
  #top_voice .popup .heading .name span.boy {
    color: var(--sub-color);
  }
  #top_voice .popup .heading .name span.girl {
    color: #ea43b5;
  }
  #top_voice .popup .heading .message {
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  /* FAQ */
  #top_voice .list .popup .faq {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    object-fit: cover;
  }
  #top_voice .list .popup .faq:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;    
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1));
  }  
  #top_voice .popup .faq dl:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_voice .popup .faq dt {
    position: relative;
    margin-bottom: .5em;
    padding-left: 1.5em;
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
  }
  #top_voice .popup .faq dt:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q";
    color: var(--main-color);
  }  
  #top_voice .popup .faq dd {
    padding: 1.2em;
    border-radius: .4em;
    background: var(--bg-high-color);
  }
  /* もっと見る */
  #top_voice .voice_list .list .more {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 3rem;
    margin-top: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    cursor: pointer;
  }
  #top_voice .voice_list .list .more span:after {
    margin-left: 1em;
    content: "\f105";
    font-family: "FontAwesome";
  }  
  /* ポップアップ */
  #top_voice #voice_modal {
    background: rgba(0,0,0,.15);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .1;
    position: fixed;
    top: 0;
    z-index: 1999;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  #top_voice #voice_modal.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }
  #top_voice #popup_clone_cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 8rem;
    box-sizing: border-box;
    opacity: 0;
    z-index: 2000;
    visibility: hidden;
    webkit-transition: visibility 0 linear .5s, opacity .4s;
    -moz-transition: visibility 0 linear .5s, opacity .4s;
    transition: visibility 0 linear .5s, opacity .4s;
    webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);    
  }  
  #top_voice #popup_clone_cover.on {
    opacity: 1;
    webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    visibility: visible;
  }  
  #top_voice #popup_clone {
    position: relative;
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    height: calc(100vh - 16rem);
    padding: 5rem;
    border-radius: 1rem;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2000;
  }
  #top_voice #popup_clone #popup_scroll {
    height: calc(100vh - 16rem - 10rem);
    overflow-y: auto;    
  }
  #top_voice #popup_close {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
  }
  #top_voice #popup_close:before,
  #top_voice #popup_close:after {
    position: absolute;
    display: block;
    content: "";
    top: 18px;
    left: 12px;
    width: 24px;
    height: 2px;
    background: var(--text-color);   
    transform-origin: center center;
  }
  #top_voice #popup_close:before {
    transform: rotate(45deg);     
  }
  #top_voice #popup_close:after {
    transform: rotate(-45deg);  
  }
  /* スライダー矢印 */
  #top_voice .voice_list .arrow {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--border-color);
  }
  #top_voice .voice_list .prev {
    left: 50%;
    margin-left: -445px;
    background: #fff;
    background-size: contain;    
  }  
  #top_voice .voice_list .next {
    right: 50%;
    margin-right: -445px;
    background: #fff;
    background-size: contain;    
  }   
  #top_voice .voice_list .prev:before,
  #top_voice .voice_list .next:before {
    position: absolute;
    top: 50%;
    display: block;
    content: "";
    width: 14px;
    height: 1px;
    background: var(--text-color);    
  }  
  #top_voice .voice_list .prev:before {
    left: 50%;
    margin-left: -14px;
    transform: rotate(-45deg);
    transform-origin: bottom left;
  }
  #top_voice .voice_list .next:before {
    right: 50%;
    margin-right: -14px;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #top_voice .voice_list .prev:after,
  #top_voice .voice_list .next:after {
    position: absolute;
    top: 50%;
    display: block;
    content: "";    
    width: 28px;
    height: 1px;    
    background: var(--text-color);
  }
  #top_voice .voice_list .prev:after {
    left: 50%;
    margin-left: -14px;
  }   
  #top_voice .voice_list .next:after {
    right: 50%;
    margin-right: -14px;
  }    
}
/******************************************************
トップページ　COACH
******************************************************/
@media screen and (max-width:1024px) {
  #top_coach {
    padding: 5rem 0;
    background-image:
      url(/wp-content/uploads/images/bg_coach_pc_top.webp?20260303),
      url(/wp-content/uploads/images/bg_coach_pc_bottom.webp?20260303);
    background-position:
      top right,
      bottom left;
    background-size:
      100% auto,
      100% auto;
    background-repeat:
      no-repeat,
      no-repeat;
    background-color: #fff;
  }
  #top_coach .coach_box {
    position: relative;
  }
  #top_coach .coach_box h2 {
    position: absolute;
    top: -.5em;
    left: .2em;
    color: #f90;
    font-size: 10vw;
    font-family: var(--alphabet);
    transform: rotate(-10deg);
    transform-origin: bottom left;
  }
  #top_coach .coach_box .image {
    padding: 0 4vw;
    margin-bottom: 3rem;
  }
  #top_coach .coach_box .image img {
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }    
  #top_coach .coach_box .comment {
    margin-bottom: 3rem;
    text-align: center;
  }
  #top_coach .coach_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_coach .coach_box .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #top_coach .coach_box .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    color: #fff;
    text-align: center;
    background: #0d9e7e;
    box-sizing: border-box;
  }
  #top_coach .coach_box .btn a:before {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #top_coach .coach_box .btn a:after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    content: "";
    width: 16px;
    height: 1px;
    background: #fff;
  }  
}
@media screen and (min-width:1025px) {
  #top_coach {
    position: relative;
    padding: 10rem 0;
    background-image:
      url(/wp-content/uploads/images/bg_coach_pc_top.webp?20260303),
      url(/wp-content/uploads/images/bg_coach_pc_bottom.webp?20260303);
    background-position:
      top right,
      bottom left;
    background-size:
      100% auto,
      100% auto;
    background-repeat:
      no-repeat,
      no-repeat;
    background-color: #fff;
  }
  #top_coach .coach_box h2 {
    position: absolute;
    top: .3em;
    left: .1em;
    color: #f90;
    font-size: 8vw;
    font-family: var(--alphabet);
    line-height: 1;
    transform: rotate(-10deg);
    transform-origin: bottom left;
  }
  #top_coach .coach_box .image {
    margin-bottom: 5rem;
    padding: 0 5rem;
    text-align: center;
  }
  #top_coach .coach_box .image img {
    width: 1200px;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }    
  #top_coach .coach_box .comment {
    margin-bottom: 5rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #top_coach .coach_box .comment p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_coach .coach_box .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #top_coach .coach_box .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 480px;
    height: 100px;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    background: #0d9e7e;
    box-sizing: border-box;
  }
  #top_coach .coach_box .btn a:before {
    position: absolute;
    top: 50%;
    right: 3rem;
    display: block;
    content: "";
    width: 14px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #top_coach .coach_box .btn a:after {
    position: absolute;
    top: 50%;
    right: 3rem;
    display: block;
    content: "";
    width: 28px;
    height: 1px;
    background: #fff;
  }  
}
/******************************************************
トップページ　FAQ
******************************************************/
@media screen and (max-width:1024px) {
  #top_faq {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_faq .faq_list {
    margin-bottom: 3rem;
  }
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_faq .faq_list dt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
  }
  #top_faq .faq_list dt:before {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    content: "Q";
    color: #fff;
    width: 5rem;
    height: 5rem;
    text-align: center;
    background: var(--main-color);
  }
  #top_faq .faq_list dt span {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 5rem);
    height: 5rem;
    padding-left: 1.2em;
    pading-right: 5rem;
    font-weight: var(--text-weight-bold);
    text-align: left;
    line-height: 1.5;
    box-sizing: border-box;
  }

  #top_faq .faq_list dt span:after {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    content: "\f107";
    font-family: "FontAwesome";
    text-align: center;
  }
  #top_faq .faq_list dt.active span:after {  
    content: "\f106";
  }
  
  #top_faq .faq_list dd {
    display: none;
    padding: 1.2em;
    background: #fff;
    border-top: 1px solid var(--border-color);
  }
}
@media screen and (min-width:1025px) {
  #top_faq {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_faq .faq_list {
    width: 960px;
    max-width: 100%;
    margin: 0 auto 5rem;
  }
  #top_faq .faq_list dl:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_faq .faq_list dt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
  }
  #top_faq .faq_list dt:before {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    content: "Q";
    color: #fff;
    width: 8rem;
    height: 8rem;
    text-align: center;
    background: var(--main-color);
  }
  #top_faq .faq_list dt span {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 8rem);
    height: 8rem;
    padding-left: 1.2em;
    pading-right: 8rem;
    font-weight: var(--text-weight-bold);
    text-align: left;
    line-height: 1.5;
    box-sizing: border-box;
  }
  #top_faq .faq_list dt span:after {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    content: "\f107";
    font-family: "FontAwesome";
    text-align: center;
  }
  #top_faq .faq_list dt.active span:after {  
    content: "\f106";
  }
  #top_faq .faq_list dd {
    display: none;
    padding: 1.2em;
    background: #fff;
    border-top: 1px solid var(--border-color);
  }
}
/******************************************************
トップページ　TOPICS
******************************************************/
@media screen and (max-width:1024px) {
  #top_topics {
    padding: 5rem 0;
  }
  #top_topics .topics_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  #top_topics .topics_list .list {
    width: calc((100% / 2) - 5px);
    margin-left: 10px;
  }
  #top_topics .topics_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_topics .topics_list .list:nth-child(n+3) {
    margin-top: 3rem;
  }
  #top_topics .topics_list .list .image {
    position: relative;
    margin-bottom: 1em;
  }
  #top_topics .topics_list .list .image img {
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: var(--bg-high-color);
  }
  #top_topics .topics_list .list .image span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 1em;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    background: var(--main-color);
  }
  #top_topics .topics_list .list .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
}
@media screen and (min-width:1025px) {
  #top_topics {
    padding: 10rem 0;
  }
  #top_topics .topics_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #top_topics .topics_list .list {
    width: calc((100% / 4) - 22.5px);
    margin-left: 30px;
  }
  #top_topics .topics_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #top_topics .topics_list .list:nth-child(n+5) {
    margin-top: 30px;
  }
  #top_topics .topics_list .list .image {
    position: relative;
    margin-bottom: 1em;
  }
  #top_topics .topics_list .list .image img {
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: var(--bg-high-color);
  }
  #top_topics .topics_list .list .image span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 1em;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    background: var(--main-color);
  }
  #top_topics .topics_list .list .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
}
/******************************************************
トップページ　SUPPORT
******************************************************/
@media screen and (max-width:1024px) {
  #top_support {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_support .support_list .list:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  #top_support .support_list .list img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:1025px) {
  #top_support {
    padding: 10rem 0;
    background: var(--bg-high-color);
  }
  #top_support .support_list {
    display: flex;
    flex-wrap: wrap;
  }
  #top_support .support_list .list {
    width: calc(50% - 15px);
    margin-left: 30px;
  }
  #top_support .support_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #top_support .support_list .list:nth-child(n+3) {
    margin-top: 30px;
  }
  #top_support .support_list .list img {
    width: 100%;
    height: auto;
  }
}


/******************************************************
下層ページ　基本要素、カバー
******************************************************/
@media screen and (min-width:1025px) {
  /* カバー等 */
  #page {
    padding: 10rem 0;
  }
  #page .section {
    margin-bottom: 10rem;
  }
  #page .box {
    margin-bottom: 5rem;
  }
  #page .s_box {
    margin-bottom: 3rem;
  }
  #page .bg_box {
    padding: 3em;
    background: var(--bg-high-color);
  }
  #page .border_box {
    padding: 3em;
    border: 1px solid var(--border-color);
  }
  /* サイトのコンテンツのマージン除去 */
  #page *:last-child,
  #page .section *:last-child,
  #page .box *:last-child,
  #page .s_box *:last-child,
  #page .bg_box *:last-child,
  #page .border_box *:last-child {
    margin-bottom: 0;
  }
  /* flex */
  #page .flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;/* 写真が右 */
  }
  #page .flex_box.row {
    flex-direction: row;/* 写真が左 */
  }
  #page .flex_box.center {
    align-items: center;
  }
  #page .flex_box .flex_image,
  #page .flex_box .flex_comment {
    width: calc(50% - 3rem);
  }  
  /* 基本要素 */
  #page div:not([class]) {
    margin-bottom: 1.2em;
  }
  #page .text-center {
    text-align: center;
  }
  #page .text-right {
    text-align: right;
  }
  #page .text-left {
    text-align: left;
  }
  #page .pc-text-center {
    text-align: center;
  }
  #page .pc-text-right {
    text-align: right;
  }
  #page .pc-text-left {
    text-align: left;
  }  
  #page p {
    margin-bottom: 1.2em;
  }  
  #page .bold {
    font-weight: var(--text-weight-bold);
  }  
  #page .red {
    color: var(--main-color);
  }
  #page .message {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
  }
  #page a:not([class]) {
    color: var(--main-color);
    text-decoration: underline;
  }
  #page a:not([class]):hover {
    text-decoration: none;
  }
  #page ul:not([class]) li {
    position: relative;
    padding-left: 1.5em;
  }
  #page ul:not([class]) li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #page table:not([class]) {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page table:not([class]) th,
  #page table:not([class]) td {
    padding: 1em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page table:not([class]) th {
    width: 25%;
    background: var(--bg-high-color);
  }
  #page dl:not(class) dt {
    font-weight: var(--text-weight-bold);
  }
  #page dl:not(class) dt:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
}
@media screen and (max-width:1024px) {
  /* カバー等 */
  #page {
    padding: 5rem 0;
  }
  #page .section {
    margin-bottom: 5rem;
  }
  #page .box {
    margin-bottom: 3rem;
  }
  #page .s_box {
    margin-bottom: 1em;
  }
  #page .bg_box {
    padding: 3rem 1.5em;
    background: var(--bg-high-color);
  }
  #page .border_box {
    padding: 3rem 1.5rem;
    border: 1px solid var(--border-color);
  }
  /* サイトのコンテンツのマージン除去 */
  #page *:last-child,
  #page .section *:last-child,
  #page .box *:last-child,
  #page .s_box *:last-child,
  #page .bg_box *:last-child,
  #page .border_box *:last-child {
    margin-bottom: 0;
  }
  /* flex */
  #page .flex_box {}
  #page .flex_box .flex_image,
  #page .flex_box .flex_comment {
    margin-bottom: 1.2em;
  }  
  /* 基本要素 */
  #page div:not([class]) {
    margin-bottom: 1.2em;
  }
  #page .text-center {
    text-align: center;
  }
  #page .text-right {
    text-align: right;
  }
  #page .text-left {
    text-align: left;
  }
  #page .sp-text-center {
    text-align: center;
  }
  #page .sp-text-right {
    text-align: right;
  }
  #page .sp-text-left {
    text-align: left;
  }  
  #page p {
    margin-bottom: 1.2em;
  }  
  #page .message {
    font-weight: var(--text-weight-bold);
  }  
  #page .bold {
    font-weight: var(--text-weight-bold);
  }
  #page .red {
    color: var(--main-color);
  }  
  #page a:not([class]) {
    color: var(--main-color);
    text-decoration: underline;
  }
  #page a:not([class]):hover {
    text-decoration: none;
  }
  #page ul:not([class]) li {
    position: relative;
    padding-left: 1.5em;
  }
  #page ul:not([class]) li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #page table:not([class]) {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page table:not([class]) th,
  #page table:not([class]) td {
    padding: 1em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page table:not([class]) th {
    width: 25%;
    background: var(--bg-high-color);
  }
  #page dl:not(class) dt {
    font-weight: var(--text-weight-bold);
  }
  #page dl:not(class) dt:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
}
/******************************************************
下層ページ　共通
******************************************************/
@media screen and (min-width:1025px) {
  /* 下層ページ　メインタイトル */
  #page_catch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 360px;
    background: #666;
    aspect-ratio: 4 / 1;
    object-fit: cover;
    background-color: var(--main-color);
  }
  #page_catch:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/images/main_logo.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .2;
  }    
  #page_catch:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.05);
    background-image: radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%), radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
  }  
  #page_catch h1 {
    position: relative;
    color: var(--white);
    font-size: 4.8rem;
    font-weight: var(--text-weight-bold);
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.35);    
    z-index: 1;
  }
  /* 見出しタイトル */
  .page_title_a {
    margin-bottom: 1.2em;
    padding: .6em 1.2em;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    background: var(--main-color) url(https://victory-test.site-design.work/wp-content/uploads/images/bg_title.webp) center right no-repeat;
    background-size: auto 100%;
  }
  .page_title_b {
    margin-bottom: 1.2em;
    padding-bottom: .5em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
  }
  .page_title_b span {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
  }
  .page_title_b span:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    background: url(/wp-content/uploads/images/icon_title_logo.webp) center center no-repeat;
    background-size: contain;    
  }  
  .page_title_c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2em;    
    text-align: center;
    font-style: italic;
  }
  .page_title_c span {
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  .page_title_c span.red:first-letter {
    color: var(--main-color);
  }
  /* メッセージ */
  .page_message {
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
  }
  .page_message span {
    color: var(--main-color);
  }
  /* リンクボタン */
  .page_link_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page_link_btn.left {
    justify-content: flex-start;
  }
  .page_link_btn.right {
    justify-content: flex-end;
  }
  .page_link_btn a.btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 7rem;
    color: var(--white)!important;
    font-weight: var(--text-weight-bold);
    line-height: 1.35;
    text-align: center;
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;      
  }
  .page_link_btn a.btn:after {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';
  }  
  .page_link_btn a.btn:hover {
    opacity: .7;
  }  
  .page_link_btn a.btn:nth-child(n+2) {
    margin-left: 4rem;
  }
  /* ページ内リンク */
  .page_link_list {
    display: flex;
    flex-wrap: wrap;
  }
  .page_link_list .list {
    width: calc((100% / 5) - 8px);
    margin-left: 10px;
  }
  .page_link_list .list:nth-child(5n+1) {
    margin-left: 0;
  } 
  .page_link_list .list a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 6rem;
    color: var(--text-color)!important;
    font-weight: var(--text-weight-bold);
    line-height: 1.35;
    text-decoration: none!important;;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color); 
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear; 
  }
  .page_link_list .list a:after {
    position: absolute;
    content: "\f107";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    font-weight: 400;
    line-height: 1;
  }
}
@media screen and (max-width:1024px) {
  /* 下層ページ　メインタイトル */
  #page_catch {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: #666;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    background-color: var(--main-color);
  }
  #page_catch:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/images/main_logo.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .2;
  }    
  #page_catch:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.05);
    background-image: radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%), radial-gradient(rgba(0,0,0,.5) 0%, transparent 30%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
  }  
  #page_catch h1 {
    position: relative;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.35);    
    z-index: 1;
  }
  /* 見出しタイトル */
  .page_title_a {
    margin-bottom: 1.2em;
    padding: .6em 1.2em;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    background: var(--main-color) url(https://victory-test.site-design.work/wp-content/uploads/images/bg_title_sp.webp) center right no-repeat;
    background-size: auto 100%;
  }
  .page_title_b {
    margin-bottom: 1.2em;
    padding-bottom: .5em;
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
  }
  .page_title_b span {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
  }
  .page_title_b span:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    background: url(/wp-content/uploads/images/icon_title_logo.webp) center center no-repeat;
    background-size: contain;    
  }  
  .page_title_c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2em;    
    text-align: center;
    font-style: italic;
  }
  .page_title_c span {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  .page_title_c span.red:first-letter {
    color: var(--main-color);
  }
  /* メッセージ */
  .page_message {
    font-weight: var(--text-weight-bold);
    font-style: italic;
    text-align: center;
    line-height: 1.5;
  }
  .page_message span {
    color: var(--main-color);
  }
  /* リンクボタン */
  .page_link_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_link_btn a.btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 5.6rem;
    line-height: 1.35;
    color: var(--white)!important;
    font-weight: var(--text-weight-bold);
    text-align: center;
    background: var(--main-color);    
  }
  .page_link_btn a.btn:after {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';
  }  
  .page_link_btn a.btn:nth-child(n+2) {
    margin-top: 1.5rem;
  }
  /* ページ内リンク */
  .page_link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page_link_list .list {
    width: calc((100% / 2) - 3px);
  }
  .page_link_list .list:first-child {
    width: 100%;
  } 
  .page_link_list .list:nth-child(n+2) {
    margin-top: 6px;
  }
  .page_link_list .list a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 5rem;
    color: var(--text-color)!important;
    font-weight: var(--text-weight-bold);
    line-height: 1.35;
    text-decoration: none!important;;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color); 
  }
  .page_link_list .list a:after {
    position: absolute;
    content: "\f107";
    font-family: "FontAwesome";
    top: 50%;
    right: .5em;
    margin-top: -.5em;
    font-weight: 400;
    line-height: 1;
  }
}
/******************************************************
下層ページ　個別
******************************************************/
@media screen and (min-width:1025px) {
  /****************************************************
  規約
  ****************************************************/  
  /* リスト */
  #page dl.term *:last-child {
    margin-bottom: 0;
  }
  #page dl.term dt {
    margin-bottom: .8em;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  #page dl.term dd {
    margin-bottom: 2.4em;
  }  
  /* 連絡先 */
  #page .term_box {
    text-align: center;
  }
  #page .term_box .title {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);  
  }
  /****************************************************
  会社案内
  ****************************************************/  
  /* 代表あいさつ */
  #page .greeting_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #page .greeting_flex .flex_image {
    margin: 0 auto;
  }
  #page .greeting_flex .flex_image .image {
    width: 360px;    
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;  
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;  
  }
  #page .greeting_flex .flex_image .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);
  }
  #page .greeting_flex .flex_image .name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.2em;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #page .greeting_flex .flex_image .name .large {
    font-size: 1.2em;
  }  
  #page .greeting_flex .flex_comment {
    width: calc(100% - 420px);
  }  
  #page .greeting_flex .flex_comment .name {
    font-size: 1.2em;
    text-align: right;
    font-weight: var(--text-weight-bold);
  }
  /* 地図 */
  #page .google_map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  /****************************************************
  よくあるご質問　※保護者の声の質問と併用
  ****************************************************/    
  #page dl.faq:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
  #page dl.faq dt {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page dl.faq dt span {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
  }
  #page dl.faq dt span:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -.5em;
    content: "Q";
    color: var(--main-color);
    line-height: 1;
    font-weight: var(--text-weight-black);
  }
  #page dl.faq dd {
    margin-top: .4em;
    padding: 2em;
    border-radius: .4em;
    background: var(--bg-high-color);
  }
  /****************************************************
  フォーム　送信完了画面
  ****************************************************/  
  #page .thanks_title {
    margin-bottom: 1.2em;
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;    
  }
  #page .thanks_message {
    text-align: center;
  }
  #page .thanks_message p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #page .thanks_message span {
    font-weight: var(--text-weight-bold);
  }
  #page .thanks_information {
    padding: 3em;
    text-align: center;
    background: var(--bg-high-color);
  }
  #page .thanks_information .title {
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #page .thanks_information p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  
  /****************************************************
  各種手続きフォーム　※フォーム
  ****************************************************/    
  #page .entry_inner {
    margin: 0 auto;
    box-sizing: border-box;
  }
  #page .entry_inner input[type=text],
  #page .entry_inner input[type=email],
  #page .entry_inner input[type=tel],
  #page .entry_inner textarea,
  #page .entry_inner select {
    padding: 1rem;
    color: var(--text-color);
    border: 1px solid var(--border-color);
  }
  #page .entry_inner select {
    padding-right: 2em;
    background: url(/wp-content/uploads/images/select_icon.png) center right no-repeat;
  }
  #page .entry_inner .vertical-item + .vertical-item {
    margin: 0;
  }
  #page .entry_inner .form_name {
    width: 50%;
  }
  #page .entry_inner .form_mail {
    width: 50%;
  }
  #page .entry_inner .form_data {
    width: 25%;
  }
  #page .entry_inner .form_post {
    width: 120px;
  }
  #page .entry_inner .form_address {
    width: 100%;
  }
  #page .entry_inner .form_tel {
    width: 50%;
  }
  #page .entry_inner select {
    padding-right: 3rem;
  }
  #page .entry_inner .form_textarea {
    width: 100%;
  }
  #page .entry_inner .form_border,
  #page .mw_wp_form_confirm .confirm_border {
    padding: 3rem;
    border: 1px solid var(--border-color);
  }  
  #page .entry_box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    aling-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  #page .entry_box .e_comment {
    width: 58%;
  }
  #page .entry_box .e_btn {
    width: 38%;
  }
  #page .entry_box .e_btn span {
    position: relative;
    display: block;
    width: 100%;
    color: var(--main-color);
    font-weight: var(text-weight-bold);
    text-align: center;
    line-height: 6rem;
    background: var(--white);
    border: 3px solid var(--main-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .entry_box .e_btn span:hover,
  #page .entry_box .e_btn.active span {
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .entry_box .e_btn span:after {
    position: absolute;
    content: "\f078";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    font-weight: normal;
    line-height: 1;
  }
  #page .entry_box .e_btn.active span:after {
    content: "\f077";
    font-family: "FontAwesome";
  }
  #page .entry_term {
    display: none;
  }
  #page .entry_term dl {
    margin-bottom: 1rem;
    padding: 5rem;
    border-radius: 6px;
    background: var(--bg-high-color);
  }
  #page .entry_term p {
    text-align: right;
  }
  #page .entry_title {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: center;
  }
  #page .entry_form {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page .entry_form th,
  #page .entry_form td {
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .entry_form th {
    width: 360px;
    vertical-align: middle;
    background: var(--bg-high-color);
  }
  #page .entry_form th .req {
    color: var(--main-color);
  }
  #page .entry_questionary dt {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #page .entry_questionary dd p {
    margin-bottom: 1rem;
    font-weight: var(--text-weight-bold);
  }
  #page .entry_inner .strong_comment {
    font-weight: var(--text-weight-bold);
  }
  #page .entry_inner .confirm_comment {
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #page .entry_submit {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .entry_submit button {
    width: 360px;
    height: 6rem;
    margin: 0 1rem;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    border: none;
    border-radius: 4px;
    background: var(--main-color);
    cursor: pointer;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .entry_submit button.btn_back {
    color: var(--text-color);
    background: var(--bg-high-color);
  }
  #page .entry_submit button:hover {
    opacity: .7;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .mw_wp_form_confirm .no_confirm {
    display: none;
  }
  #page .change_comment {
    text-align: center;
  }
  #page .change_comment span {
    font-weight: var(--text-weight-bold);
  }
  select, option {
    color: var(--text-color)!important;
  }
  /****************************************************
  陸上大会個人エントリー申請フォーム　※フォーム
  ****************************************************/  
  #page .cf_form * {
    margin: 0;
  }
  #page .cf_form {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
  }
  #page .cf_form .cf_comment {
    margin-bottom: 3rem;
  }
  #page .cf_form .cf_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .cf_form .cf_list {
    margin-bottom: 3rem;
  }
  #page .cf_form .cf_list li {
    position: relative;
    padding-left: 1.5em;
  }
  #page .cf_form .cf_list li:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .cf_form .cf_list li:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "●";
  }
  #page .cf_form .cf_list li span {
    font-weight: var(--text-weight-bold);
  }
  #page .cf_confirm_comment {
    margin-bottom: 3rem;
    display: none;
    text-align: center;
  }      
  #page .cf_form .cf_table {
    margin-bottom: 3rem;
  }
  #page .cf_form .req:after {
    position: absolute;
    top: 50%;
    right: .8em;
    margin-top: -1em;
    display: inline-block;
    content: "必須";
    color: var(--white);
    padding: 0 .5em;
    font-size: 1.1rem;
    line-height: 2;
    margin-left: 1em;
    background: var(--main-color);
  }
  #page .cf_form .cf_table table {
    width: 100%;
    table-layout: fixed;
    border: 3px solid var(--border-color);
  }
  #page .cf_form .cf_table th,
  #page .cf_form .cf_table td {
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .cf_form .cf_table th {
    position: relative;
    width: 240px;
    vertical-align: middle;
    background: var(--bg-high-color);
  }  
  #page .cf_form .cf_table p {
    display: none;
  }  
  #page .cf_form .cf_table .cf_text {
    display: block;
    margin-top: .5em;
    color: #999;
    font-size: 1.2rem;
  }
  #page .cf_form input[type=text],
  #page .cf_form input[type=email],
  #page .cf_form textarea,
  #page .cf_form select {
    max-width: 100%;
    padding: .8em;
    border: 1px solid var(--border-color);
  }
  #page .cf_form select {
    padding-right: calc(1.6em + 10px);
    background: url(/wp-content/uploads/images/select_arrow.svg);
    background-position: right .8em center;
    background-size: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  #page .cf_form input[type="text"],
  #page .cf_form input[type="email"] {
    width: 100%;
  }
  #page .cf_form input[type="text"].no_100 {
    width: initial;
  }
  #page .cf_form textarea {
    width: 100%;
  }
  #page .cf_form .cf_flex {
    display: flex;
  }  
  #page .cf_form .cf_100 {
    width: 100%;
  }
  #page .cf_form .cf_50 {
    width: calc(50% - .4em);
    margin-right: .8em;
  }
  #page .cf_form .cf_50:nth-child(2n) {
    margin-right: 0;
  }
  #page .cf_form .cf_date {
    display: flex;
  }
  #page .cf_form .cf_date .cf_year,
  #page .cf_form .cf_date .cf_month,
  #page .cf_form .cf_date .cf_day {
    display: flex;
  }
  #page .cf_form .cf_date .cf_year:after {
    content: "年";
    margin: .8em;
  }
  #page .cf_form .cf_date .cf_month:after {
    content: "月";
    margin: .8em;
  }
  #page .cf_form .cf_date .cf_day:after {
    content: "日";
    margin: .8em;
  }  
  #page .cf_form .cf_gender > span {
    margin-right: 1em;
  }
  #page .cf_form .cf_submit_btn {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row-reverse;
  }
  #page .cf_form .cf_submit_btn input[type="submit"] {
    width: 360px;
    height: 6rem;
    margin: 0 1rem;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    border: none;
    border-radius: 4px;
    background: var(--main-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .cf_form .cf_submit_btn input[type="submit"].page_back {
    color: var(--text-color);
    background: var(--border-color);
  }
  #page .cf_form .cf_submit_btn input[type="submit"]:hover {
    opacity: .7;
  }
  #page .mw_wp_form_confirm .cf_comment {
    display: none;
  }
  #page .mw_wp_form_confirm .cf_list {
    display: none;
  }  
  #page .mw_wp_form_confirm .cf_confirm_comment {
    margin-bottom: 3rem;
    display: block;
  }    
  #page .mw_wp_form_confirm .cf_form .cf_table {
    margin-bottom: 0;
  }
  #page .mw_wp_form_confirm .cf_form .cf_table table {
    border: 1px solid var(--border-color);
    border-top: none;
  }
  #page .mw_wp_form_confirm .cf_form .cf_100,
  #page .mw_wp_form_confirm .cf_form .cf_50 {
    width: initial;
  }
  #page .mw_wp_form_confirm .cf_form .cf_table.first_table {
    border-top: 1px solid var(--border-color);
  }
  #page .mw_wp_form_confirm .cf_form .cf_table th,
  #page .mw_wp_form_confirm .cf_form .cf_table td {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_year:after,
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_month:after,
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_day:after {
    display: none;
  }   
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_year .cf_date_box:after {
    content: "年";
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_month .cf_date_box:after {
    content: "月";
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_day .cf_date_box:after {
    content: "日";
  }
  #page .mw_wp_form_confirm .cf_form .cf_table .cf_text {
    display: none;
  }  
  /****************************************************
  体験予約・その他お問い合わせ　※フォーム
  ****************************************************/ 
  #page .page_contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .page_contact_list .list {
    width: calc(50% - 1.5rem);
  }  
  #page .switch_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .switch_btn div.s_btn {
    position: relative;
    width: calc(50% - 5px);
    margin: 0 0 1rem!important;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 6rem;
    box-sizing: border-box;
    background: var(--main-color);
    cursor: pointer; 
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #page .switch_btn div.s_btn:after {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';
  }
  #page .switch_btn div.s_btn:hover {
    opacity: .5;
  }
  #page .switch_btn .s_btn.active {
    margin-bottom: 0!important;
    padding-bottom: 1rem;
    color: var(--text-color);
    background: var(--bg-high-color);
  }
  #page .switch_btn div.s_btn.active:after {
    display: none;
  }
  #page .switch_btn div.s_btn.active:hover {
    opacity: 1;
  }
  #page .contact_cover {
    display: block;
    padding: 6rem;
    background: var(--bg-high-color);
  }
  #page .contact_comment {
    margin-bottom: 5rem;
    font-weight: var(--text-weight-bold);
  }  
  #page .contact_form table {
    width: 100%;
    margin-bottom: 2rem;
    border: none;
  }
  #page .contact_form table tr {
    border-bottom: 1px solid var(--border-color);
  }
  #page .contact_form table th {
    position: relative;
    display: block;
    width: 100%;
    padding: 1em 0 0;
    font-weight: var(--text-weight-bold);
    text-align: left;
    border: none;
    background: none;
    box-sizing: border-box;
  }
  #page .contact_form table td {
    display: block;
    width: 100%;
    padding: 0 0 1em;
    border: none;
    background: none;
    box-sizing: border-box;
  }
  #page .contact_form.confirm table {
    margin-bottom: 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page .contact_form.confirm table th {
    display: table-cell;
    width: 35%;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-high-color);
  }
  #page .contact_form.confirm table th span {
    display: none;
  }
  #page .contact_form.confirm table td {
    display: table-cell;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .contact_form.confirm table td div.half {
    display: inline-block;
    margin: 0;
    margin-right: .5em;
    width: initial;
    float: none;
  }
  #page .contact_form.confirm .no-confirm {
    display: none;
  }
  #page .contact_form table th span {
    position: absolute;
    display: block;
    top: 1em;
    right: 0;
    padding: .5rem 1rem;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    background: #f90;
  }
  #page .contact_form table input[type=text],
  #page .contact_form table input[type=email],
  #page .contact_form table input[type=number] {
    width: 100%;
    padding: 1rem;
  }
  #page .contact_form table input[type=number] {
    width: 30%;
    border: none;
  }
  #page .contact_form table select,
  #page .contact_form table input[type=tel] {
    width: 100%;
    padding: 1rem;
    color: var(--text-color);
    background: var(--white);
  }
  #page .contact_form table .select_cover {
    display: inline-block;
    position: relative;
    width: 50%;
  }
  #page .contact_form table .select_cover:after {
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    line-height: 1;
    content: "\f107";
    font-family: "FontAwesome";
  }
  #page .contact_form.confirm table .select_cover:after {
    display: none;
  }
  #page .contact_form table .select_cover.address:after {
    display: none;
  }
  #page .contact_form table textarea {
    width: 100%;
    padding: 1rem;
  }
  #page .contact_form .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .contact_form.confirm .flex {
    display: block;
  }
  #page .contact_form .half {
    width: calc(50% - 1.5rem);
  }
  #page .contact_form .vertical-item {
    margin-top: 1em;
  }
  #page .contact_form .form_btn {
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #page .contact_form .form_btn input {
    position: relative;
    display: inline-block;
    width: 420px;
    height: 8rem;
    color: var(--white);
    font-size: 2rem;    
    font-weight: var(--text-weight-bold);
    background: var(--main-color);
  }
  #page .return_btn {
    text-align: center;
  }
  #page .return_btn a {
    display: inline-block;
    width: 420px;
    max-width: 100%;
    font-size: 2rem;
    line-height: 8rem;
    font-weight: var(--text-weight-bold);
    box-sizing: border-box;
    color: var(--white);
    text-decoration: none;
    background: var(--main-color);
  }    
  /* 確認ページで非表示になる文章 */
  #page .contact_form .mw_wp_form_confirm .hidden_confirm {
    display: none;
  }
  #page .contact_form .school_area_title {
    margin: 1.2em 0 .6em;
    font-weight: var(--text-weight-bold);
  }
  /****************************************************
  無料体験
  ****************************************************/    
  /* 無料体験用ボックス */
  #page .trial_point_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  #page .trial_point_list .list {
    position: relative;
    width: calc((100% / 3) - 2rem);
    padding-left: 2em;
    padding-bottom: .5em;
    font-size: 2.4rem;
    font-style: italic;
    font-weight: var(--text-weight-bold);
    border-bottom: 2px solid var(--text-color);
    box-sizing: border-box;
  }
  #page .trial_point_list .list:after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.5em;
    height: 1.5em;
    margin-top: -1em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }
  #page .trial_comment {
    text-align: center;
  }
  #page .trial_comment *:last-child {
    margin-bottom: 0;
  }
  #page .trial_comment .comment_box {
    margin-bottom: 5rem;
  }
  #page .trial_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .trial_comment .message {
    margin-bottom: 1.2em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
  }
  #page .trial_comment .comment {
    margin-bottom: 1.2em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #page .trial_comment .title {
    margin-bottom: 1.2em;    
    font-size: 3rem;
    font-weight: var(--text-weight-bold);
    font-style: italic;
    line-height: 1.5;
  }  
  #page .trial_comment .title span {
    position: relative;
    display: inline-block;
    padding: 0 1.2em .3em; 
  }
  #page .trial_comment .title span:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--main-color);
  }
  #page .trial_comment .memo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #page .trial_comment .memo span {
    width: 100%;
  }
  #page .trial_comment .image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  /* 画像リスト */
  #page .image_list .list {
    text-align: center;
  }
  #page .image_list .list img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  #page .image_list .list img.ratio_2_1 {
    aspect-ratio: 2 / 1;
  }
  #page .image_list .list_1 {
    width: calc(100%);
  }
  #page .image_list .list_2 {
    width: calc(50% - 1.5rem);
  }
  #page .image_list .list_3 {
    width: calc(50% - 2rem);
  }  
  /* お問い合わせバナー */
  #page .contact_box {
    margin-bottom: 5rem;
  }
  #page .contact_box p {
    margin-bottom: 1.2em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
  }
  #page .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .contact_list .list {
    width: calc(50% - 1.5rem);
    margin-left: 3rem;
  }
  #page .contact_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #page .contact_list .list:nth-child(n+3) {
    margin-top: 3rem;
  }
  #page .contact_list .list a.btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: var(--text-weight-black);
    background: var(--text-color);
    aspect-ratio: 4 / 1;
    object-fit: cover;
  }
  #page .contact_list .list a.btn:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }  
  #page .contact_list .list a.btn.contact {
    background: var(--main-color);
  }  
  #page .contact_list .list a.btn.line {
    background: #00b900;
  }
  /* お悩み */
  #page .worry_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.2em;
  }
  #page .worry_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc((100% / 5) - 10px);
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-high-color);
    box-sizing: border-box;
  }
  #page .worry_list li span {}
  /* チェックマークリスト */  
  #page .check_list {
    margin-bottom: 1.2em;
  }
  #page .check_list li {
    position: relative;
    padding: .6em 0;
    padding-left: 1.5em;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
  }
  #page .check_list li:first-child {
    border-top: 1px solid var(--border-color);
  }
  #page .check_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }
  /* クラスリスト */  
  #page .class_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  #page .class_list .list {
    width: calc((100% / 3) - 20px);
  }
  #page .class_list .list .title {
    display: flex;
    flex-direction :column;
    justify-content: center;
    align-items: center;
    padding: .6em 0;
    margin-bottom: 1.2em;
    color: var(--white);
    text-align: center;    
    background: var(--main-color);
  }
  #page .class_list .list .title span.class {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  /* 安心な理由 */  
  #page .reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .reason_list .list {
    width: calc((100% / 3) - 20px);
    margin-left: 30px;
  }
  #page .reason_list .list:nth-child(3n+1) {
    margin-left: 0;
  }
  #page .reason_list .list:nth-child(n+4) {
    margin-top: 30px;
  }
  #page .reason_list .list .image {
    margin-bottom: 1.2em;
  }
  #page .reason_list .list .title {
    margin-bottom: .6em;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  /* レッスンの流れ */
  #page .step_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  #page .step_list .list {
    position: relative;
    width: calc((100% / 3) - 20px);
    padding: 3em;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .step_list .list:nth-child(n+2):before {
    position: absolute;
    top: 50%;
    left: -30px;
    content: "\f061";
    font-family: "FontAwesome";    
    margin-top: -.5em;
    width: 30px;
    height: 30px;
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    line-height: 1;      
  }
  #page .step_list .list .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: .6em;
    font-size: 2.4rem;
    font-weight: var(--text-weight-bold);
  }
  #page .step_list .list .title .number {
    color: var(--main-color);
    font-weight: var(--text-weight-black);    
  }
  #page .step_list .list .title .jap:before {
    content: "|";
    margin: 0 .5em;
  }
  #page .step_list .list .comment {
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  /* 持ち物 */
  #page .bring_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3em;
    background: var(--bg-high-color);
  }
  #page .bring_box .title {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1;
  }
  #page .bring_box .title:after {
    content: "：";
  }
  #page .bring_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 1em;
  }
  #page .bring_list li {
    font-size: 2rem;
    line-height: 1;
    font-weight: var(--text-weight-bold);
  }
  #page .bring_list li:nth-child(n+2):before {
    content: "/";
    margin: 0 1em;
  }
  /****************************************************
  サービス
  ****************************************************/    
  #page .service_box {
    margin-bottom: 10rem;
  }
  #page .service_image img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border: 12px solid var(--white);
    box-shadow: 0 .8em .8em -.6em rgba(0,0,0,.3);   
    box-sizing: border-box;
  }
  #page .price_table {
    width: 100%;
    margin-bottom: 1.2em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);    
  }
  #page .price_table th,
  #page .price_table td {
    padding: 1.2em;
    vertical-align: middle;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .price_table th {
    width: 300px;
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
    background: var(--bg-high-color);
  }
  #page .price_table td span {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page .price_table_b {
    width: 100%;
    margin-bottom: 1.2em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page .price_table_b th,
  #page .price_table_b td {
    padding: 1.2em 0;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .price_table_b th {
    background: var(--bg-high-color);
  }
  #page .price_table_b td span {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page .price_table_b td span.red {
    color: var(--main-color);
  }  
  #page .service_table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 1.2em;
    line-height: 1.5;
    border-top: 1px solid var(--border-color);
  }
  #page .service_table th,
  #page .service_table td {
    padding: 1.2em;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
  }
  #page .service_table th {
    width: 300px;
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page .service_table td span {
    font-weight: var(--text-weight-bold);
  }
} 
@media screen and (max-width:1024px) {
  /****************************************************
  規約
  ****************************************************/  
  /* リスト */
  #page dl.term *:last-child {
    margin-bottom: 0;
  }
  #page dl.term dt {
    margin-bottom: .8em;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  #page dl.term dd {
    margin-bottom: 2.4em;
  }  
  /* 連絡先 */
  #page .term_box {
    text-align: center;
  }
  #page .term_box .title {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);  
  }
  /****************************************************
  会社案内
  ****************************************************/  
  /* 代表あいさつ */
  #page .greeting_flex {}
  #page .greeting_flex .flex_image {
    margin-bottom: 3rem;
  }
  #page .greeting_flex .flex_image .image {
    width: 65%;
    max-width: 480px;   
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;  
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;  
  }
  #page .greeting_flex .flex_image .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);    
  }
  #page .greeting_flex .flex_image .name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.2em;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #page .greeting_flex .flex_image .name .large {
    font-size: 1.2em;
  }
  #page .greeting_flex .flex_comment {}  
  #page .greeting_flex .flex_comment .name {
    text-align: right;
    font-weight: var(--text-weight-bold);
  }
  /* 地図 */
  #page .google_map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  /****************************************************
  よくあるご質問　※保護者の声の質問と併用
  ****************************************************/    
  #page dl.faq:nth-of-type(n+2) {
    margin-top: 1.2em;
  }
  #page dl.faq dt {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page dl.faq dt span {
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
  }
  #page dl.faq dt span:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -.5em;
    content: "Q";
    color: var(--main-color);
    line-height: 1;
    font-weight: var(--text-weight-black);
  }
  #page dl.faq dd {
    margin-top: .4em;
    padding: 2em;
    border-radius: .4em;
    background: var(--bg-high-color);
  }
  /****************************************************
  フォーム　送信完了画面
  ****************************************************/  
  #page .thanks_title {
    margin-bottom: 1.2em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;    
  }
  #page .thanks_message {
    text-align: center;
  }
  #page .thanks_message p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #page .thanks_message span {
    font-weight: var(--text-weight-bold);
  }
  #page .thanks_information {
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--bg-high-color);
  }
  #page .thanks_information .title {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #page .thanks_information p:nth-child(n+2) {
    margin-top: 1.2em;
  }
  
  /****************************************************
  各種手続きフォーム　※フォーム
  ****************************************************/    
  #page .entry_inner {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #page .entry_inner input[type=text],
  #page .entry_inner input[type=email],
  #page .entry_inner input[type=tel],
  #page .entry_inner textarea,
  #page .entry_inner select {
    padding: 1rem;
    border: 1px solid var(--border-color);
  }
  #page .entry_inner select {
    padding-right: 2em;
    background: url(/wp-content/uploads/images/select_icon.png) center right no-repeat;
  }
  #page .entry_inner .vertical-item + .vertical-item {
    margin: 0;
  }
  #page .entry_inner .form_name {
    width: 100%;
  }
  #page .entry_inner .form_mail {
    width: 100%;
  }
  #page .entry_inner .form_data {
    width: 100%;
  }
  #page .entry_inner .form_post {
    width: 50%;
  }
  #page .entry_inner .form_address {
    width: 100%;
  }
  #page .entry_inner .form_tel {
    width: 100%;
  }
  #page .entry_inner select {
    padding-right: 3rem;
  }
  #page .entry_inner .form_textarea {
    width: 100%;
  }
  #page .entry_inner .form_border,
  #page .mw_wp_form_confirm .confirm_border {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
  }  
  #page .entry_box {
    margin-bottom: 3rem;
  }
  #page .entry_box .e_comment {
    font-size: 1.4rem;
  }
  #page .entry_box .e_btn {

  }
  #page .entry_box .e_btn span {
    position: relative;
    display: block;
    width: 100%;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 5rem;
    background: var(--white);
    border: 3px solid var(--main-color);
    cursor: pointer;
  }
  #page .entry_box .e_btn.active span {
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .entry_box .e_btn span:after {
    position: absolute;
    content: "\f078";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    font-weight: normal;
    line-height: 1;
  }
  #page .entry_box .e_btn.active span:after {
    content: "\f077";
    font-family: "FontAwesome";
  }
  #page .entry_term {
    display: none;
  }
  #page .entry_term dl {
    margin-bottom: 1rem;
    padding: 3rem 1.5rem;
    border-radius: 6px;
    background: var(--bg-high-color);
  }
  #page .entry_term p {
    text-align: right;
  }
  #page .entry_title {
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: center;
  }
  #page .entry_form {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page .entry_form th,
  #page .entry_form td {
    display: block;
    width: 100%;
    padding: 1rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .entry_form th {
    text-align: center;
    background: var(--bg-high-color);
  }
  #page .entry_form th .req {
    color: var(--main-color);
  }
  #page .entry_questionary dt {
    font-size: 1.6rem;
    font-weight: var(--text-weight-bold);
  }
  #page .entry_questionary dd p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: var(--text-weight-bold);
  }
  #page .entry_inner .strong_comment {
    font-weight: var(--text-weight-bold);
  }
  #page .entry_inner .confirm_comment {
    font-size: 1.4rem;
    font-weight: var(--text-weight-bold);
    text-align: center;
  }
  #page .entry_submit {
        display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .entry_submit button {
    width: 280px;
    max-width: 100%;
    height: 5rem;
    margin: 0 1rem 1rem;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: var(--text-weight-bold);
    border: none;
    border-radius: 4px;
    background: var(--main-color);
    cursor: pointer;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .entry_submit button.btn_back {
    color: var(--text-color);
    background: var(--bg-high-color);
  }
  #page .entry_submit button:hover {
    opacity: .7;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .mw_wp_form_confirm .no_confirm {
    display: none;
  }
  #page .change_comment {
    text-align: center;
  }
  #page .change_comment span {
    font-weight: var(--text-weight-bold);
  }  
  select, option {
    color: var(--text-color)!important;
  }
  /****************************************************
  陸上大会個人エントリー申請フォーム　※フォーム
  ****************************************************/  
   #page .cf_form * {
    margin: 0;
  }
  #page .cf_form {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
  }
  #page .cf_form .cf_comment {
    margin-bottom: 1.5rem;
  }
  #page .cf_form .cf_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .cf_form .cf_list {
    margin-bottom: 3rem;
  }
  #page .cf_form .cf_list li {
    position: relative;
    padding-left: 1.5em;
  }
  #page .cf_form .cf_list li:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .cf_form .cf_list li:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "●";
  }
  #page .cf_form .cf_list li span {
    font-weight: var(--text-weight-bold);
  }
  #page .cf_form .cf_confirm_comment {
    margin-bottom: 1.5rem;
    text-align: center;
    display: none;
  }
  #page .cf_form .cf_table {
    margin-bottom: 1.5rem;
  }
  #page .cf_form .req:after {
    position: absolute;
    top: 50%;
    right: .8em;
    margin-top: -1em;
    display: inline-block;
    content: "必須";
    color: var(--white);
    padding: 0 .5em;
    font-size: 1.1rem;
    line-height: 2;
    margin-left: 1em;
    background: #e60012;
  }
  #page .cf_form .cf_table table {
    width: 100%;
    table-layout: fixed;
    border: 3px solid var(--border-color);
  }
  #page .cf_form .cf_table th,
  #page .cf_form .cf_table td {
    display: block;
    width: 100%;
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .cf_form .cf_table th {
    position: relative;
    background: #f2f2f2;
  }  
  #page .cf_form .cf_table p {
    display: none;
  }  
  #page .cf_form .cf_table .cf_text {
    display: block;
    margin-top: .5em;
    color: #999;
    font-size: 1.2rem;
  }
  #page .cf_form input[type=text],
  #page .cf_form input[type=email],
  #page .cf_form textarea,
  #page .cf_form select {
    max-width: 100%;
    padding: .4em;
    border: 1px solid var(--border-color);
  }
  #page .cf_form select {
    padding-right: calc(.8em + 10px);
    background: url(/wp-content/uploads/images/select_arrow.svg);
    background-position: right .4em center;
    background-size: 10px;
    background-repeat: no-repeat;
    cursor: pointer;
  }
  #page .cf_form input[type="text"],
  #page .cf_form input[type="email"] {
    width: 100%;
  }
  #page .cf_form input[type="text"].no_100 {
    width: calc((100% / 3) - 1em);
  }
  #page .cf_form textarea {
    width: 100%;
  }
  #page .cf_form .cf_flex {
    display: flex;
  }  
  #page .cf_form .cf_100 {
    width: 100%;
  }
  #page .cf_form .cf_50 {
    width: calc(50% - .2em);
    margin-right: .4em;
  }
  #page .cf_form .cf_50:nth-child(2n) {
    margin-right: 0;
  }
  #page .cf_form .cf_date {
    display: flex;
  }
  #page .cf_form .cf_date .cf_year,
  #page .cf_form .cf_date .cf_month,
  #page .cf_form .cf_date .cf_day {
    display: flex;
  }
  #page .cf_form .cf_date .cf_year:after {
    content: "年";
    margin: .8em .2em;
  }
  #page .cf_form .cf_date .cf_month:after {
    content: "月";
    margin: .8em .2em;
  }
  #page .cf_form .cf_date .cf_day:after {
    content: "日";
    margin: .8em .2em;
  }  
  #page .cf_form .cf_gender > span {
    margin-right: 1em;
  }
  #page .cf_form .cf_submit_btn {
    margin-top: 3rem;
    text-align: center;
  }
  #page .cf_form .cf_submit_btn input[type="submit"] {
    width: 240px;
    height: 6rem;
    margin: 0 auto;
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #page .cf_form .cf_submit_btn input[type="submit"].page_back {
    margin-top: 1rem;
    color: var(--text-color);
    background: #eee;
  }
  #page .cf_form .cf_submit_btn input[type="submit"]:hover {
    opacity: .7;
  }
  #page .mw_wp_form_confirm .cf_comment {
    display: none;
  }
  #page .mw_wp_form_confirm .cf_list {
    display: none;
  }  
  #page .mw_wp_form_confirm .cf_confirm_comment {
    margin-bottom: 1.5rem;
    display: block;
  }
  #page .mw_wp_form_confirm .cf_form .cf_100,
  #page .mw_wp_form_confirm .cf_form .cf_50 {
    width: initial;
  }  
  #page .mw_wp_form_confirm .cf_form .cf_table {
    margin-bottom: 0;
  }
  #page .mw_wp_form_confirm .cf_form .cf_table table {
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-top: none;
  }
  #page .mw_wp_form_confirm .cf_form .cf_table.first_table {
    border-top: 1px solid var(--border-color);
  }
  #page .mw_wp_form_confirm .cf_form .cf_table th,
  #page .mw_wp_form_confirm .cf_form .cf_table td {
    border: none;
    border-bottom: 1px solid var(--border-color);
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_year:after,
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_month:after,
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_day:after {
    display: none;
  }   
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_year .cf_date_box:after {
    content: "年";
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_month .cf_date_box:after {
    content: "月";
  }
  #page .mw_wp_form_confirm .cf_form .cf_date .cf_day .cf_date_box:after {
    content: "日";
  }
  #page .mw_wp_form_confirm .cf_form .cf_table .cf_text {
    display: none;
  }
  /****************************************************
  体験予約・その他お問い合わせ　※フォーム
  ****************************************************/ 
  #page .page_contact_list {}
  #page .page_contact_list .list:nth-child(n+2) {
    margin-top: 1rem;
  }  
  #page .switch_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #page .switch_btn div.s_btn {
    position: relative;
    width: calc(50% - 3px);
    margin: 0 0 6px!important;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 5rem;
    box-sizing: border-box;
    background: var(--main-color);
    cursor: pointer; 
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
  }
  #page .switch_btn div.s_btn:after {
    position: absolute;
    right: 2em;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    content: "\f105";
    font-family: 'FontAwesome';
  }
  #page .switch_btn div.s_btn:hover {
    opacity: .5;
  }
  #page .switch_btn .s_btn.active {
    margin-bottom: 0!important;
    padding-bottom: 6px;
    color: var(--text-color);
    background: var(--bg-high-color);
  }
  #page .switch_btn div.s_btn.active:after {
    display: none;
  }
  #page .switch_btn div.s_btn.active:hover {
    opacity: 1;
  }
  #page .contact_cover {
    display: block;
    padding: 3rem 1.5rem;
    background: var(--bg-high-color);
  }
  #page .contact_comment {
    margin-bottom: 1em;
    font-weight: var(--text-weight-bold);
  }
  #page .contact_form table {
    width: 100%;
    border: none;
  }
  #page .contact_form table th {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    border: none;
    background: none;
    box-sizing: border-box;
  }
  #page .contact_form table td {
    display: block;
    width: 100%;
    padding: 0 0 1em;
    border: none;
    background: none;
    box-sizing: border-box;
  }
  #page .contact_form.confirm table {
    margin-bottom: 3rem;
    background: var(--white);
    border-top: 1px solid var(--border-color)!important;
    border-left: 1px solid var(--border-color)!important;
  }
  #page .contact_form.confirm table th {
    padding: 1rem;
    border-right: 1px solid var(--border-color)!important;
    border-bottom: 1px solid var(--border-color)!important;
    background: var(--bg-high-color);
  }
  #page .contact_form.confirm table th span {
    display: none;
  }
  #page .contact_form.confirm table td {
    padding: 1rem;
    border-right: 1px solid var(--border-color)!important;
    border-bottom: 1px solid var(--border-color)!important;
  }
  #page .contact_form.confirm table td div.half {
    display: inline-block;
    margin: 0;
    margin-right: .5em;
    width: initial;
    float: none;
  }
  #page .contact_form.confirm .no-confirm {
    display: none;
  }
  #page .contact_form table th span {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    padding: .5rem 1rem;
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
    background: #f90;
  }
  #page .contact_form table input[type=text],
  #page .contact_form table input[type=email],
  #page .contact_form table input[type=number] {
    width: 100%;
    padding: 1rem;
  }
  #page .contact_form table input[type=number] {
    width: 30%;
    border: none;
  }
  #page .contact_form table select,
  #page .contact_form table input[type=tel] {
    width: 100%;
    color: var(--text-color);
    padding: 1rem;
    background: var(--white);
  }
  #page .contact_form table .select_cover {
    display: inline-block;
    position: relative;
    width: 50%;
  }
  #page .contact_form table .select_cover:after {
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    line-height: 1;
    content: "\f107";
    font-family: "FontAwesome";
  }
  #page .contact_form.confirm table .select_cover:after {
    display: none;
  }
  #page .contact_form table .select_cover.address:after {
    display: none;
  }  
  #page .contact_form.confirm table .select_cover:after {
    display: none;
  }
  #page .contact_form table textarea {
    width: 100%;
    padding: 1rem;
  }
  #page .contact_form .flex {
    display: flex;
    flex-wrap: wrap;
  }
  #page .contact_form .flex .half {
    width: calc(50% - 5px);
  }
  #page .contact_form .half:nth-child(2) {
    margin-left: 10px;
  }
  #page .contact_form .vertical-item {
    margin-top: 1em;
  }
  #page .contact_form .form_btn {
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #page .contact_form .form_btn input {
    position: relative;
    display: inline-block;
    width: 80%;
    height: 5rem;
    color: var(--white);
    font-weight: var(--text-weight-bold);
    background: var(--main-color);
  }
  /* 確認ページで非表示になる文章 */
  #page .contact_form .mw_wp_form_confirm .hidden_confirm {
    display: none;
  }
  #page .contact_form .school_area_title {
    margin: 1.2em 0 .6em;
    font-weight: var(--text-weight-bold);
  }  
  /****************************************************
  無料体験
  ****************************************************/    
  /* 無料体験用ボックス */
  #page .trial_point_list {
    margin-bottom: 3rem;
  }
  #page .trial_point_list .list {
    position: relative;
    padding-left: 2em;
    padding-bottom: .5em;
    font-size: 1.8rem;
    font-style: italic;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--text-color);
    box-sizing: border-box;
  }
  #page .trial_point_list .list:nth-child(n+2) {
    margin-top: .5em;
  }
  #page .trial_point_list .list:after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1.5em;
    height: 1.5em;
    margin-top: -1em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }  
  #page .trial_comment {
    text-align: center;
  }
  #page .trial_comment *:last-child {
    margin-bottom: 0;
  }
  #page .trial_comment .comment_box {
    margin-bottom: 3rem;
  }
  #page .trial_comment p:nth-child(n+2) {
    margin-top: 1em;
  }
  #page .trial_comment .message {
    margin-bottom: 1.2em;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
  }
  #page .trial_comment .comment {
    margin-bottom: 1.2em;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
  }
  #page .trial_comment .title {
    margin-bottom: 1.2em;    
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
    font-style: italic;
    line-height: 1.5;
  }  
  #page .trial_comment .title span {
    position: relative;
    display: inline-block;
    padding: 0 .6em .3em; 
  }
  #page .trial_comment .title span:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--main-color);
  }
  #page .trial_comment .memo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: var(--text-weight-bold);
  }
  #page .trial_comment .memo span {
    width: 100%;
  }
  #page .trial_comment .image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
  /* 画像リスト */
  #page .image_list .list {
    text-align: center;
  }
  #page .image_list .list img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  /* お問い合わせバナー */
  #page .contact_box {
    margin-bottom: 3rem;
  }
  #page .contact_box p {
    margin-bottom: 1.2em;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
  }
  #page .contact_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #page .contact_list .list {
    width: calc(50% - 5px);
    margin-left: 10px;
  }
  #page .contact_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #page .contact_list .list:nth-child(n+3) {
    margin-top: 10px;
  }
  #page .contact_list .list a.btn {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
    color: var(--white);
    text-align: center;
    font-weight: var(--text-weight-black);
    line-height: 1.5;
    background: var(--text-color);
  }
  #page .contact_list .list a.btn:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .03);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }  
  #page .contact_list .list a.btn.contact {
    background: var(--main-color);
  }  
  #page .contact_list .list a.btn.line {
    background: #00b900;
  }
  /* お悩み */
  #page .worry_list {
    margin-bottom: 1.2em;
  }
  #page .worry_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5em 1em;
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1.5;
    background: var(--bg-high-color);
    box-sizing: border-box;
  }
  #page .worry_list li:nth-child(n+2) {
    margin-top: 1rem;
  }
  #page .worry_list li br {
    display: none;
  }
  #page .worry_list li span {}
  /* チェックマークリスト */  
  #page .check_list {
    margin-bottom: 1.2em;
  }
  #page .check_list li {
    position: relative;
    padding: .6em 0;
    padding-left: 1.5em;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
  }
  #page .check_list li:first-child {
    border-top: 1px solid var(--border-color);
  }
  #page .check_list li:before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    line-height: 1;
    background: url(/wp-content/uploads/images/icon_check_red.webp) center center no-repeat;
    background-size: contain;
  }
  /* クラスリスト */  
  #page .class_list {
    margin-bottom: 3rem;
  }
  #page .class_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #page .class_list .list .title {
    display: flex;
    flex-direction :column;
    justify-content: center;
    align-items: center;
    padding: .6em 0;
    margin-bottom: 1.2em;
    color: var(--white);
    text-align: center;    
    background: var(--main-color);
  }
  #page .class_list .list .title span.class {
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  /* 安心な理由 */  
  #page .reason_list {}
  #page .reason_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #page .reason_list .list .image {
    margin-bottom: 1.2em;
  }
  #page .reason_list .list .title {
    margin-bottom: .6em;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  /* レッスンの流れ */
  #page .step_list {
    margin-bottom: 3rem;
  }
  #page .step_list .list {
    position: relative;
    padding: 3em;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .step_list .list:nth-child(n+2) {
    margin-top: 3rem;
  }
  #page .step_list .list:nth-child(n+2):before {
    position: absolute;
    top: -30px;
    left: 50%;
    content: "\f063";
    font-family: "FontAwesome";    
    margin-left: -15px;
    width: 30px;
    height: 30px;
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    line-height: 30px;      
  }
  #page .step_list .list .title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: .6em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #page .step_list .list .title .number {
    color: var(--main-color);
    font-weight: var(--text-weight-black);    
  }
  #page .step_list .list .title .jap:before {
    content: "|";
    margin: 0 .5em;
  }
  #page .step_list .list .comment {
    line-height: 1.5;
    font-weight: var(--text-weight-bold);
  }
  /* 持ち物 */
  #page .bring_box {
    padding: 3rem 1.5rem;
    background: var(--bg-high-color);
  }
  #page .bring_box .title {
    margin-bottom: .6em;
    font-size: 1.5rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
  }
  #page .bring_list {}
  #page .bring_list li {
    padding: .6em;
    font-weight: var(--text-weight-bold);
    border-bottom: 1px solid var(--border-color);
  }
  /****************************************************
  サービス
  ****************************************************/    
  #page .service_box {
    margin-bottom: 5rem;
  }
  #page .service_image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 .8em .8em -.6em rgba(0,0,0,.3);    
    box-sizing: border-box;
  }
  #page .price_table {
    width: 100%;
    margin-bottom: 1.2em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);    
    box-sizing: border-box;
  }
  #page .price_table th,
  #page .price_table td {
    display: block;
    width: 100%;
    padding: 1.2em;
    vertical-align: middle;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .price_table th {
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
    background: var(--bg-high-color);
  }
  #page .price_table td span {
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  #page .price_table_b {
    width: 100%;
    margin-bottom: 1.2em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page .price_table_b th,
  #page .price_table_b td {
    padding: 1.2em 0;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #page .price_table_b th {
    background: var(--bg-high-color);
  }
  #page .price_table_b td span {
    font-weight: var(--text-weight-bold);
  }
  #page .price_table_b td span.red {
    color: var(--main-color);
  }  
  #page .service_table {
    width: 100%;
    table-layout: fixed;
    margin-bottom: 1.2em;
    line-height: 1.5;
    border-top: 1px solid var(--border-color);
  }
  #page .service_table th,
  #page .service_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  #page .service_table th {
    padding: 1.2em 1.2em .6em;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  #page .service_table td {
    padding: .6em 1.2em 1.2em;
    border-bottom: 1px solid var(--border-color);
  }
  #page .service_table td span {
    font-weight: var(--text-weight-bold);
  }  
} 
/******************************************************
一覧ページ
******************************************************/
@media screen and (min-width:1025px) {
  /****************************************************
  トピックス
  ****************************************************/  
  /* カテゴリー */
  #page .category_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5rem;
  }
  #page .category_list .list:nth-child(n+2) {
    margin-left: .6em;
  }
  #page .category_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em 2em;
    color: var(--text-color);
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;  
  }
  #page .category_list .list a.is-active,
  #page .category_list .list a:hover {
    color: var(--white);
    border-color: var(--main-color);
    background: var(--main-color);          
  }
  /* 一覧 */
  #page .topics_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #page .topics_list .list {
    width: calc((100% / 4) - 22.5px);
    margin-left: 30px;
  }
  #page .topics_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #page .topics_list .list:nth-child(n+5) {
    margin-top: 30px;
  }
  #page .topics_list .list a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
  }  
  #page .topics_list .list .image {
    position: relative;
    margin-bottom: 1em;
  }
  #page .topics_list .list .image img {
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: var(--bg-high-color);
  }
  #page .topics_list .list .image span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 1em;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    background: var(--main-color);
  }
  #page .topics_list .list .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }    
  /****************************************************
  コーチ紹介
  ****************************************************/
  #page .coach_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #page .coach_list .list {
    width: calc((100% / 4) - 15px);
    margin-left: 20px;
  }
  #page .coach_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #page .coach_list .list:nth-child(n+5) {
    margin-top: 20px;
  }
  #page .coach_list .list a {
    position: relative;
    display: block;
    padding: 3rem;
    color: var(--text-color);
    text-decoration: none;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
    border: 1px solid var(--border-color);
    box-sizing: border-box;
  }  
  #page .coach_list .list a:after {
    display: block;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--main-color);
    border-right: 0;             
  }
  #page .coach_list .list a:hover {
    background: var(--bg-high-color);
  }
  #page .coach_list .list .image {
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 50%;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;    
  }
  #page .coach_list .list .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);
  }
  #page .coach_list .list .title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
  }
  #page .coach_list .list .title .name {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }  
  /* コーチ紹介（指導実績） */
  #page .coaching_list {
    display: flex;
    flex-wrap: wrap;
  }
  #page .coaching_list li {
    margin-right: .5em;
    margin-bottom: .5em!important;
    padding: 1em;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    background: var(--white);
  }
  /****************************************************
  保護者の声
  ****************************************************/  
  /* 保護者の声　切り替えボタン */
  #page .voice_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 5rem;
  }
  #page .voice_btn .btn {
    margin: 0 .3em .6em;
    padding: 1em 2em;
    line-height: 1;
    border-radius: 1.5em;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
    box-sizing: border-box;
  }
  #page .voice_btn .btn:hover,
  #page .voice_btn .btn.active {
    color: var(--white);
    border-color: var(--main-color);
    background: var(--main-color);
  }
  #page .voice_list {
    margin-bottom: 5rem;
  }
  #page .voice_list .list {
    display: none;
    box-sizing: border-box;
  }  
  #page .voice_list .list.active {
    display: block;
  }
  /* タイトルエリア */
  #page .voice_list .list .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
  }  
  #page .voice_list .list .heading .image {
    width: 120px;
    margin-right: 30px;
  }  
  #page .voice_list .list .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #page .voice_list .list .heading .title {
    width: calc(100% - 150px);
  }
  #page .voice_list .list .heading .name span {
    margin-right: .5em;
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }  
  #page .voice_list .list .heading .name span {
    color: var(--main-color);
  }
  #page .voice_list .list .heading .message {
    font-size: 1.8rem;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: left;
  }  
  /****************************************************
  スクール会場
  ****************************************************/
  #page .school_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  #page .school_list .list {
    width: calc((100% / 4) - 15px);
    margin-left: 20px;
  }
  #page .school_list .list:nth-child(4n+1) {
    margin-left: 0;
  }
  #page .school_list .list:nth-child(n+5) {
    margin-top: 20px;
  }
  #page .school_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--text-color);
    font-weight: var(--text-weight-bold);
    line-height: 1;
    text-decoration: none;
    background: var(--bg-high-color);
    object-fit: cover;
    aspect-ratio: 3 / 1;
    border: 1px solid var(--border-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .school_list .list a:hover {
    color: var(--white);
    background: var(--main-color);
    border-color: var(--main-color);
  }  
  /****************************************************
  サイトマップ
  ****************************************************/   
  #page .sitemap_list .list {
    border-bottom: 1px solid var(--border-color);
  }
  #page .sitemap_list a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.2em;
    color: var(--text-color);
    text-decoration: none;
  }
  #page .sitemap_list a:after {
    position: absolute;
    top: 50%;
    right: 1.2em;
    margin-top: -.5em;
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: normal;
    line-height: 1;       
  }
}
@media screen and (max-width:1024px) {
  /****************************************************
  トピックス
  ****************************************************/  
  /* カテゴリー */
  #page .category_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #page .category_list .list:nth-child(n+2) {
    margin-left: .6em;
  }
  #page .category_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5em 1em;
    color: var(--text-color);
    font-weight: var(--text-weight-bold);
    text-align: center;
    line-height: 1;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;  
  }
  #page .category_list .list a.is-active,
  #page .category_list .list a:hover {
    color: var(--white);
    border-color: var(--main-color);
    background: var(--main-color);          
  }
  /* 一覧 */
  #page .topics_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  #page .topics_list .list {
    width: calc((100% / 2) - 3px);
    margin-left: 6px;
  }
  #page .topics_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #page .topics_list .list:nth-child(n+3) {
    margin-top: 24px;
  }
  #page .topics_list .list a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
  }  
  #page .topics_list .list .image {
    position: relative;
    margin-bottom: 1em;
  }
  #page .topics_list .list .image img {
    box-sizing: border-box;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: var(--bg-high-color);
  }
  #page .topics_list .list .image span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 1em;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    line-height: 1;
    background: var(--main-color);
  }
  #page .topics_list .list .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }    
  /****************************************************
  コーチ紹介
  ****************************************************/
  #page .coach_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  #page .coach_list .list {
    width: calc((100% / 2) - 3px);
    margin-left: 6px;
  }
  #page .coach_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #page .coach_list .list:nth-child(n+3) {
    margin-top: 6px;
  }
  #page .coach_list .list a {
    position: relative;
    display: block;
    padding: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
  }
  #page .coach_list .list a:after {
    display: block;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    content: "";
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid var(--main-color);
    border-right: 0;
  }
  #page .coach_list .list .image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;
  }
  #page .coach_list .list .image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);
  }
  #page .coach_list .list .title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
  }
  #page .coach_list .list .title .name {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }  
  /* コーチ紹介（指導実績） */
  #page .coaching_list {}
  #page .coaching_list li {
    padding: 1em;
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    background: var(--white);
  }
  #page .coaching_list li:nth-child(n+2) {
    margin-top: 1rem;
  }
  /****************************************************
  保護者の声
  ****************************************************/  
  /* 保護者の声　切り替えボタン */
  #page .voice_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #page .voice_btn .btn {
    width: calc((100% / 3) - 4px);
    margin-left: 6px;
    padding: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 1.5em;
    border: 1px solid var(--border-color);
    background: var(--bg-high-color);
    cursor: pointer;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;     
    box-sizing: border-box;
  }
  #page .voice_btn .btn:nth-child(3n+1) {
    margin-left: 0;
  }
  #page .voice_btn .btn:nth-child(n+4) {
    margin-top: 6px;
  }
  #page .voice_btn .btn:hover,
  #page .voice_btn .btn.active {
    color: var(--white);
    border-color: var(--main-color);
    background: var(--main-color);
  }
  #page .voice_list {
    margin-bottom: 3rem;
  }
  #page .voice_list .list {
    display: none;
    box-sizing: border-box;
  }  
  #page .voice_list .list.active {
    display: block;
  }
  /* タイトルエリア */
  #page .voice_list .list .heading {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
  }  
  #page .voice_list .list .heading .image {
    width: 90px;
    margin-bottom: 1em;
  }  
  #page .voice_list .list .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #page .voice_list .list .heading .title {
    text-align: center;
  }
  #page .voice_list .list .heading .name span {
    margin-right: .5em;
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }  
  #page .voice_list .list .heading .name span {
    color: var(--main-color);
  }  
  
  #page .voice_list .list .heading .message {
    font-weight: var(--text-weight-bold);
    line-height: 1.5;
    text-align: left;
  }  
  /****************************************************
  スクール会場
  ****************************************************/
  #page .school_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  #page .school_list .list {
    width: calc((100% / 2) - 5px);
    margin-left: 10px;
  }
  #page .school_list .list:nth-child(2n+1) {
    margin-left: 0;
  }
  #page .school_list .list:nth-child(n+3) {
    margin-top: 10px;
  }
  #page .school_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--text-color);
    font-weight: var(--text-weight-bold);
    line-height: 1;
    text-decoration: none;
    background: var(--bg-high-color);
    object-fit: cover;
    aspect-ratio: 3 / 1;
    border: 1px solid var(--border-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
  }
  #page .school_list .list a:hover {
    color: var(--white);
    background: var(--main-color);
    border-color: var(--main-color);
  }  
  /****************************************************
  サイトマップ
  ****************************************************/   
  #page .sitemap_list .list {
    border-bottom: 1px solid var(--border-color);
  }
  #page .sitemap_list a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.2em;
    color: var(--text-color);
    text-decoration: none;
  }
  #page .sitemap_list a:after {
    position: absolute;
    top: 50%;
    right: 1.2em;
    margin-top: -.5em;
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: normal;
    line-height: 1;       
  }  
}
/******************************************************
記事ページ
******************************************************/
@media screen and (min-width:1025px) {
  /****************************************************
  トピックス
  ****************************************************/
  #post {
    padding: 8rem;
    border: 1px solid var(--border-color);    
  }
  /* 記事タイトル、日付 */
  #post_data {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
  }
  #post_data .title {
    font-size: 3.6rem;
    font-weight: var(--text-weight-bold);
  }
  #post_data .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
  /* 本文 */
  #post_contents * {
    margin-bottom: 1.2em;
  }
  #post_contents *:last-child {
    margin-bottom: 0;
  }
  #post_contents h1,
  #post_contents h2,
  #post_contents h3,
  #post_contents h4,
  #post_contents h5 {
    font-weight: var(--text-weight-bold);
  }
  #post_contents h1 {
    font-size: 1.5em;
  }
  #post_contents h2 {
    font-size: 1.4em;
  }
  #post_contents h3 {
    font-size: 1.3em;
  }
  #post_contents h4 {
    font-size: 1.2em;
  }
  #post_contents h5 {
    font-size: 1.1em;
  }  
  #post_contents strong {
    font-weight: var(--text-weight-bold);
  }
  #post_contents em {
    font-style: italic;
  }  
  #post_contents ul li,
  #post_contents ol li {
    position: relative;
    padding-left: 1.5em;
  }
  #post_contents ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #post_contents ol li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
  #post_contents ol li:nth-child(1):before {content:"1"}
  #post_contents ol li:nth-child(2):before {content:"2"}
  #post_contents ol li:nth-child(3):before {content:"3"}
  #post_contents ol li:nth-child(4):before {content:"4"}
  #post_contents ol li:nth-child(5):before {content:"5"}
  #post_contents ol li:nth-child(6):before {content:"6"}
  #post_contents ol li:nth-child(7):before {content:"7"}
  #post_contents ol li:nth-child(8):before {content:"8"}
  #post_contents ol li:nth-child(9):before {content:"9"}
  #post_contents ol li:nth-child(10):before {content:"10"}   
  #post_contents blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
  }
  #post_contents blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: "FontAwesome";
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
  }
  #post_contents blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
  }
  #post_contents blockquote cite {
    display: block;
    text-align: right;
    color: #808080;
    font-size: 0.9em;
  }
  #post_contents a:not([class]) {
    color: var(--main-color);
    text-decoration: underline;
  }
  #post_contents a:not([class]):hover {
    text-decoration: none;
  }      
  /* 大会案内用 */
  #post_contents .competition .c_box {
    margin-bottom: 5rem;
  }
  #post_contents .competition h2,
  #post_contents .competition h3,
  #post_contents .competition h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
  }
  #post_contents .competition h2 {
    margin-bottom: 1em;
    padding: .6em 1.2em;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    background: var(--main-color);
  }
  #post_contents .competition h3 {
    margin-bottom: 1em;
    padding: .6em 1.2em;
    font-weight: var(--text-weight-bold);
    background: var(--bg-high-color);
  }
  #post_contents .competition p {
    margin: 1em 0;
  }
  #post_contents .competition table {
    width: 100%;
    margin: 1em 0;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #post_contents .competition th,
  #post_contents .competition td {
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #post_contents .competition th {
    width: 25%;
    font-weight: var(--text-weight-bold);
    vertical-align: middle;
    background: var(--bg-high-color);
  }
  #post_contents .competition ul {
    margin: 1em 0;
  }
  #post_contents .competition .c_btn a {
    position: relative;
    display: inline-block;
    width: 300px;
    line-height: 6rem;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #post_contents .competition .c_btn a:after {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    font-weight: normal;
    line-height: 1;    
  }
  #post_contents .competition .c_btn a:hover {
    opacity: .7;
  }    
  /****************************************************
  コーチ紹介
  ****************************************************/  
  #page .coach_flex_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
  }  
  #page .coach_flex_box .flex_image {
    width: 360px;    
    margin: 0 auto 3rem;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;  
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;  
  }
  #page .coach_flex_box .flex_image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);    
  }  
  #page .coach_flex_box .flex_comment {
    width: calc(100% - 420px);
  }
  #page .coach_flex_box table.coach_data {
    width: 100%;
    table-layout: fixed;
  }
  #page .coach_flex_box table.coach_data th,
  #page .coach_flex_box table.coach_data td {
    padding: 1em;
  }
  #page .coach_flex_box table.coach_data th {
    width: 20%;
    font-weight: var(--text-weight-bold);
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-high-color);
  }
  #page .coach_flex_box table.coach_data tr:nth-child(1) th {
    border-top: 1px solid var(--border-color);
  }
  #page .coach_flex_box table.coach_data td {
    border-bottom: 1px solid var(--border-color);
  }
  #page .coach_flex_box table.coach_data tr:nth-child(1) td {
    border-top: 1px solid var(--border-color);
  }  
  #page .coach_flex_box table.coach_data .coach_name span {
    font-weight: var(--text-weight-bold);
  }
  #page .coach_flex_box table.coach_data .coach_career span:nth-child(n+2):before {
    content: "/";
    margin: 0 1em;    
  }  
  /****************************************************
  保護者の声　※記事ページなし
  ****************************************************/
  /****************************************************
  スクール会場
  ****************************************************/
  /* 日程 */
  #page table.school_schedule {
    width: 100%;
    margin-bottom: 1em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page table.school_schedule th,
  #page table.school_schedule td {
    padding: 1em;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page table.school_schedule th {
    background: var(--bg-high-color);
  }
  #page table.school_schedule span {
    color: var(--main-color);
  }  
  /* クラスのご案内 */
  #page .school_access {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }
  #page .school_class_list {
    display: flex;
    width: 100%;
  }
  #page .school_class_list .list {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
  }
  #page .school_class_list .list:nth-child(1) {
    border-left: 1px solid var(--border-color);
  }
  #page .school_class_list .list .title {
    padding: 1em;
    line-height: 1.5;
    background: var(--bg-high-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page .school_class_list .list .title span {
    font-weight: var(--text-weight-bold);
  }
  #page .school_class_list .list .time {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    line-height: 1.35;
    text-align: center;
  }  
  /* お知らせ */
  #page ul.school_information li {
    padding: 1em;
    border-bottom: 1px dotted var(--border-color);
  }
  #page ul.school_information li:first-child {
    border-top: 1px dotted var(--border-color);
  }
  #page ul.school_information li .comment {
    position: relative;
    padding-left: 2em;
  }
  #page ul.school_information li .comment:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "●";
    color: var(--main-color);
  }
  

  

  
}
@media screen and (max-width:1024px) {
  /****************************************************
  トピックス
  ****************************************************/
  #post {
    padding: 3rem 1.5rem;
    border: 1px solid var(--border-color);    
  }
  /* 記事タイトル、日付 */
  #post_data {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
  }
  #post_data .title {
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
  }
  #post_data .time {
    color: var(--main-color);
    font-weight: var(--text-weight-bold);
  }
  /* 本文 */
  #post_contents * {
    margin-bottom: 1.2em;
  }
  #post_contents *:last-child {
    margin-bottom: 0;
  }
  #post_contents h1,
  #post_contents h2,
  #post_contents h3,
  #post_contents h4,
  #post_contents h5 {
    font-weight: var(--text-weight-bold);
  }
  #post_contents h1 {
    font-size: 1.5em;
  }
  #post_contents h2 {
    font-size: 1.4em;
  }
  #post_contents h3 {
    font-size: 1.3em;
  }
  #post_contents h4 {
    font-size: 1.2em;
  }
  #post_contents h5 {
    font-size: 1.1em;
  }  
  #post_contents strong {
    font-weight: var(--text-weight-bold);
  }
  #post_contents em {
    font-style: italic;
  }  
  #post_contents ul li,
  #post_contents ol li {
    position: relative;
    padding-left: 1.5em;
  }
  #post_contents ul li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
  }
  #post_contents ol li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
  #post_contents ol li:nth-child(1):before {content:"1"}
  #post_contents ol li:nth-child(2):before {content:"2"}
  #post_contents ol li:nth-child(3):before {content:"3"}
  #post_contents ol li:nth-child(4):before {content:"4"}
  #post_contents ol li:nth-child(5):before {content:"5"}
  #post_contents ol li:nth-child(6):before {content:"6"}
  #post_contents ol li:nth-child(7):before {content:"7"}
  #post_contents ol li:nth-child(8):before {content:"8"}
  #post_contents ol li:nth-child(9):before {content:"9"}
  #post_contents ol li:nth-child(10):before {content:"10"}   
  #post_contents blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
  }
  #post_contents blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: "FontAwesome";
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
  }
  #post_contents blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
  }
  #post_contents blockquote cite {
    display: block;
    text-align: right;
    color: #808080;
    font-size: 0.9em;
  }
  #post_contents a:not([class]) {
    color: var(--main-color);
    text-decoration: underline;
  }
  #post_contents a:not([class]):hover {
    text-decoration: none;
  }      
  /* 大会案内用 */
  #post_contents .competition .c_box {
    margin-bottom: 3rem;
  }
  #post_contents .competition h2,
  #post_contents .competition h3,
  #post_contents .competition h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
  }
  #post_contents .competition h2 {
    margin-bottom: 1em;
    padding: .6em 1.2em;
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--text-weight-bold);
    background: var(--main-color);
  }
  #post_contents .competition h3 {
    margin-bottom: 1em;
    padding: .6em 1.2em;
    font-weight: var(--text-weight-bold);
    background: var(--bg-high-color);
  }
  #post_contents .competition p {
    margin: 1em 0;
  }
  #post_contents .competition table {
    width: 100%;
    margin: 1em 0;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #post_contents .competition th,
  #post_contents .competition td {
    padding: .8em;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #post_contents .competition th {
    width: 25%;
    font-weight: var(--text-weight-bold);
    vertical-align: middle;
    background: var(--bg-high-color);
  }
  #post_contents .competition ul {
    margin: 1em 0;
  }
  #post_contents .competition .c_btn a {
    position: relative;
    display: inline-block;
    width: 240px;
    line-height: 5rem;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background: var(--main-color);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;    
  }
  #post_contents .competition .c_btn a:after {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    top: 50%;
    right: 1em;
    margin-top: -.5em;
    font-weight: normal;
    line-height: 1;    
  }
  #post_contents .competition .c_btn a:hover {
    opacity: .7;
  }    
  /****************************************************
  コーチ紹介
  ****************************************************/  
  #page .coach_flex_box {
    margin-bottom: 3rem;
  }
  #page .coach_flex_box .flex_image {
    width: 65%;
    max-width: 480px;    
    margin: 0 auto 3rem;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;  
    background: var(--bg-high-color) url(/wp-content/uploads/images/bg_mark.webp) top center no-repeat;
    background-size: cover;  
  }
  #page .coach_flex_box .flex_image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 0 0;
    border: 1px solid var(--bg_high-color);    
  }
  #page .coach_flex_box .flex_comment {}
  #page .coach_flex_box table.coach_data {
    width: 100%;
    table-layout: fixed;
  }
  #page .coach_flex_box table.coach_data th,
  #page .coach_flex_box table.coach_data td {
    padding: .5em;
    box-sizing: border-box;
  }
  #page .coach_flex_box table.coach_data th {
    width: 25%;
    font-weight: var(--text-weight-bold);
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
  }
  #page .coach_flex_box table.coach_data tr:nth-child(1) th {
    border-top: 1px solid var(--border-color);
  }
  #page .coach_flex_box table.coach_data td {
    border-bottom: 1px solid var(--border-color);
  }
  #page .coach_flex_box table.coach_data tr:nth-child(1) td {
    border-top: 1px solid var(--border-color);
  }  
  #page .coach_flex_box table.coach_data .coach_name span {
    font-weight: var(--text-weight-bold);
  }
  #page .coach_flex_box table.coach_data .coach_career span:nth-child(n+2):before {
    content: "/";
    margin: 0 1em;    
  }  
  /****************************************************
  保護者の声　※記事ページなし
  ****************************************************/
  /****************************************************
  スクール会場
  ****************************************************/
  /* 日程 */
  #page table.school_schedule {
    width: 100%;
    margin-bottom: 1em;
    table-layout: fixed;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
  }
  #page table.school_schedule th,
  #page table.school_schedule td {
    padding: .5em;
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  #page table.school_schedule th {
    background: var(--bg-high-color);
  }
  #page table.school_schedule span {
    color: var(--main-color);
  }  
  /* クラスのご案内 */
  #page .school_access {
    font-size: 1.2em;
    font-weight: var(--text-weight-bold);
  }  
  #page .school_class_list {
    width: 100%;
    border: 1px solid var(--border-color);
  }
  #page .school_class_list .list {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  #page .school_class_list .list:nth-child(n+2) {
    border-top: 1px solid var(--border-color);
  }
  #page .school_class_list .list .title {
    width: 50%;
    padding: .5em;
    line-height: 1.5;
    background: var(--bg-high-color);
    box-sizing: border-box;
  }
  #page .school_class_list .list .title span {
    font-weight: var(--text-weight-bold);
  }
  #page .school_class_list .list .time {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5em;
    text-align: center;
    line-height: 1.35;
    border-left: 1px solid var(--border-color);
    box-sizing: border-box;
  }  
  /* お知らせ */
  #page ul.school_information li {
    padding: 1em;
    border-bottom: 1px dotted var(--border-color);
  }
  #page ul.school_information li:first-child {
    border-top: 1px dotted var(--border-color);
  }
  #page ul.school_information li .comment {
    position: relative;
    padding-left: 2em;
  }
  #page ul.school_information li .comment:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "●";
    color: var(--main-color);
  }
  

  

  
}