@charset "UTF-8";

/********************************************************************************

common.css

********************************************************************************/
/*============================================================
 font読み込み
*============================================================*/
@font-face {
    font-family: "Noto Sans CJK JP";
    font-weight: 700;
    font-style: normal;
    src: local("Noto Sans CJK JP Bold"), url(../fonts/NotoSansCJKjp-Bold.429b1bb.woff) format("woff")
}

@font-face {
    font-family: "Noto Sans CJK JP";
    font-weight: 400;
    font-style: normal;
    src: local("Noto Sans CJK JP Regular"), url(/_nuxt/fonts/NotoSansCJKjp-Regular.f45ebed.woff) format("woff")
}

@font-face {
    font-family: "Noto Sans CJK JP";
    font-weight: 500;
    font-style: normal;
    src: local("Noto Sans CJK JP Medium"), url(/_nuxt/fonts/NotoSansCJKjp-Medium.dee55a0.woff) format("woff")
}

@font-face {
    font-family: "Axis Round Medium";
    font-style: normal;
    src: local("Axis Round Medium"), url(../fonts/AxisRound50StdN-M.ccd64a5.woff) format("woff")
}

@font-face {
    font-family: "Axis Round Bold";
    font-style: normal;
    src: local("Axis Round Bold"), url(../../fonts/AxisRound50StdN-B.07b6836.woff) format("woff")
}

/*============================================================
 css変数
*============================================================*/
:root {
    --common-vh: 100vh;
    /* jsで変動 */

    --common-inner-max-width: 1128px;
    /* 通常サイト幅 */
    --common-inner-max-width-wide: 1280px;
    /* ワイドサイト幅 */
    --common-inner-padding: 24px;
    /* 通常サイト幅内余白 */
    --common-inner-padding-wide: 24px;
    /* ワイドサイト幅内余白 */

    --common-color-text: #575757;
    /* 基本テキスト色 */
    --common-color-text2: #fff;
    /* 基本テキスト色 */
    --common-color-main: #39b280;
    /* メイン色 */
    --common-color-sub: #83e4de;
    /* サブ色 */
    --common-color-sub2: #bfda63;
    /* サブ色 */
    --common-color-background0: #fff;
    /* 背景色1 */
    --common-color-background1: #bfda63;
    /* 背景色1 */
    --common-color-background2: #f5f5f5;
    /* 背景色2 */
    --common-color-accent: #FAA43F;
    /* アクセント色 */
    --common-color-attention: #FF451D;
    /* 注意色 */

    /* --common-font-family: 'Noto Sans JP', sans-serif; */
    --common-font-family: "Hiragino Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    --common-font-family-en: 'Noto Sans JP', sans-serif;

    --common-header-height: 0;
    /* jsで変動 */
    --common-footer-height: 0;
    /* jsで変動 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: inherit;
}

.forSP {
    display: none;
}

.slick-slide img.forSP {
    display: none;
}

/*============================================================
 format
*============================================================*/
/* ベース
---------------------------------------- */
html {
    display: block;
    background-color: #fff;
}

body {
    width: 100%;
    font-family: var(--common-font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    color: var(--common-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 0 0 0;
}

*[data-font="en"] {
    font-family: var(--common-font-family-en);
}

/* レイアウト
---------------------------------------- */
#main-contents {
    width: 100%;
    padding-bottom: 64px;
    padding-top: 100px;
}

/* コンテンツ内
---------------------------------------- */
.section {
    margin-bottom: 64px;
}

.section:last-child {
    margin-bottom: 0;
}

.inner {
    width: 100%;
    max-width: var(--inner-max-width);
    padding: 0 var(--inner-padding);
    margin: 0 auto;
}

main .inner>*:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}

main .inner>*:last-child {
    margin-bottom: 0;
}

main .sec-block,
main .inner .sec-block {
    margin-bottom: 48px;
}

main .sec-block:last-child {
    margin-bottom: 0;
}

main .sec-block>*:not(h1, h2, h3, h4) {
    margin-bottom: 32px;
}

main .sec-block>*:last-child {
    margin-bottom: 0;
}

.page-group {
    font-weight: bold;
}

h1.page-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 160%;
}

h2.sec-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 160%;
    margin-bottom: 32px;
}

h3.block-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 160%;
    margin-bottom: 16px;
}

p {}

img {
    max-width: 100%;
    height: auto;
}

svg {
    max-width: 100%;
    height: auto;
}

span {
    font-weight: inherit;
}

a[href^="tel:"] {
    pointer-events: none;
}

strong {}

.attention {
    font-size: 12px;
    line-height: 160%;
    color: var(--common-color-attention);
}

.notice {
    font-size: 12px;
    line-height: 160%;
}

.list-date {
    font-size: 12px;
    line-height: 160%;
}

/*============================================================
 ページヘッダー(下層)
*============================================================*/
#page-header {
    height: 320px;
    background-color: var(--common-color-background0);
    padding-top: calc(var(--common-header-height) + 48px);
}

/*============================================================
 パンくずリスト
*============================================================*/
/* TOPページでは非表示
---------------------------------------- */
#page-top #breadcrumb {
    display: none;
}

/* 下層ページでは表示
---------------------------------------- */
#breadcrumb {
    margin: 16px 0 48px 0;
}

#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8px;
    font-size: 12px;
    line-height: 140%;
}

#breadcrumb li a {
    text-decoration-line: underline;
}

#breadcrumb li a::after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
}

/*============================================================
 ページネーション
*============================================================*/
.pagination .page-numbers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination .page-numbers li>* {
    display: block;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers li>a {
    /* background-color: #F5F5F5; */
    border-radius: 2px;
    border: 1px solid #575757;
    background: #FFF;
}

.pagination .page-numbers li>.current {
    font-weight: bold;
}

.pagination .page-numbers li> :is(.next, .prev) {}

/*============================================================
 コンテンツ共通
*============================================================*/
/* 共通ブロック(要素幅超スクロール)
---------------------------------------- */
.block-wscroll {
    width: calc(100vw - ((100vw - 100%) / 2));
    overflow-x: auto;
}

.block-wscroll .block-wscroll-inner {
    width: max-content;
    padding: 0 var(--inner-padding) 16px 0;
}

.block-wscroll .block-wscroll-inner>* {
    width: auto;
    white-space: nowrap;
}

/* 共通ブロック(カード)
---------------------------------------- */
.block-card {
    --gap: 32px;
    --col: 3;
    gap: var(--gap);
}

.block-card .item {
    display: block;
    width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}

.block-card .item .image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.block-card .item .image img {
    object-fit: cover;
    transform: scale(1);
    transition: .3s ease-in-out;
}

.block-card .item:hover .image img {
    transform: scale(1.2);
}

.block-card .item .info {
    padding: 16px;
}


/*============================================================
 モーダルカスタム(Modaal.js)
 ※z-index指定　ヘッダー < .modaal-overlay < .modaal-wrapper
*============================================================*/
.modaal-wrapper {
    z-index: 999999;
}

.modaal-overlay {
    z-index: 99999;
}


/*============================================================
 CTA お問い合わせ
*============================================================*/


/*============================================================
 システムエラー　404、500
*============================================================*/
#page-system-error #sec-system-error {
    height: max(600px, calc(var(--common-vh) - var(--common-footer-height) - 64px));
    padding: 200px 0 0 0;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
}

#page-system-error #sec-system-error .system-error-num {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 900;
    font-size: 120px;
    line-height: 100%;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-sts {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 180%;
    margin-bottom: 24px;
}

#page-system-error #sec-system-error .system-error-lead {
    margin-bottom: 56px;
}

#page-system-error #sec-system-error .parts-btn {
    margin: 0 auto;
}


/*============================================================
 footer
*============================================================*/
/* common
---------------------------------------- */
#site-footer {
    padding: 0;
    color: #fff;
}

#site-footer .site-image {
    text-align: center;
}

#site-footer .site-image img {
    width: 80%;
    position: relative;
    top: 10px;
}

#site-footer .footer-flex {
    background-color: var(--common-color-main);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 50px 75px;
}

#site-footer .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

#site-footer .footer-nav>li {
    margin-right: 30px;
    font-weight: 700;
}

#site-footer .footer-nav>li>a {
    font-size: 12px;
}

/* topのみ フローティングボタン分のpaddingを確保 */
#page-top #site-footer .footer-flex {
    padding: 50px 75px 220px 75px;
}

/* /experience & /contact & contact-confirm */
:is(#page-experience, #page-contact, #page-contact-confirm) #site-footer .site-image {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

:is(#page-experience, #page-contact, #page-contact-confirm) #site-footer .site-image img {
    width: 190px;
    transform: scaleX(-1);
    position: relative;
    top: 25px;
}

/* /experienceのみ */
#page-experience #site-footer .site-image {
    text-align: right;
}

/* Copyright
---------------------------------------- */
#site-footer #copyright {
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
}

/* biz-footer
---------------------------------------- */
#biz-footer {
    padding: 24px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 2.24px;
}

#biz-footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    max-width: 665px;
    margin: 0 auto;
    gap: 64px;
}
#biz-footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#biz-footer .footer-corp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

#biz-footer .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

#biz-footer #copyright {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    letter-spacing: 1.92px;
}


/*============================================================
 archive
*============================================================*/
#page-developer-list #sec-developer .inner {
    padding-top: 120px;
}

#page-developer-list :is(#sec-developer, #sec-trainer) .card {
    padding: 0 60px;
    position: relative;
}

#page-developer-list :is(#sec-developer, #sec-trainer) .card>* {
    position: relative;
    z-index: 1;
}

#page-developer-list :is(#sec-developer, #sec-trainer) .card-image {
    display: block;
    z-index: 2;
    margin: 0 auto;
    width: 45%;
}

#page-developer-list :is(#sec-developer, #sec-trainer) .card-name {
    color: var(--common-color-text);
    font-size: 28px;
    font-weight: 700;
    padding-top: 40px;
    padding-bottom: 20px;
}

#page-developer-list :is(#sec-developer, #sec-trainer) .card-content :is(h3, h4, h5, h6) {
    color: var(--common-color-text);
    font-size: 28px;
    font-weight: 700;
    padding-top: 40px;
    padding-bottom: 20px;
}




/*============================================================
 スクロール時のアニメーション
*============================================================*/
*[data-delay="0.2"] {
    transition-delay: 0.2s;
}

*[data-delay="0.4"] {
    transition-delay: 0.4s;
}

/* ふわっと表示 fade in
---------------------------------------- */
.js_fade-in-trigger {
    /* 最初は非表示 */
    transform: translateY(100px);
    opacity: 0;
    transition-duration: 1.1s;
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}

.js_is-fade-in {
    transform: translateX(0);
    opacity: 1;
}

/* 円が広がる expand
---------------------------------------- */
.js_expand-trigger {
    /* 最初は非表示 */
    transform: scale(0);
    opacity: 0;
    transition-duration: 1.1s;
    transition-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}

.js_is-expand {
    transform: scale(1);
    opacity: 1;
}


/*============================================================
 アコーディオン チラ見せパターン
*============================================================*/
.peek-accordion-text {}

/* ボタン */
.peek-accordion-btn {
    /* background-color: #6495ed;
    border: 1px solid #6495ed; */
    bottom: 0;
    color: var(--common-color-main);
    cursor: pointer;
    display: inline-block;
    left: 0;
    margin: auto;
    padding: 5px 15px;
    position: absolute;
    right: 0;
    text-align: center;
    transition: all .2s;
    width: fit-content;
    z-index: 10;
    font-size: 20px;
    font-weight: 700;
}

/* 続きを読むボタンの表記 */
.peek-accordion-btn::after {
    content: "＋続きを見る";
}

/* ボタンhover時のスタイル */
.peek-accordion-btn:hover {
    opacity: .7;
}

.peek-accordion-text {
    overflow: hidden;
    /* テキストを隠す */
    position: relative;
}

/* 最初に見えてるテキストエリアの高さ */
.peek-accordion-text.is-hide {
    height: 100px;
}

/* テキストをグラデーションで隠す */
.peek-accordion-text::before {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, .9) 50%, #fff 100%);
    bottom: 0;
    content: "";
    height: 100px;
    /* グラデーションで隠す高さ */
    position: absolute;
    width: 100%;
}

/* 閉じるボタンの位置 */
.peek-accordion-btn.is-show {
    bottom: -3em;
}

/* 閉じるボタンの表記 */
.peek-accordion-btn.is-show::after {
    content: "閉じる";
}

/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.peek-accordion-btn.is-show+.peek-accordion-text::before {
    display: none;
}

/* レイアウトの為のスタイル
  .accordion {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 300px;
  }
  .accordion:not(:first-of-type) {
    margin-bottom: 100px;
    margin-top: 100px;
  }
  .accordion-text p {
    line-height: 1.3;
  } */


/*============================================================
 利用規約 & プラポリ & 会員規約
*============================================================*/
:is(#page-terms, #page-privacy-policy) {
    letter-spacing: .05rem;
    color: #575757;
    font-weight: 500;
}

:is(#sec-terms, #sec-privacy-policy) p {
    line-height: 1.7;
}

:is(#sec-terms, #sec-privacy-policy) .inner {
    padding: 60px 60px 80px;
    width: 100%;
    max-width: 1040px;
}

:is(#sec-terms, #sec-privacy-policy) .sec-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 75px;
    font-size: 35px;
}

#sec-privacy-policy .privacy-content {
    line-height: 1.9;
}

#sec-privacy-policy .privacy-content .list-ul {
    padding-left: 1.5em;
    list-style: disc;
}

#sec-privacy-policy .privacy-content .list-ul li {
    list-style: disc;
}

#sec-privacy-policy .privacy-content .list-ol {
    padding-left: 1.5em;
    list-style: decimal;
}

#sec-privacy-policy .privacy-content .list-ol li {
    list-style: decimal;
}

/* #sec-privacy-policy .privacy-content .list-ol-brackets {
    padding-left: 1.5em;
    list-style: none;
    text-indent: -1.5em;
    counter-reset: ol-counter;
}
#sec-privacy-policy .privacy-content .list-ol-brackets li {
    counter-increment: ol-counter;
} */
#sec-privacy-policy .privacy-content h3 {
    font-size: 18px;
    font-weight: 700;
}

#sec-privacy-policy .privacy-content h4 {
    padding-left: 1em;
    text-indent: -1em;
    text-decoration: underline;
    line-height: 1.4;
}

#sec-privacy-policy .privacy-content h5 {}

#sec-privacy-policy .privacy-content .mb-2 {
    margin-bottom: 0.5rem;
}

#sec-privacy-policy .privacy-content .mb-3 {
    margin-bottom: 1rem;
}

#sec-privacy-policy .privacy-content .mb-4 {
    margin-bottom: 1.5rem;
}

#sec-privacy-policy .privacy-content .mb-5 {
    margin-bottom: 3rem;
}

#sec-privacy-policy .privacy-content .list-indent {
    padding-left: 1em;
    text-indent: -1em;
}

#sec-privacy-policy .privacy-content .list-ol-brackets {
    padding-left: 1.5em;
    list-style: none;
    text-indent: -1.5em;
    counter-reset: ol-counter;
}


#page-member-terms .color-green {
    /* color: #39B280; */
}


/*============================================================
カウンセリング申し込みフォーム  1.当日の流れ & 2.入力 & 3.完了 ページは
ヘッダーとフッターにメニューを表示しない
*============================================================*/
:is(#page-experience,#page-contact,#page-contact-confirm) .gnav .gnav-main .gnav-right {
    display: none;
}
:is(#page-experience,#page-contact,#page-contact-confirm) #site-footer .footer-nav {
    display: none;
}