@charset "utf-8";

:root {
    --base-color: #FFFFFF;
    --text-color: #1E1F21;
} 


/* 要素全部にアウトライン（はみ出し確認用）*/
/* * {
    outline: 1px solid #eb5757; 
} */


/*--------------------------------
 全体
---------------------------------*/
html {
    /* スムーズスクロール ページ内移動をゆったりと*/
    scroll-behavior: smooth;
    /* ビヨヨン効果を無効化する */
    overscroll-behavior: none;
    /* font size 基準16px → 10px */
    /*font-size: 62.5%;   1rem=10px 16px*0.625=10px */
    overflow-x: hidden; /* はみ出す部分を非表示 */
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--base-color);
    /* background-color: #EEEEEE; */
    margin: 0;
    overflow-x: hidden; /* はみ出す部分を非表示 */

}
body * {
    box-sizing: border-box;

}
section {
    overflow: hidden; /* はみ出す部分を非表示 */
}

h2 {
    margin: 0;
}

p {
    line-break: anywhere;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:visited {
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    margin: 0;
}
ul li {
    list-style: none;
}


.sp {
    display: none;
}



/*--------------------------------
 共通パーツ
---------------------------------*/
section {
    position: relative;
}


/* ボタンアニメーション */
.kiran {
  border-radius: 40px;
  /* border: 1px solid transparent; */
  position: relative;
  overflow: hidden;
}
.kiran::before {
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 3s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
    z-index: 10;
}

@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/*--------------------------------
 header
---------------------------------*/

#header {
    width: 100%;
    position: fixed;
    top: 32px;
    left: 0;
    padding: 0 32px;
    z-index: 10;
}
.header_inner {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 4px 5px 4px 25px ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 42px; */
}


.header_logo {
    display: flex;
    gap: 8px;
}
.header_logo a {
    display: inline-block;
    padding-bottom: 4px;
}
.header_logo1 {
    width: 134px;
}
.header_logo2 {
    width: 222px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 42px;
}

.header_right ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header_right ul a {
    display: inline-block;
    padding-bottom: 4px;
}
.header_right ul .menu_about {
    width: 197px;
}
.header_right ul .menu_voice {
    width: 63px;
}
.header_right ul .menu_trainer {
    width: 51px;
}
.header_right ul .menu_future {
    width: 62px;
}

.header_right .cta_btn {
    width: 196px;
}

#header a:hover {
    opacity: 0.7;
}


/*--------------------------------
 fv
---------------------------------*/


.fv_cta {
    width: 29.4%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4.5%;
}
.fv_cta a {
    display: inline-block;
    position: relative;
    width: 100%;
}
.fv_cta a:hover {
    transform: scale(1.05);
}

.fv_cta2_box {
    position: relative;
}
.fv_kiran {
    position: absolute;
    left:0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/*--------------------------------
 about
---------------------------------*/
.about_videobox {
    width: 55%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2%;
}
.about_videobox video {
    width: 100%;
}
.about_video_btn {
    width: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
}

.about_video_btn.is-active {
  display: none;
}
.about_video_btn:hover {
    cursor: pointer;
}


.sec_05_slide {
    position: absolute;
    left: 0;
    top: 18%;
    width: 100%;
}

.swiper_slide01 .swiper-wrapper {
    transition-timing-function: linear;  /* 一定速度にする */
}

.swiper_slide01 .swiper-slide {
    width: 15%;
}



.sec_07_slide {
    position: absolute;
    left: 0;
    top: 31%;
    width: 100%;
}

.swiper_slide03 .swiper-wrapper {
    transition-timing-function: linear;  /* 一定速度にする */
}

.swiper_slide03 .swiper-slide {
    width: 25%;
}



.trainer_profile {
    background-image: url(../images/pc_009_2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 32px;
    padding-bottom: 60px;
}

.accordion_one {
    width: 83%;
    margin: 0 auto;
}

.accordion_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    background-color: #0c4a83;
    padding: 0 30px 0 16px;
}
.accordion_header p {
    font-size: 15px;
    font-weight: 700;
    color: #FFF;
    line-height: 1;
}

.accordion_header img {
    width: 13px;
    transition: all 0.3s ease-out;
    transform: rotate(180deg);
}

.accordion_header.open  img {
    transform: rotate(0deg);
}

.accordion_inner {
    /* PCはアコーディオンデフォクローズ */
    display: none; /* クローズ状態 */
    width: 100%;
}

.accordion_inner .box_one {
    height: auto;
}



.sec_11_slide {
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10%; */
    width: 100%;
    padding: 50px 0;
}

.swiper_slide04 {
    width: 85%;
    padding: 0 16px;
}
.swiper_slide04 .swiper-wrapper {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.swiper_slide04 .swiper-button-prev {
    left: 0;
    width: 32px;
}
.swiper_slide04 .swiper-button-next {
    right: 0;
    width: 32px;
}
.swiper_slide04 .swiper-button-prev::after,
.swiper_slide04 .swiper-button-next::after {
    content: none;
}
.swiper_slide04 .swiper-button-prev img,
.swiper_slide04 .swiper-button-next img {
    width: 100%;
}


footer {
    position: relative;
}
.footer_box1 {
    position: relative
}

.footer_cta {
    width: 29.4%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 53%;
}
.footer_cta a {
    display: inline-block;
    position: relative;
    width: 100%;
}
.footer_cta a:hover {
    transform: scale(1.05);
}

.footer_kiran {
    position: absolute;
    left:0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.footer_box2 {
    padding: 50px 0 16px;
}
.fooer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:20px;
    color: #6b6b6b;
    padding: 0 16px;
}
.fooer_menu_text {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 500;
}
.fooer_menu_line {
    width: 1px;
    height: 16px;
    background-color: #dbdbdb;
}



/*=====================================
 1180px以下
=====================================*/
@media screen and (max-width: 1180px) {
    #header {
        padding: 0 16px;
    }
    .header_inner {
        padding: 4px 5px 4px 24px ;
    }
    .header_logo {
        width: 177.6px; 
    }
    .header_right {
        gap: 24px;
    }
    .header_right ul {
        gap: 16px;
    }
    .header_right ul .menu_about {
        width: 157.6px;
    }
    .header_right ul .menu_voice {
        width: 50.4px;
    }
    .header_right ul .menu_trainer {
        width: 40.8px;
    }
    .header_right ul .menu_future {
        width: 49.6px;
    }
    .header_right .cta_btn {
        width: 156.8px;
    }
}



/*=====================================
 800px以下
=====================================*/
@media screen and (max-width: 800px) {
    .pc {
        display: none;
    }
    .sp {
        display: inline-block;

    }
    #header {
        display: none;
    }

    .fv_cta {
        width: 85%;
        bottom: 5%;
    }

    .header_logo_sp {
        width: 37.5%;
        position: absolute;
        top: 1.5%;
        left: 5%;
    }

    .about_videobox {
        width: 89%;
        bottom: 6%;
    }
    .about_video_btn {
        width: 15%;
    }
    .sec_05_slide {
        top: 24%;
    }
    .sec_05_slide.second {
        top: 58%;
    }
    .swiper_slide01 .swiper-slide {
        width: 41%;
    }
    .swiper_slide02 .swiper-wrapper {
        transition-timing-function: linear;  /* 一定速度にする */
    }
    .swiper_slide02 .swiper-slide {
        width: 41%;
    }

    .sec_07_slide {
        top: 10%;
    }
    .swiper_slide03 .swiper-slide {
        width: 83%;
    }

    .trainer_profile {
        background-image: url(../images/sp_009_2.png);
        padding-top: 0;
        padding-bottom: 30px;
    }
    .accordion_one {
        width: 89%;
    }
    .accordion_header {
        height: 30px;
        padding: 0 15px;
    }
    .accordion_inner {
        /* spはアコーディオンデフォクローズ */
        display: none; /* クローズ状態 */
    }

    .sec_11_slide {
        width: 100%;
        padding: 32px 0 50px;
    }
    .swiper_slide04 {
        width: 90%;
    }
    .swiper_slide04 .swiper-wrapper {
        align-items: flex-start;
    }

    #float {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 10;
        width: 100%;
    }

    footer {
        padding-bottom: 20%;
    }

    .footer_cta {
        width: 85%;
        bottom: 41%;
    }

    .footer_box2 {
        padding: 32px 0 16px;
    }

}

