@charset "UTF-8";
:root{
    --background: #fffcf4;
    --beige: #f4f1e9;
    --gray: #f1f1f1;
    --white: #fff;
    --black: #101010;
    --right-black: #333;
    --orange: #f36b30;
    --green: #45763c;
    --shadow: 1px 1px 2px rgba(51, 43, 43, 0.3);
}
* {
  box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
    font-size: 100%;
}
body{
    margin: 0;
    padding: 0;
    color: var(--right-black);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
}
.site-Container{
    overflow: hidden;
    background-color: var(--background);
}
a{
    text-decoration: none;
    padding: 6px;
}
img{
    max-width: 100%;
}
ul{
    padding-left: 0;
}
li{
    list-style: none;
}
p{
    margin: 0;
}
.wrapper{
    padding: 8%;
    margin: 0 auto;
}
.onlysp{
    display: none;
}
.onlypc{
    display: block;
}
.sectitle-Container{
    margin-bottom: 2rem;
}
.en-Title{
    color: var(--orange);
    font-size: 2.8rem;
    font-weight: 1000;
}
.sec-Title{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

/*=========== header ===========*/
#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 0.5rem 4%;
    margin: 1rem auto;
    border-radius: 10px;
    width: 92%;
    z-index: 10;
    box-shadow: 1px 1px 2px rgba(51, 43, 43, 0.3);
}
#site-Title{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}
#header .cta-Button{
    background-color: var(--orange);
    border-radius: 10rem;
    cursor: pointer;
    color: var(--white);
    display: block;
    padding: 0.8rem 3rem;
    transition: 0.5s ease;
}
#header .cta-Button:hover{
    background-color: var(--green);
}

/*=========== FV ===========*/
#fv.wrapper{
    padding: 4% 8%;
}
#fv{
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    background-image: url("../img/fv-bg.png");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}
#fv .fv-Subtitle{
    margin-bottom: 0.5rem;
}
#fv .fv-Titlesec{
    width: 100%;
    margin-bottom: 1rem;
}
#fv .fv-Maintitle{
    font-size: 1.8rem;
    font-weight: bolder;
}
#fv .sub .orange{
    color: var(--orange);
    font-size: 2.8rem;
    padding: 0 0.3rem;
}
#fv .main{
    font-size: 1.9rem;
    color: var(--orange);
}

/* image position */
#fv .position-Absolute{
    position: absolute;
    top: 1rem;
    right: 6%;
    width: 38%;
}
#fv .fv-explanation{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#fv .fv-explanation .text-Container{
    width: 45%;
}
#fv .fv-explanation .text-Container .title{
    padding-bottom: 0.5rem;
    border-bottom: 5px dotted var(--green);
    margin-bottom: 1.5rem;
}
#fv .fv-explanation .text-Container .text{
    font-size: 1rem;
    font-weight: normal;
}
#fv .fv-explanation img{
    width: 50%;
}

/*=========== 固定ボタン ===========*/
#fixed-Btn{
    position: fixed;
    right: 2rem;
    bottom: 3rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
}
#fixed-Btn.visible{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
#fixed-Btn a{
    display: block;
    box-shadow: 1px 1px 2px rgba(51, 43, 43, 0.3);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    background-color: var(--right-black);
    padding: 2rem 1.5rem;
    transition: 0.5s ease;
    font-size: 0.9rem;
}
#fixed-Btn a:hover{
    background-color: var(--orange);
}

/*=========== INTRODUCTION ===========*/
#introduction.wrapper{
    margin: 0 0 0 4%;
}
#introduction{
    background-color: var(--beige);
    border-radius: 36px 0 0 36px;
    position: relative;
}
#introduction .sectitle-Container{
    text-align: center;
    margin-bottom: 3rem;
}
#introduction .list{
    text-align: center;
}
#introduction li{
    padding-bottom: 0.8rem;
    border-bottom: 5px dotted var(--background);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 auto 1.2rem;
    width: 64%;
}
#introduction .position-Lefttop{
    position: absolute;
    top: 5%;
    left: 4%;
    width: 25%;
}
#introduction .position-Rightbottom{
    position: absolute;
    bottom: 5%;
    right: 4%;
    width: 15%;
}

/*=========== ABOUT SERVICE ===========*/
#service .list{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}
#service .service-Text{
    margin-bottom: 3rem;
}
#service .service-Content{
    width: calc(23.125% - 10px);
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding-bottom: 1.5rem;
}
#service .service-Content .title{
    padding: 0 2% 0.3rem;
    font-weight: 600;
    border-bottom: 5px dotted var(--green);
    margin: 0 2% 1rem;
    font-size: 0.95rem;
}
#service .service-Content .title.line-Height{
    line-height: 3;
}
#service .service-Content .text{
    padding: 0 4%;
    font-size: 0.75rem;
}
#service .arrow{
    width: calc(2.5% - 10px);
    display: flex;
    align-items: center;
}

/*=========== 「アドベンチャー6」とは ===========*/
#about.wrapper{
    margin: 0 4% 0 0;
}
#about{
    background-color: var(--beige);
    border-radius: 0 36px 36px 0;
}
#about .about-Title{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 5px dotted var(--green);
    display: inline-block;
}
#about .about-Text{
    margin-bottom: 5rem;
}
#about .lifeskill-explanation{
    position: relative;
    margin-bottom: 3rem;
}
#about .lifeskill-explanation .title{
    position: absolute;
    top: -14%;
    left: 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    background-color: var(--orange);
    box-shadow: var(--shadow);
    border-radius: 12px;
}
#about .lifeskill-explanation .text{
    font-weight: 500;
    padding: 2rem;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
}
#about .lifeskill-Container .lifeskill-Title{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 2rem;
    text-align: center;
}
#about .lifeskill-Container .list{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}
#about .lifeskill-Container li{
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding: 2rem 1rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: calc(33% - 10px);
}
#about .lifeskill-Container img{
    width: calc(30% - 10px);
    height: fit-content;
}
#about .lifeskill-Container li:last-child img{
    width: calc(16% - 10px);
    height: fit-content;
}
#about .lifeskill-Container .text-Container{
    width: calc(70% - 10px);
}
#about .lifeskill-Container .text-Container .title{
    padding-bottom: 0.3rem;
    border-bottom: 5px dotted var(--green);
    margin-bottom: 1rem;
    font-weight: 600;
    display: inline-block;
}
#about .lifeskill-Container .text-Container .text{
    font-size: 0.75rem;
}

/*=========== slider ===========*/
.slider-Container {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
}
.slider-Track {
    display: flex;
    width: calc(250px * 16);
    animation: scroll 30s linear infinite;
}
.slide {
    width: 250px;
    height: 150px;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); } /* 画像8枚分移動 */
}

/*=========== FEATURE ===========*/
#feature{
    background-color: var(--gray);
    border-radius: 36px 36px 0 0;
}
#feature .list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}
#feature .feature-Content{
    width: calc(25% - 10px);
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding-bottom: 1.5rem;
}
#feature .feature-Content .title{
    padding: 0 2% 0.3rem;
    font-weight: 600;
    border-bottom: 5px dotted var(--green);
    margin: 0 2% 1rem;
    font-size: 0.95rem;
}
#feature .feature-Content .title.line-Height{
    line-height: 3;
}
#feature .feature-Content .text{
    padding: 0 4%;
    font-size: 0.75rem;
}

/*=========== BENEFITS ===========*/
#benefits .sectitle-Container{
    text-align: center;
}
#benefits .list{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
#benefits li{
    width: calc(33.3% - 40px);
}
#benefits li:first-child .benefits,
#benefits li:last-child .benefits{
    line-height: 3;
}
#benefits li .benefits{
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.3rem;
}

/*=========== PROGRAM ===========*/
#program.wrapper{
    padding-top: 4%;
}
#program .sectitle-Container{
    text-align: center;
}
#program .program-Text{
    text-align: center;
}

/*=========== TRAINING LINEUP ===========*/
#lineup{
    background-color: var(--beige);
    border-radius: 36px 36px 0 0;
}
#lineup .sectitle-Container{
    text-align: center;
}
#lineup .training-Content{
    margin-bottom: 2rem;
}
#lineup .training-Content-Title{
    font-weight: 600;
}
#lineup .training-Content:last-child{
    margin-bottom: 0;
}

/* --- 表の共通・PC用設定 --- */
.table-Image-Wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
.responsive-Table-Img {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
}
.table-Image-Wrapper::-webkit-scrollbar {
    height: 8px;
}
.table-Image-Wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/*=========== TRAINING LOCATION ===========*/
#location{
    background-color: var(--gray);
    border-radius: 36px 36px 0 0;
}
#location .list{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#location li{
    width: calc(25% - 10px);
}
#location .location-Name{
    font-weight: 600;
    text-align: center;
    line-height: normal;
}

/*=========== APPLICATION ===========*/
#application .list{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    margin-top: 10rem;
}
#application .application-Content{
    position: relative;
    width: calc(23.125% - 10px);
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 3rem 4% 1.5rem;
    text-align: center;
}
#application .application-Content img{
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 75%;
}
#application .application-Content:nth-child(3) img{
    transform: translate(-50%, -30%);
}
#application .application-Content:nth-child(5) img{
    transform: translate(-50%, 20%);
}
#application .application-Text .step-Number{
    color: var(--orange);
    font-weight: 600;
}
#application .application-Text .title{
    font-weight: 600;
    margin: 0 2% 1rem;
    font-size: 0.95rem;
}
#application .application-Text .text{
    font-size: 0.75rem;
}
#application .arrow{
    width: calc(2.5% - 10px);
    display: flex;
    align-items: center;
}

/*=========== FAQ ===========*/
#question.wrapper{
    padding-top: 4%;
}
/* question */
.question.toggle {
    position: relative;
    padding: 1rem 5rem 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--right-black);
    transition: background-color 0.5s;
    border-radius: 15px;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.question.toggle:hover {
    background-color: #595959;
}
.question.toggle::before,
.question.toggle::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.5s ease;
}
.question.toggle::after {
    transform: translateY(-50%) rotate(90deg);
}

/* active */
.question.toggle.active::after {
    transform: translateY(-50%) rotate(0deg);
}
.question.toggle.active{
    border-radius: 15px 15px 0 0;
    margin-bottom: 0;
}

/* answer */
.answer {
    display: none;
    padding: 1rem 1.5rem 2rem;
    line-height: 1.8;
    background-color: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow);
}

/*=========== CONTACT ===========*/
#contact{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--green);
    border-radius: 36px 36px 0 0;
}
#contact img{
    width: calc(24% - 10px);
}
#contact .contact-Container{
    width: calc(76% - 10px);
}
#contact .contact-Container .contact-Text{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 2;
}
#contact .cta-Button{
    background-color: var(--right-black);
    border-radius: 10rem;
    cursor: pointer;
    color: var(--white);
    display: inline-block;
    padding: 0.8rem 3rem;
    transition: 0.5s ease;
    font-weight: 600;
}
#contact .cta-Button:hover{
    background-color: var(--orange);
}

/*=========== footer ===========*/
#footer.wrapper{
    padding: 2% 8%;
}
#footer{
    background-color: var(--right-black);
    border-radius: 36px 36px 0 0;
    margin-top: -3%;
}
#footer .copyright{
    text-align: center;
    color: var(--white);
    font-size: 0.75rem;
}

/*=========== contact 入力画面 ===========*/
#contact-Form .contact-Form-Text{
    margin-bottom: 2rem;
}
#contact-Form .red{
    color: red;
}
#contact-Form form{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
#contact-Form label{
    margin-top: 1.5rem;
    font-weight: bold;
    text-align: left;
}
#contact-Form input, 
#contact-Form textarea,
#contact-Form select{
    margin-top: 5px;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid var(--orange);
    border-radius: 6px;
    background-color: var(--white);
}
#contact-Form #button{
    display: inline-block;
    box-shadow: 1px 1px 2px rgba(51, 43, 43, 0.3);
    color: var(--white);
    font-weight: 700;
    border-radius: 10rem;
    background-color: var(--right-black);
    padding: 1rem 0;
    transition: 0.5s ease;
    font-size: 0.9rem;
    border: none;
    margin: 3rem auto 0;
    width: 30%;
}
#contact-Form #button:hover{
    background-color: var(--orange);
}

/*=========== contact 確認画面 ===========*/
#confirm{
    padding: 6% 8%;
    text-align: center;
    background-color: var(--background);
}
#confirm .confirm-title{
    font-weight: bold;
    margin-bottom: 2rem;
}
#confirm .container{
    text-align: left;
    padding: 3rem;
}
#confirm .confirm-text{
    font-weight: bold;
    border-bottom: solid 1px var(--green);
    padding-bottom: 6px;
    margin-bottom: 2rem;
}
#confirm .back{
    font-weight: bold;
    font-size: 1.1rem;
    border: solid 1px var(--right-black);
    padding: 15px 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    width: 200px;
    margin-right: 2rem;
    color: var(--right-black);
}
#confirm .back:hover{
    background-color: var(--right-black);
    color: var(--white);
}
#confirm .send{
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    border: solid 1px var(--orange);
    padding: 15px 30px;
    background-color: var(--orange);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    width: 200px;
}
#confirm .send:hover{
    background-color: var(--green);
    border: solid 1px var(--green);
}

.completion{
    background-color: var(--background);
    padding: 6% 8%;
    text-align: center;
}
.completion .back{
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px 30px;
    background-color: var(--right-black);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin: 40px auto 0;
    width: 300px;
}
.completion .back:hover{
    background-color: var(--green);
}
.alert{
    color: red;
    background-color: rgba(186, 12, 47, 0.1);
    padding: 40px;
}