@charset "UTF-8";

/*==================
画面設計
768px をブレイクポイントとし
それ以上はPCレイアウト
768px以下はスマホレイアウトととする
@media screen and ( max-width:48rem) { }
@media screen and ( max-width:767px) {  }
==================*/

html {
    font-size: 10px;
    background-color: #FFFFFF;
    height: 100%;
    color: #333;
    /* padding-top: 80px; */
    scroll-behavior: smooth;
}
body {
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 1.5rem;
    line-height: 1.8;
}
section, header, footer, div, ul, li, dl, dt, dd {
    box-sizing: border-box;
}
.wfontSan {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wfontSerif {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-style: normal;
}

.spDispOnly {
    display: none;
}
.pcDispOnly {
    display: inline;
}
@media screen and (max-width:767px) {
    html {
        font-size: 9px;
        /* padding-top: 60px; */
        height:  auto;
        padding-bottom:  45px;
    }
    .spDispOnly {
        display: block;
    }
    .pcDispOnly {
        display: none;
    }
    img {
        max-width: 100%;
    }
}
a{
    color: #00AFCC;
}
a:hover img {
    opacity: 0.8;
}
a.pagetopBtn {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 20px;
    padding: 5px;
    background-color: #474747;
    color: #FFFFFF;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    transform: scale(0.8);
    opacity: 0.8;
    border-radius: 100%;
    z-index: 19;
    text-decoration: none;
    cursor: pointer;
}

.normalTextStyle{
    font-size: 1.5rem;
    line-height: 2;
}



.flexFooter{
    width: 100%;
    text-align: center;
    background-color: #6A3906;
    padding: 10px;
    /* display: flex; */
    position: fixed;
    bottom: 0;
    left: 0;
    display:  none;
}
.flexFooter a{
    color: #FFF;
    text-decoration: none;
}
@media screen and (max-width:767px) {

.flexFooter{
    display: block;
}
}

/* トップページ */
.headerSection{
    width: 100%;
    padding: 0;
    height: 120px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    /* max-width: 1300px; */
    margin: 0 auto;
}
.headerSection .subject{
    margin-right: 40px;
    display: flex;
    align-items: center;
}
.headerSection .logo{
    width: 100%;
    max-width: 290px;
    padding-left: 20px;

}
.headerSection .info{
    display: block;
    margin-left: auto;

    background-color: #3E3A39;
    color: #FFFFFF;

    display: flex;
    justify-content: center;
    align-items: stretch;
}
.headerSection .info a{
    display: block;
    padding: 40px;
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* .headerSection .linkList .logo,
.headerSection .linkList .info_sp{
    display: none;
} */



/*トグルボタンのスタイルを指定*/
.Toggle{
    display: none;
}

@media screen and ( max-width:1000px) {
    .Toggle {
        display: block;
        position: fixed;    /* bodyに対しての絶対位置指定 */
        width: 34px;
        height: 42px;
        cursor: pointer;
        z-index: 21;
        top: 35px;
        right:35px;
    }
    .Toggle span {
        display: block;
        position: absolute;
        width: 34px;
        border-bottom: solid 4px #333;
        -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
        -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
        transition: .35s ease-in-out;			/*変化の速度を指定*/
    }
    /*各ボーダー少しずつずらす*/
    .Toggle span:nth-child(1) {
        top:5px;
    }
    .Toggle span:nth-child(2) {
        top: 17px;
    }
    .Toggle span:nth-child(3) {
        top: 30px;
    }
    .Toggle.active span:nth-child(1) {
        top: 18px;
    /* 1番目のspanをマイナス45度に */
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* 2番目と3番目のspanを45度に */
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }


    .headerSection{
        height: 120px;
    }
    .headerSection .subject{
        /* margin-right: 20px; */
        margin: 0 auto;
    }
    .headerSection .subject .logo{
        width: 100%;
        max-width: 180px;
    }
    .headerSection .info{
        display: none;
    }
    .headerSection .linkList .logo,
    .headerSection .linkList .info_sp{
        display: block;
    }
    .headerSection .linkList{
        width: 100vw;
        height: auto;
        min-height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        color: #fff;
        position: fixed; 
        top: 0;
        left: 0;
        z-index: 20;
        text-align:center;
        transition: 0.5s ease;/*滑らかに表示*/
        -webkit-transform: translateX(100%);/*画面より100%外へ押し出し非表示にさせる*/
    /*  transform: translateX(-100%);/*右から出す場合は、マイナス100%としてください*/
    }
    /*OPEN時の動き*/
    .headerSection .linkList.open {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);/*メニューを元の位置へ戻す*/
    }
    .headerSection .linkList ul{
        flex-direction: column;
        justify-content: flex-start;
        padding: 3px 20px 3px;
        gap: 3px;
    }
    .headerSection .linkList ul li{
        width: 100%;
    }
    .headerSection .linkList ul li a{
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        padding: 26px 0 22px;
        color: #00AFCC;
        text-decoration: none;
        background-color: #eee;
        border-radius: 4px;
        /* border-bottom: #ccc 4px solid; */
    }
}




.headNavi{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #FFFFFF;
    gap: 100px;
}
.headNavi a{
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 40px 20px;
}
@media screen and ( max-width:1000px) {
    .headNavi{
        gap: 10px;
    }
}
@media screen and ( max-width:450px) {
    .headNavi{
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0;
    }
    .headNavi li{
        width: 50%;
        text-align: center;
    }
    .headNavi li a{
        padding: 10px 0;
    }
}


.topMainvisualSection{
    width: 100%;
    height: auto;
    min-height: 1000px;
    background-image: url(../image/mainvs.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.conceptArea{
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
}
.conceptArea .headCopy{
    font-size: 2.8rem;
}
.conceptArea .eng{
    color: #AEAEAF;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 30px 0;
}
@media screen and ( max-width:767px) {
    .topMainvisualSection{
        min-height: 120vw;
    }
    .conceptArea .headCopy{
        font-size: 2.4rem;
    }
}

.picArea{
    width: 100%;
}
.picArea ul{
    display: flex;
}
.picArea ul li{
    width: 25%;
    line-height: 0;
}
.picArea ul li img{
    width: 100%;
}

.accessArea iframe{
    width: 100%;
    min-height: 460px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

.informationArea{
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
}
.informationArea .title{
    font-size: 2.2rem;
    margin: 20px auto 40px;
}
.informationArea .eng{
    color: #AEAEAF;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 30px 0;
}
.informationArea .prText{
    display: inline-block;
    margin-top: 20px;
    color: burlywood;
    font-weight: bold;
}
.accessArea{
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 20px;
}
.accessArea .title{
    font-size: 2.2rem;
    margin: 20px auto 40px;
}
.snsArea{
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 40px 0px;
}
.snsArea .title{
    font-size: 2.2rem;
    margin: 20px auto 40px;
}
.snsAreaInstaUl{
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
}
.snsArea ul li{
    width: 25%;
    line-height: 0;
}
.snsArea ul li img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.snsArea .discription{
    padding: 0 20px;
}
.snsArea .eng{
    color: #AEAEAF;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 30px 0;
    padding: 0 20px;
}

@media screen and ( max-width:450px) {
    .snsArea ul li{
        width: 50%;
    }
}
.linkArea{
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
}
.linkArea .title{
    font-size: 2.2rem;
    margin: 20px auto 40px;
}
.linkArea ul{
    display: flex;
    justify-content: center;
    align-items: center;
/*    gap: 60px;*/
}
.linkArea ul li{
    margin: 60px 30px;
}
.linkArea ul li a{
    color: inherit;
    text-decoration: none;
}
.linkArea ul li a:hover{
    text-decoration: underline;
}
@media screen and ( max-width:767px) {
    .linkArea ul li{
/*        gap: 60px 20px;*/
        margin: 60px 10px;
    }
}
@media screen and ( max-width:599px) {
    .linkArea ul{
        display: flex;
        flex-wrap: wrap;
/*        gap: 30px;*/
    }
    .linkArea ul li{
        width: 30%;
        white-space: nowrap;
        margin: 30px 15px;
    }
}
footer{
    width: 100%;
    text-align: center;
    background-color: #3E3A39;
    color: #FFFFFF;
    padding: 60px 20px;
}