@charset "utf-8";
/*====================
 - 〜519px：スマートフォン縦
 - 〜959px：タブレット
 - 〜1279px：小型PC
 - 1280px〜：大型PC
====================*/

/* 基本設定 */
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
body {
    width: 100%;
    background-color: #FFF;
    color: #333; /* RGB */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    line-height: 2.75rem;
    text-align: left;
  }
.break{
    display: inline-block;
 }
.sectionTitle{
    max-width: 1120px;
    width: 86vw;
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-size: 8.0rem;
    line-height: 8.0rem;
    padding-top: 120px;
    margin: 0 auto;
    padding-bottom: 80px;
 }
 .sectionTitle-ja{
    max-width: 1120px;
    width: 86vw;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin: 0 auto ;
 }
 @media(max-width:959px){
    .sectionTitle{
        max-width: 735px;
    } 
    .sectionTitle-ja{
        max-width: 735px;
    }
 }

/* header */
.headerNav-top__wrapper{
    width: 100vw;
    height: 280px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 94px;
}
.title-top{
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-size: 20rem;
    line-height: 16rem;
    font-style: normal;
    vertical-align: bottom;
    margin-left: 80px;
}
@media(max-width:1279px){
    .title-top{
        font-size: 15rem;
        line-height: 12rem;
    }
}
@media(max-width:959px){
    .title-top{
        margin-left: 48px;
        font-size: 10rem;
        line-height: 10rem;
    }
}
@media(max-width:519px){
    .title-top{
        margin-left: 24px;
        font-size: 7.2rem;
        line-height: 7.2rem;
    }
}
.headerNav-top{
    margin-right: 80px;
    width: 134px;
}
@media(max-width:959px){
    .headerNav-top{
        margin-right: 48px;
    }
}
.headerNav-top__item{
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.headerNav-top__item:hover{
    transform: translateY(-5px);
    cursor: pointer;
}

.headerNav-top__item__line{
    display: block;
    margin-left: 8px;
    height: 12px;
    border-bottom: #333 1px solid;
}
.headerNav-top__item__line-about{
    width: calc(134px - 39px);
}
.headerNav-top__item__line-business{
    width: calc(134px - 56px);
}
.headerNav-top__item__line-contact{
    width: calc(134px - 51px);
}
/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたらheader自体が出現*/
.header.panelactive {
	opacity: 1;/*不透明にして出現*/
}
/* ハンバーガーメニュー用Navの形状 */
.headerNav__wrapper{
    /* 固定位置にして最背面に */
    position:fixed;
	top: 0;
    right: 0;
	z-index: -1;
    min-width: 327px;
	width: 20vw;
	height: 100vh;
    padding-top: 80px;
    padding-left: 24px;
    /* はじめは透過0に */  
    opacity: 0;
    visibility: hidden;
	transition: all 0.4s;
}
/* Nav内の形状 */
.title{
    color: #FFF;
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4.0rem;
    line-height: 4.0rem;
    transition:all 0.3s;
    margin-bottom: 48px;
}
.headerNav__item{
    color: #FFF;
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.4rem;
    line-height: 2.4rem;
    display: block;
	text-transform: uppercase;
	transition:all 0.3s;
    margin-bottom: 40px;
}
.headerNav__item:hover{
    color: #F64F24;
    transform: translateY(-5px);
    cursor: pointer;
}
.headerNav__item-business:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
/* Nav内アコーディオンの形状 */
.headerNav__business{
    display: none;
    margin-top: 40px;
}
.headerNav__business__item{
    color: #FFF;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin-bottom: 24px;
}
.headerNav__business__item:hover{
    color: #F64F24;
    font-weight: 600;
    transform: translateY(-5px);
    cursor: pointer;
}
/* メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状 */
.header.panelactive .headerNav__wrapper{
	opacity: 1;/*不透明に*/
	z-index:1000;/*最前面に*/
    visibility: visible;
	background:rgba(51,51,51,0.9);
}
/* メニューボタンの形状 */
.openbtn{
    /* はじめは非表示 */
	display: none;
    /* ボタンの位置 */
	position:fixed;
	top:40px;
	right: 40px;
	z-index: 1500;
    /* ボタンの形状 */
	background:#FFF;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 25px;
    box-shadow: 0 0 8px #E2E2E2;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #333;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
/* activeクラス付与で変化 */
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* このクラスが付与されると消える */
.remove{
    position: absolute;
    top: -70px;
    bottom: auto;
  }
/* fadeDownクラスが付与された後のボタンの出現アニメーション設定 */
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/* headerとハンバーガーボタン　タブレット以下での表示 */
@media(max-width:959px){
    .openbtn{
        display: block;
        right: 16px;
        top: 48px;
    }
    .headerNav-top{
        display: none;
    }
    .headerNav-top__wrapper{
        padding-top: 40px;
        height: 160px;
    }
}
@media(max-width:519px){
    .headerNav-top__wrapper{
        padding-top: 40px;
        height: 96px;
    }
    .openbtn{
        width: 46px;
        height: 46px;
    }
    .openbtn span{
        left: 12px;
      }
    .openbtn span:nth-of-type(1) {
        top:14px;	
    }
    .openbtn span:nth-of-type(2) {
        top:22px;
    }
    .openbtn span:nth-of-type(3) {
        top:30px;
    }
    .openbtn.active span:nth-of-type(1){
        top: 16px;
        left: 16px;
    }
    .openbtn.active span:nth-of-type(3){
        top: 28px;
        left: 16px;
    }
}
  /* main */
.top{
    position: relative;
    top: 24px;
}
.top__content{
    display: flex;
    justify-content: flex-end;
    margin-bottom: -20vw;
}
.photo-main__wrapper{
    width: 80vw;
    height: 45vw;
}
.photo-main__wrapper::before{
    content: "";
    width: 84vw;
    height: 45vw;
    border: #F64F24 2px solid;
    position: absolute;
    right: 0;
    top: 32px;
    z-index: -1;
}
.photo-main{
    width: 100%;
    object-fit: cover;
}
@media(max-width:959px){
    .top__content{
        margin-bottom: -10vw;
    }
    .photo-main__wrapper{
        width: 94vw;
        height: 52.8vw;
    }
    .photo-main__wrapper::before{
        width: 97vw;
        height: 52.8vw;
        top: 36px
    }
}
/* vison */
.vision{
    width: 100vw;
    position: relative;
    margin-bottom: 240px;
}
.bg-head{
    width: 63%;
}
.bg-foot{
    width: 63%;
    position: absolute;
    right: 0;
}
.vision__content{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: #EFEFEF;
}
.visionState__wrapper{
    width: 86%;
    height: 540px;
    z-index: 150;
}
.visionState{
    margin-left: 20vw;
    padding: 80px 80px 120px;
    font-weight: 600;
}
.visionTitle-ja{
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 4.8rem;
    margin-bottom: 40px;
}
.visionTitle-eng{
    color: #FFF;
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 80px;
    line-height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.visionImg{
    width: 26.56vw;
    max-width: 340px;
    position: absolute;
    bottom: -40px;
    right: 65vw;
    z-index: 200;
}
.visionImg__item{
    width: 100%;
}
@media(max-width:1279px){
    .visionState{
        padding: 80px 40px 120px;
    }
}
@media(max-width:959px){
    .vision__content{
        justify-content: flex-start;
    }
    .visionTitle-eng{
        font-size: 48px;
        line-height: 68px;
    }
    .visionTitle-ja{
        font-size: 2.4rem;
    }
    .visionState{
        padding: 0;
        padding-top: 96px;
        margin-left: 6.4vw;
    }
    .visionImg{
        top: auto;
        left: auto;
        bottom: -120px;
        right: 0;
        height: 480px;
        width: auto;
        object-fit: cover;
        z-index: 100;
    }
    .visionImg__item{
        height: 100%;
    }
}
@media(max-width:519px){
    .visionState__wrapper{
        width: 100%;
        height: 700px;
    }
    .visionImg{
        width: 47.8vw;
        height: auto;
    }
}
/* BUSINESS LINK */
.link-translation__title{
    font-weight: 600;
    position: relative;
}
.businessLink__wrapper{
    max-width: 1120px;
    width: 86vw;
    margin: 20px auto 120px;
}
.businessLink{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 40px;
    position: relative;
}
.businessLink-item:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
@media(max-width:959px){
    .businessLink__wrapper{
        max-width: 735px;
    }
    .businessLink{
        justify-content: center;
        column-gap: 16px;
        row-gap: 16px;
    }
}
.businessLink-item__title{
    display: block;
    width: 320px;
    height: 64px;
    background-color: #FFF;
    border: #F64F24 2px solid;
    padding: 19px 24px;
}
.businessLink-item__title::before{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #333 2px solid;
    border-right: #333 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 23px;

}
.businessLink-item__title::after{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #333 2px solid;
    border-right: #333 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 24px;
    top: 23px;
}
/* BUSINESS LINK：TRACK CLUBだけ色変え */
.businessLink-item__title-truckclub{
    display: block;
    width: 320px;
    height: 64px;
    background-color: #F64F24;
    color: #FFF;
    padding: 19px 24px;
}
.businessLink-item__title-truckclub::before{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #FFF 2px solid;
    border-right: #FFF 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 23px;

}
.businessLink-item__title-truckclub::after{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #FFF 2px solid;
    border-right: #FFF 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 24px;
    top: 23px;
}
/* LINK　数の調整用に透明 */
.businessLink-item-blank{
    color: transparent;
    border: none;
    background-color: transparent;
}
.businessLink-item-blank .businessLink-item__title{
    border: none;
}
.businessLink-item-blank .businessLink-item__title::before{
    content: "";
    border: none;
}
.businessLink-item-blank .businessLink-item__title::after{
    content: "";
    border: none;
}
@media(max-width:1117px){
    .businessLink-item-blank{
        display: none;
    }
}
/* 各ビジネスの共通部分 */
.businessBg{
    background-image: url(img/bg-full.png);
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: 50% 20%;
    background-size: 1280px auto;
}
.businessBg-gray{
    background-color: #EFEFEF;
    background-image: url(img/bg-white.png);
    padding-top: 120px;
}
.businessItem__container{
    height: 880px;
    position: relative;
    z-index: 10;
}
.businessDescription{
    padding: 72px 54px 40px;
    background-color: #FFF;
    box-shadow: 0px 0px 16px -1px rgba(246, 79, 36, 0.3);
}
.businessTitle-eng{
    display: inline-block;
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 80px;
    line-height: 80px;
}
.businessTitle-ja{
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 54px;
    width: 100%;
    border-bottom: #F64F24 1px solid;
    margin-bottom: 20px;
}
.businessText{
    margin-bottom: 40px;
}
.businessItem__link__wrapper{
    width: 100%;
    text-align: right;
}
.businessItem__link{
    color: #F64F24;
    position: relative;
    padding-right: 48px;
}
.businessItem__link:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
.businessItem__link::before{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #F64F24 2px solid;
    border-right: #F64F24 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 7px;
}
.businessItem__link::after{
    content: "";
    width: 14px;
    height: 14px;
    border-top: #F64F24 2px solid;
    border-right: #F64F24 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 24px;
    top: 7px;
}

.businessItem__link-SP{
    display: none;
}
@media(max-width:959px){
    .businessItem__container{
        height: 800px;
        margin-bottom: 80px;
    }
    .businessItem__link-SP{
        display: block;
    }
    .businessItem__link-PC{
        display: none;
    }
    .businessDescription{
        padding: 48px 24px 40px;
    }
    .businessTitle-ja{
        text-align: center;
    }
    .businessTitle-eng{
        font-size: 48px;
        line-height: 48px;
    }
}
/* 各ビジネスの画像部分 */
.businessImg__wrapper{
    width: 48vw;
    height: calc(48vw * 0.75);
}
.businessImg{
    width: 100%;
    object-fit: cover;
}
@media(max-width:1279px){
    .businessImg__wrapper{
        width: 60vw;
        height: calc(60vw * 0.75);
    }
}
@media(max-width:959px){
    .businessImg__wrapper{
        width: 86vw;
        height: calc(86vw * 0.75);
    }
}
@media(max-width:519px){
    .businessImg__wrapper{
        width: 94vw;
        height: calc(94vw * 0.75);
    }
}
/* kids scool */
.businessItem-kidsschool {
    background-image: url(img/photo-kidsschool2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.businessItem-kidsschool::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /*半透明のフィルターをかける*/
  }
.businessItem__container-kidsschool{
    width: 86vw;
    max-width: 1120px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    position: relative;
    margin: 0 auto;
    padding: 120px 0;
}
.businessTitle__wrapper{
    width: 446px;
}
.businessTitle__logo__wrapper-kidsschool{
    width: 284px;
    height: 284px;
    margin: 0 auto;
    position: relative;
}
.businessTitle__logo-kidsschool{
    width: 100%;
    object-fit: cover;
}
.businessTitle-eng-kidsschool{
    color: #FFF;
    text-align: center;
    display: block;
    position: relative;
}
.businessDescription-kidsschool{
    width: 446px;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
}
@media(max-width:959px){
    .businessItem-kidsschool{
        background-position: 60%
    }
    .businessItem__container-kidsschool{
        width: 100vw;
        flex-direction: column;
        row-gap: 40px;
    }
    .businessDescription-kidsschool{
        width: 327px;
        margin: 0 auto;
    }
}
/* track club */
.businessItem-trackclub{
    background-image: url(img/photo-trackclub.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.businessItem-trackclub::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /*半透明のフィルターをかける*/
  }
.businessItem__container-trackclub{
    width: 86vw;
    max-width: 1120px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto;
    padding: 120px 0;
}
.businessTitle__logo__wrapper-trackclub{
    width: 284px;
    height: 284px;
    margin: 0 auto;
    position: relative;
}
.businessTitle__logo-trackclub{
    width: 100%;
    object-fit: cover;
}
.businessTitle-eng-trackclub{
    color: #FFF;
    text-align: center;
    display: block;
    position: relative;
}
.businessDescription-trackclub{
    width: 446px;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
}
@media(max-width:959px){
    .businessItem-trackclub{
        background-position: 60%
    }
    .businessItem__container-trackclub{
        width: 100vw;
        flex-direction: column;
        row-gap: 40px;
    }
    .businessTitle__wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
    }
    .businessDescription-trackclub{
        width: 327px;
        margin: 0 auto;
    }
}
/* first track */
.businessItem-firsttrack{
    background-image: url(img/photo-fitsttrack.jpg);
    background-repeat: no-repeat;
    background-size: 140%;
    background-position: 50% 20%;
    position: relative;
}
.businessItem-firsttrack::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /*半透明のフィルターをかける*/
  }
.businessItem__container-firsttrack{
    width: 86vw;
    max-width: 1120px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto;
    padding: 120px 0;
}
.businessTitle__logo__wrapper-firsttrack{
    width: 284px;
    height: auto;
    margin: 0 auto 24px;
    position: relative;
}
.businessTitle__logo-firsttrack{
    width: 100%;
    object-fit: cover;
}
.businessTitle-eng-firsttrack{
    color: #FFF;
    text-align: center;
    display: block;
    position: relative;
}
.businessDescription-firsttrack{
    width: 446px;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
}
@media(max-width:959px){
    .businessItem-firsttrack{
        
    background-size: cover;
    }
    .businessItem__container-firsttrack{
        width: 100vw;
        flex-direction: column;
        row-gap: 40px;
    }
    /* .businessTitle__wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
    } */
    .businessDescription-firsttrack{
        width: 327px;
        margin: 0 auto;
    }
}
/* event planning*/
.business__item-eventplanning{
    padding-top: 160px;
}
/* left */
.businessImg__wrapper-left{
    position: relative;
}
/*
.businessImg__wrapper-left::before{
    content: "";
    position: absolute;
    width: 48vw;
    height: calc(48vw * 0.5625);
    border: #F64F24 2px solid;
    top: 40px;
    left: 40px;
    z-index: -1;
}
*/
.businessDescription-left{
    width: 384px;
    position: absolute;
    top: 160px;
    left: 46vw;
}
.businessTitle-eng-left{
    position: absolute;
    bottom: 740px;
    left: 50vw;
    z-index: 100;
}
@media(max-width:959px){
    .businessDescription-left{
        width: 327px;
        left: auto;
        right: 40px;
    }
    .businessTitle-eng-left{
        bottom: 800px;
        left: 0;
    }
}
@media(max-width:519px){
    .businessDescription-left{
        top: 240px;
        right: auto;
        left: calc(50vw - 163.5px);
    }
    .businessTitle-eng-left{
        bottom: 800px;
    }
}
/* right */
.businessItem__container-right{
    display: flex;
    justify-content: flex-end;
}
.businessImg__wrapper-right{
    position: relative;
}
/*
.businessImg__wrapper-right::before{
    content: "";
    position: absolute;
    width: 65vw;
    height: calc(65vw * 0.5625);
    border: #F64F24 2px solid;
    top: -160px;
    right: 0px;
    z-index: -1;
}
*/
.businessDescription-right{
    width: 408px;
    position: absolute;
    top: 240px;
    right: 46vw;
}
.businessTitle-eng-right{
    position: absolute;
    bottom: 700px;
    right: 50vw;
    z-index: 100;
}
@media(max-width:959px){
    .businessDescription-right{
        width: 327px;
        right: auto;
        left: 40px;
    }
    .businessTitle-eng-right{
        bottom: 800px;
        right: auto;
        left: 10vw;
    }
}
@media(max-width:519px){
    .businessItem__container-right{
        justify-content: flex-start;
    }
    .businessDescription-right{
        top: 240px;
        right: auto;
        left: calc(50vw - 163.5px);
    }
    .businessTitle-eng-right{
        bottom: 800px;
        left: 0;
        right: auto;
    }
}
/* contact */
.contactform{
    width: 70vw;
    margin: 0 auto 120px;
}
.contactform__container{
    margin: 0 auto;
}
.contact__item{
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    margin-bottom: 24px;
}
.required{
    margin-left: 16px;
    color: #F64F24;
}
.contact__item__form{
    width: 43.75vw;
    max-width: 780px;
    height: 48px;
    border: #F64F24 2px solid;
    box-shadow: 0px 0px 8px -1px rgba(246, 79, 36, 0.3) inset;
    padding-left: 16px;
}
.contact__item__form:focus{
    border: #F64F24 1px solid;
    box-shadow: none;
}
.contact__item__form-textarea{
    height: 240px;
}
.contact__item__form-checkbox{
    border: none;
    box-shadow: none;
    padding: 0;
}
.contact__item__form-checkbox input[type="checkbox"]{
    display: none;
}
.contact__item__form-checkbox input[type="checkbox"]+label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}
.contact__item__form-checkbox input[type="checkbox"]+label::before {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 50%;
    border: #F64F24 2px solid;
    background-color: #FFF; /* 背景の色変更 お好きな色を */
}
.contact__item__form-checkbox input[type="checkbox"]:checked +label::after {
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: 3px;
    transform: rotate(-45deg);
    border-bottom: #F64F24 3px solid;
    border-left: #F64F24 3px solid;
}
.contact__item__button{
    background-color: #F64F24;
    color: #FFF;
    font-weight: 600;
    width: 160px;
    height: 48px;
    margin: 56px auto 0;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact__item__button:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
.contact__item__button__wrapper{
    display: flex;
    justify-content: center;
    column-gap: 40px;
    margin: 80px auto 0;
}
.contactform__container-check{
    width: 80vw;
    max-width: 960px;
    margin: 0 auto;
}
.contact__item__button-check{
    margin: 0;
}
.contact__item__title-check{
    background-color: #888686;
    color: #FFFFFF;
    width: 30%;
    line-height: 2.7rem;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 1%;
    border: #FFFFFF 1px solid;
    vertical-align: middle;
}
.contact__item__content-check{
    background-color: #FFFFFF;
    width: 70%;
    line-height: 2.7rem;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 1%;
    border: #888686 1px solid;
}
@media(max-width:959px){
    .contactform__container-check{
        width: 86vw;
        font-size: 1.4rem;
    }
    .contactform{
        width:86vw;
    }
    .contact__item{
        flex-direction: column;
    }
    .contact__item__form{
        width: 100%;
    }
    .contact__item__form-checkbox{
        text-align: center;
    }
    .contact__item__button__wrapper{
        flex-direction: column;
        align-items: center;
        row-gap: 24px;
    }
    .contact__item__button-back{
        background-color: #FFF;
        border: 2px solid #F64F24;
        color: #F64F24;
    }
}
/* footer */
.footer__container{
    max-width: 1120px;
    width: 86vw;
    height: 400px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 80px;
}
.title-footer{
    font-family: noto-sans-extracondensed, sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    font-style: normal;
    line-height: 6.4rem;
}
.footerNav__wrapper{
    width: 600px;
    display: flex;
    justify-content: space-around;
}
.footerNav__item{
    font-weight: 600;
    margin-bottom: 16px;
}
.footerNav__item:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
.footerNav-sub{
    width: 394px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footerNav-sub__item{
    width: 176px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.footerNav-sub__item:hover{
    transform: translateY(-5px);
    cursor: pointer;
}
.copyright{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
@media(max-width:959px){
    .footer__container{
        height: 720px;
        justify-content: flex-start;
        row-gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    .footerNav__wrapper{
        width: 100vw;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footerNav-sub{
        width: 100vw;
        flex-direction: column;
        align-items: center;
    }
}
/* animation */
.box{
	opacity: 0;
}
.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}