@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; /* テキストカラー（通常） */
  --text-high-color: #fff; /* テキストカラー（背景あり） */
  --border-color: #ccc; /* 線の色 */
  --text-space: 0; /* フォントの間隔 */
  --text-weight: 500; /* フォントの太さ */
  --text-weight-bold: 600; /* フォント（太字）の太さ */
  --text-weight-black: 900; /* フォント（超太字）の太さ */
  --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: normal;
}
dl, dt, dd {
  margin: 0;
  padding: 0;
}
p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul, ol {
  text-align: left;
}
img {
  max-width: 100%;
	height: auto;
  vertical-align: middle;
}
a {
  color: var(--text-color);
  text-decoration: none;
  vertical-align: baseline;
  border:　none;
  outline:　none;
}
span {
  vertical-align: baseline;
}
*:focus {
  outline: none;
}
/******************************************************
animate.css カスタマイズ
******************************************************/
/******************************************************
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;
  }
}
/******************************************************
ヘッダー
******************************************************/
@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: 101;
    -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;
  }
  /* ハンバーガーメニュー */
  #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: 15px;
    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: 25px;
  }
  #h_toggle_btn .btn span:nth-child(2) {
    top: 35px;
  }
  #h_toggle_btn .btn span:nth-child(3) {
    top: 45px;
  }
  #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%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: 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 .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    z-index: 1000;    
  }
  
  #h_nav.on {
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }  
  
  
  /* フローティングボタン */
  #fix_btn_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 100;
  }
  #fix_btn_list.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
  }
  #fix_btn_list .list {
    width: 50%;
  }
  #fix_btn_list .list a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 6rem;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    font-weight: var(--text-weight-bold);
    background: #303030;
  }
  #fix_btn_list .list a.contact {
    background: #f90;
  }
  #fix_btn_list .list a.experience {
    background: #e60012;
  }  
  
}































/******************************************************
トップページ　共通パーツ
******************************************************/
@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 #303030;
    box-sizing: border-box;
  }
  .main_btn a:before {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    background: #303030;
    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: #303030;
  }
}
/******************************************************
トップページ　メインビジュアル
******************************************************/
@media screen and (max-width:1024px) {
  #top_main {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  #main_visual {
    position: relative;
  }
  #main_visual:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15));
  }
  #main_visual .image {
    width: 100%;
    height: 100vh;
  }
  #main_visual .image.image_a {
    background: url(/wp-content/uploads/images/main_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #main_visual .image.image_b {
    background: url(/wp-content/uploads/images/main_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #main_visual .image.image_c {
    background: url(/wp-content/uploads/images/main_img001.webp) top center no-repeat;
    background-size: cover;
  }
  #catch_area {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    padding: 12rem 0;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
  }
  #catch_copy {
    font-size: 5.6vw;
    line-height: 1.25;
    font-style: italic;
    font-weight: var(--text-weight-black);
     text-shadow: .1em .1em .15em rgba(0, 0, 0, 0.4);
  }
  #catch_copy span {
    font-size: 8vw;
  }
  #main_logo {
    width: 65%;
    margin: 0 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) top center no-repeat;
    background-size: cover;
  }
  #top_about .about_box .comment p span {
    font-weight: var(--text-weight-black);
  }
}
/******************************************************
トップページ　無料体験
******************************************************/
@media screen and (max-width:1024px) {
  .top_contact {
    padding: 5rem 0;
    background: var(--main-color) url(/wp-content/uploads/images/bg_contact.webp) top center no-repeat;
    background-size: cover;
  }
  .top_contact .contact_box {
    text-align: center;
  }
  .top_contact h2 {
    margin-bottom: 3rem;
    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) - 5px);
  }
  .top_contact .contact_btn .btn a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    color: #fff;
    font-weight: var(--text-weight-black);
    font-size: 1.5rem;
  }
  .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;
    z-index: 1;
  }
  .top_contact .contact_btn .btn a span:before {
    display: block;
    content: "";
    width: 1.6em;
    height: 1.6em;
    margin: 0 auto;
  }  
  .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) 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) 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;
  }
}
/******************************************************
トップページ　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) 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) 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;
  }
}
/******************************************************
トップページ　VOICE
******************************************************/
@media screen and (max-width:1024px) {
  #top_voice {
    padding: 5rem 0;
    background: var(--bg-high-color);
  }
  #top_voice .voice_list {
    margin-bottom: 3rem;
    margin-left: 1.5rem;
    display: flex;
  }
  #top_voice .voice_list .list {
    padding: 1.5rem;
    background: #fff;
  }
  #top_voice .voice_list .list:nth-child(n+2) {
    margin-left: 1.5rem;
  }
  #top_voice .voice_list .list .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
  }
  #top_voice .voice_list .list .heading .image {
    width: 5em;
    margin-right: 1em;
  }
  #top_voice .voice_list .list .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_voice .voice_list .list .heading .name {
    font-weight: var(--text-weight-black);
  }
  #top_voice .voice_list .list .heading .star {
    color: #f90;
  }
  #top_voice .voice_list .list .faq {
    position: relative;
    height: 75vw;
    overflow: hidden;
  }
  #top_voice .voice_list .list .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 .voice_list .list .faq dl:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_voice .voice_list .list .faq dt {
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
  #top_voice .voice_list .list .more {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    height: 3rem;
    text-align: center;
  }
  #top_voice .voice_list .list .more span:after {
    margin-left: 1em;
    content: "\f105";
    font-family: "FontAwesome";
  }
  #top_voice .voice_list .arrow {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid var(--border-color);
  }
  #top_voice .voice_list .prev {
    left: -1.5rem;
    background: #fff;
    background-size: contain;    
  }  
  #top_voice .voice_list .next {
    right: 0;
    background: #fff;
    background-size: contain;    
  }   
  #top_voice .voice_list .prev:before {
    position: absolute;
    top: 50%;
    left: 1rem;
    display: block;
    content: "";
    width: 6px;
    height: 1px;
    background: #303030;
    transform: rotate(-45deg);
    transform-origin: bottom left;
  }
  #top_voice .voice_list .prev:after {
    position: absolute;
    top: 50%;
    left: 1rem;
    display: block;
    content: "";
    width: 12px;
    height: 1px;
    background: #303030;
  }    

  #top_voice .voice_list .next:before {
    position: absolute;
    top: 50%;
    right: 1rem;
    display: block;
    content: "";
    width: 6px;
    height: 1px;
    background: #303030;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  #top_voice .voice_list .next:after {
    position: absolute;
    top: 50%;
    right: 1rem;
    display: block;
    content: "";
    width: 12px;
    height: 1px;
    background: #303030;
  }    
  
  #top_voice .voice_modal {
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 10000;
    visibility: hidden;
    webkit-transition: visibility 0 linear .4s, opacity .4s;
    -moz-transition: visibility 0 linear .4s, opacity .4s;
    transition: visibility 0 linear .4s, 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.active {
    visibility: visible;
  }
  #top_voice .voice_popup_list .list {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 6rem);
    height: calc(100vh - 6rem);
    margin: 3rem;
    padding: 1.5rem;
    background: #fff;
    box-sizing: border-box;

    display: none;
  }  
  #top_voice .voice_popup_list .list.active {
    display: block;
  }
  #top_voice .voice_popup_list .list.active {
    visibility: visible;
  }
  #top_voice .voice_popup_list .list .heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
  }
  #top_voice .voice_popup_list .list .heading .image {
    width: 5em;
    margin-right: 1em;
  }
  #top_voice .voice_popup_list .list .heading .image img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  #top_voice .voice_popup_list .list .heading .name {
    font-weight: var(--text-weight-black);
  }
  #top_voice .voice_popup_list .list .heading .star {
    color: #f90;
  }
  #top_voice .voice_popup_list .list .faq {
    position: relative;
  }
  #top_voice .voice_popup_list .list .faq dl:nth-child(n+2) {
    margin-top: 1.2em;
  }
  #top_voice .voice_popup_list .list .faq dt {
    font-size: 1.5rem;
    font-weight: var(--text-weight-bold);
  }
}
/******************************************************
トップページ　COACH
******************************************************/
@media screen and (max-width:1024px) {
  #top_coach {
    padding: 5rem 0;
    background: url(/wp-content/uploads/images/bg_coach.webp) top center no-repeat;
    background-size: 100% auto;
  }
  #top_coach .coach_box h2 {
    margin-bottom: -1em;
    margin-left: -.1em;
    color: #f90;
    font-size: 4rem;
    font-family: var(--alphabet);
    transform: rotate(-10deg);
    transform-origin: bottom left;
  }
  #top_coach .coach_box .image {
    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;
  }  
}
/******************************************************
トップページ　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);
  }
}
/******************************************************
トップページ　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 img {
    border: 1px solid var(--border-color);
    box-sizing: border-box;
  }
  #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;
  }
}
/******************************************************
フッター
******************************************************/
@media screen and (max-width:1024px) {
  #footer {
    margin-top: 6rem;
    background: #303030;
  }
  #footer,
  #footer a {
    color: #fff;
  }
  #f_inner {
    padding: 5rem 1.5rem;
  }
  #footer .f_flex_box .box:nth-child(n+2) {
    margin-top: 5rem;
  }
  #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: 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: 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);
  }
}