@charset "UTF-8";
/*==========================
common
==========================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f6f6f6;
}

ul{
    list-style: none;
}

html{
    /* font-size: 100%; = 約16px */
    /* font-size: 62.5%; = 約10px */
    font-size: 62.5%;
}

a{
    text-decoration: none;
}

img{
    width: 100%;
}

.btnarrow{
    position: relative;
    transition: ease .2s;
}

.btnarrow::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 39px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 2.8px solid #060309;
    border-right: 2.8px solid #060309;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
    margin-left: 6px;
}

/*hoverした際の移動*/
.btnarrow:hover::after{
    right: 30px;
}

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}


/*==========================
ロード画面
==========================*/

#splash {
/*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#f6f6f6;
    text-align:center;
    color: #060309;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width:130px;
}

#splash_logo {
    overflow: hidden;
    position: relative;
}

#splash_logo::before {
    animation: img-wrap 3.2s forwards;
    background: #f6f6f6;
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

@keyframes img-wrap {

0% {
    transform: translateX(40%);
}

100% {
    transform: translateX(60%);
}
}

@media screen and (max-width: 768px) {
    @keyframes img-wrap {

        0% {
            transform: translateX(20%);
        }
        
        100% {
            transform: translateX(80%);
        }
    }
}

/*==========================
.siteHeader
==========================*/
.siteHeader{
    background-color: #f6f6f6;
    width: 100%;
    position: fixed;
    z-index: 100;
    padding: 20px;
}

.siteHeader .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_title{
    text-decoration: none;
    margin-left: 18px;
}

h1{
    color: #060309;
    font-size: 2.8rem;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0.05em;
}

.globalNav__list{
    display: flex;
}

.globalNav__item{
    margin-right: 24px;
}

.globalNav__item a{
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: #060309;
    font-family: Helvetica, sans-serif, Arial;
    transition: all .2s;
    margin-left: 24px;
}

.globalNav__item a:hover{
    color: #b9b9b9;
}

@media screen and (max-width: 768px) {
    .siteHeader {
        padding: 8px 4%;
    }
}

/*==========================
hamburger
==========================*/
.hamburger{
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: none;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

.bye{
    opacity: 0;
}

.hamburger .hamburger_area{
    transition: all .6s;
    width: 50px;
    height: 50px;
}

.hamburger span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    background-color: #060309;
    width:45%;
}

.hamburger span:nth-last-of-type(1){
    top: 15px;
}

.hamburger span:nth-last-of-type(2){
    top: 23px;
}

.hamburger span:nth-last-of-type(3){
    top: 31px;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.hamburger.active .hamburger_area{
    transform: rotate(360deg);
}

.hamburger.active span:nth-of-type(1){
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.hamburger.active span:nth-of-type(2){
    opacity: 0;
}

.hamburger.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}


/*==========================
Modal_window
==========================*/
@media screen and (max-width: 768px) {

    .globalNav{
        display: none;
    }

    .globalNav.active {
        display: block;
        position: fixed;
        width: 100%;
        height:100vh;
        left: 50%;
        top: 61px;
        transform: translateX(-50%);
        background-color: #f6f6f6;
        z-index: 99;
    }

    .globalNav__list {
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .globalNav__item {
        margin: 48px 0;
    }

    .globalNav__list a {
        font-size: 2.4rem;
    }

    .globalNav__item a{
        margin-left: 0px;
    }

    h1{
        color: #060309;
        font-size: 1.9rem;
        font-family: Helvetica, sans-serif, Arial;
        letter-spacing: 0.05em;
    }

    .header_title{
        margin-left: 8px;
    }

}

/*==========================
.articleHeader
==========================*/
.articleHeader{
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed; 
}
.background1{
    background-image: url(../img/galle_1_f.jpg);
}

.background2{
    background-image: url(../img/galle_2_f.JPG);
}

.background3{
    background-image: url(../img/galle_3_f.jpg);
}

.background4{
    background-image: url(../img/galle_4_f.JPG);
}

.background5{
    background-image: url(../img/galle_6_f.jpg);
}

.background6{
    background-image: url(../img/galle_8_f.JPG);
}

.background7{
    background-image: url(../img/galle_9_f.JPG);
}

.background8{
    background-image: url(../img/galle_10_f.JPG);
}

.background9{
    background-image: url(../img/galle_12_f.JPG);
}

.background10{
    background-image: url(../img/galle_14_f.JPG);
}

.background11{
    background-image: url(../img/galle_15_f.JPG);
}

.background12{
    background-image: url(../img/galle_20_f.JPG);
}

.background13{
    background-image: url(../img/galle_22_f.jpg);
}

.background14{
    background-image: url(../img/galle_24_f.jpg);
}

.background15{
    background-image: url(../img/galle_29_f.jpg);
}

.background16{
    background-image: url(../img/galle_32_f.jpg);
}

.background17{
    background-image: url(../img/galle_33_f.jpg);
}

.logo h2{
    font-size: 2rem;
    color: #f6f6f6;
    font-family: Helvetica, sans-serif, Arial;
    text-shadow: 
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11);
    letter-spacing: 0.15em;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 250px;
    white-space: nowrap;
}

/* Loading アイコンの大きさ設定　*/
.logo img {
    width:130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*====== スクロールバー =======*/
.scrolldown{
	position:absolute;
	left:50%;
	bottom:20px;
	height:50px;
}

.scrolldown span{
    position: absolute;
    left: -35px;
    top: -30px;
    color: #f6f6f6;
    font-size: 1.6rem;
    letter-spacing: .05em;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
}

.scrolldown::after{
    content: "";
    position: absolute;
    top: 0;
    width: 2.8px;
    height: 30px;
    background: #f6f6f6;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

@keyframes pathmove{
    0%{
        height: 0;
        top: 0;
        opacity: 0;
    }
    30%{
        height: 30px;
        opacity: 1;
    }
    100%{
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {

    .articleHeader{
        background-attachment: scroll;
    }

}

/*==========================
ABOUT US
==========================*/
.about{
    background-color: #f6f6f6;
    /* position: relative; */
    padding:300px 0 ;
}

.about_width{
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */
    margin-left: 14svw;
    margin-right: 14svw;

}

.about p{
    color: #060309;
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.9em;
}

.about_text1{
    font-size: 5rem;
    line-height: 2em;
}

span.smoothText {
	overflow: hidden;
	display: block;
}

@media screen and (max-width: 1024px) {

    .about p{
        line-height: 75px;
    }


}/* 1024px */

@media screen and (max-width: 768px) {

    .about{
        padding:110px 0 ;
    }

    .about_width{
        padding:50px 0 ;
        margin-left: 9.5svw;
        margin-right: 9.5svw;
    }
    
    .about_text1{
        font-size: 3rem;
        line-height: 2em;
    }

    .about p{
        color: #060309;
        font-size: 1.5rem;
        line-height: 1.9em;
        letter-spacing: 0.07em;
        font-family: sans-serif;
    }
}/* 768px */

/*==========================
テキストアニメーション
==========================*/

.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}

.blur2{
	animation-name:blurAnime2;
	animation-duration:1s;
	animation-fill-mode:forwards;
}


@keyframes blurAnime2{
  from {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }

  to {
    filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }
}
 
.blurTrigger{
    opacity: 0;
}


/*==========================
ACTIVITIES
==========================*/
.activities{
    background-image: url(../img/activities_top.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.activities_width{
    margin-left: 60svw;
    margin-right: 10svw;
    /* padding: 270px 0; */
    padding: 200px 0;
}

.activities h2{
    font-size: 5rem;
    text-shadow: 
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11);
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0.08em;
}

.activities_width_p {
    font-size: 1.9rem;
    text-shadow: 
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11),
    0 1px 28px rgba(0,0,0,0.11);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: #060309;
    letter-spacing: 0.075em;
    line-height: 35px;
    padding-top: 20px;
}

.activities_more{
    display: inline-block;
    background-color: #f6f6f6;
    color: #060309;
    text-decoration: none;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
    letter-spacing: 0.075em;
    padding: 20px 50px;
    padding-right: 60px;
    font-size: 2rem;
    border-radius: 40px;
}

.activities_more:hover{
    background-color: #b9b9b9;
}

.activities_more_p{
    padding-top: 50px;
}

@media screen and (max-width: 1024px) {


}/* 1024px */

@media screen and (max-width: 768px) {

    .activities_width{
        margin-left: 9svw;
        margin-right: 9svw;
        padding: 130px 0;
    }
    
    .activities h2{
        text-align: center;
        font-size: 4.3rem;
        font-family: Helvetica, sans-serif, Arial;
        letter-spacing: 0.05em;
    }

    .activities_width_p {
        font-weight: 600;
        padding-top: 20px;
        color: #060309;
        font-size: 1.5rem;
        line-height: 1.9em;
        letter-spacing: 0.07em;
        font-family: sans-serif;
    }

    .activities_more_p{
        text-align: center;
        padding-top: 20px;
    }

    .activities_more{
        font-size: 1.8rem;
    }

}/* 768px */

/*==========================
GALLERY
==========================*/
.gallary{
    background-color: #060309;
    color: #f6f6f6;
}

.gallary_width{ 
    padding: 200px 0;
}

.gallary h2{
    font-size: 5rem;
    font-family: Helvetica, sans-serif, Arial;
    letter-spacing: 0.08em;
    text-align: center;
}

.imageBoxes{
    display: flex;
    overflow: hidden;
}

.imageBoxes_up{
    padding-top: 60px;
    padding-bottom: 20px;
}

.imageBoxes_down{
    padding-top: 20px; 
}

.imageBox{
    width: 40px;
    height: 60px;
    background-color: #f6f6f6;
    border-radius: 14px;
    margin-right: 40px;
    padding-right: 40px;
}


.gallaries_more_p{
    padding-top: 60px;
    text-align: center;
}

.gallaries_more{
    display: inline-block;
    position: relative;
    background-color: #f6f6f6;
    color: #060309;
    text-decoration: none;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
    letter-spacing: 0.075em;
    border-radius: 40px;
    font-size: 2rem;
    padding: 20px 54px;
    transition: ease .2s;
}

.gallaries_more:hover{
    background-color: #b9b9b9;
}


@media screen and (max-width: 1024px) {


}/* 1024px */

@media screen and (max-width: 768px) {

    .gallary_width{ 
        padding: 100px 0;
    }
    
    .gallary h2{
        font-size: 4.3rem;
    }

    .imageBox{
        width: 25px;
        height: 36px;
        border-radius: 8px;
        margin-right: 30px;
        padding-right: 30px;
    }

    .imageBoxes_up{
        padding-top: 40px;
    }

    .gallaries_more_p{
        padding-top: 40px;
    }    

    .activities_more{
        font-size: 1.8rem;
    }

}/* 768px */

/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

/*==========================
NEWS
==========================*/
.news{
    background-color: #f6f6f6;
    width: 100%;
}

.news_width{
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 120px;
}

.news h2{
    color: #060309;
    font-size: 5rem;
    font-family: Helvetica, sans-serif, Arial;
}

.news_list{
    padding-top: 50px;
}

.grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 3vw;
}

.news_img{
    width: 100%;
    height: auto;
    transition: all .2s;
}

.news_desc p{
    color: #060309;
}

.news_desc{
    margin-top: 5px;
}

.news_date{
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.075em;
}

.news_about{
    margin-top: 5px;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    letter-spacing: 0.075em;
    transition: all .2s;
}

.news_img:hover{
    filter: opacity(50%);
}

.news_about:hover{
    color: #b9b9b9;
}

.news_more_p{
    padding-top: 80px;
    text-align: center;
}

.news_more{
    background-color: #f6f6f6;
    color: #060309;
    text-decoration: none;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
    letter-spacing: 0.075em;
    padding: 20px 50px;
    padding-right: 60px;
    font-size: 2rem;
    border-radius: 40px;
    border: .5px #060309 solid;
}

.news_more:hover{
    background-color: #b9b9b9;
}

@media screen and (max-width: 1040px) {
}


@media screen and (max-width: 768px) {

    .news_width{
        margin-left: 4%;
        margin-right: 4%;
    }

    .news_about{
        font-family: sans-serif;
        font-weight: 550;
    }
    
    .news h2{
        color: #060309;
        font-size: 4.3rem;
        font-family: Helvetica, sans-serif, Arial;
        padding-top: 0px;
        text-align: center;
    }

    .news_list{
        padding-top: 30px;
    }

    .grid{
        display: grid;
        grid-template-columns: repeat(1,minmax(0,1fr));
        gap: 5vh;
    }

    .news_img{
        width: 100%;
        height: auto;
        transition: all .2s;
    }

    .news_more{
        position: relative;
        background-color: #f6f6f6;
        color: #060309;
        text-decoration: none;
        font-family: Helvetica, sans-serif, Arial;
        font-weight: bold;
        letter-spacing: 0.075em;
        border-radius: 40px;
        font-size: 1.8rem;
        padding: 20px 54px;
        transition: ease .2s;
    }
}/* 768px */


/*==========================
.sitefooter
==========================*/

.siteFooter{
    background-color: #dedede;
    width: 100%;
    height: 220px;
    position: relative;
    margin-top: 120px;
}

.siteFooter p{
    color: #060309;
    font-family: Helvetica, sans-serif, Arial;
    font-weight: bold;
}

.footer_title{
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: 55px;
}

.sns_icon{
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 27px;
}

.sns_flex{
    display: flex;
    justify-content: center;
}

.sns_logo{
    width: 33px;
    height: 33px;
}

.footer_copy{
    bottom: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);   	
    white-space: nowrap;
    letter-spacing: 0.09em;
}

@media screen and (max-width: 768px) {

    .siteFooter{
        height: 150px;
    }

    .footer_title{
        font-size: 2.3rem;
        padding-top: 25px;
    }

    .sns_icon{
        margin-top: 20px;
    }
}