@charset "UTF-8";
/* =========================
common
========================= */

:root {
    --primary-white: #FFFAF0;
    --primary-black: #170606;
    --primary-pink: #BC8F8F;
}

html {
    font-size: 62.5%;
}

body {
    font-family:        
        "Roboto",
        "Rubik Dirt",
        'Noto Sans JP';
    font-style: normal;
    color: var(--primary-black, #170606);
    line-height: 1.5;
    background: url(../images/背景テクスチャ_sp.png);
}

.topic {
    color: var(--primary-black, #170606);
    text-align: left;
    font-family: "Rubik Dirt";
    font-size: 3.0rem;
    line-height: 1;
    letter-spacing: 2.1px;
    margin: 100px 0 0 0;
}

.topic_sub {
    color: var(--primary-black, #170606);
    text-align: left;
    font-family: 'Noto Sans JP';
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1.2px;
    margin: 1px 0 0 0;
}

.btn {
    display: block;
    margin: 0 auto;
    margin-top: 45px;
    width: 40vw;
    color: var(--primary-black, #170606);
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 60px;
    background-color: none;
    border: 0.5px solid var(--primary-black);
    padding: 20px 50px 20px 30px;
    position: relative;
    transition: 0.4s;
    letter-spacing: 1.2px;
}

.btn::after {
    content: '';
    display: block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn:hover {
    color: var(--primary-white);
    border: 0.5px solid var(--primary-pink);
    background-color: var(--primary-pink);
}

.btn:hover::after {
    content: '';
    display: inline-block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn btn--txt {
    color: var(--primary-white);
    font-family: 'Roboto';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
}

/* common pc */
@media screen and (min-width: 769px){
    .topic {
        font-size: 5.0rem;
        line-height: 1;
        margin: 15px 0 0 0;
    }

    .topic_sub {
        color: var(--primary-black, #170606);
        text-align: left;
        font-family: 'Roboto'; 
        font-size: 1.6rem;
        line-height: 1;
        letter-spacing: 1.2px;
        margin: 15px 0 0 0;
    }

    .btn {
        width: 170px;
        height: 4.8%;
        font-size: 1.4rem;
        padding: 28px 55px 28px 30px;
        position: relative;
        transition: 0.4s;
        letter-spacing: 1.2px;
        margin-top: 60px;
        margin-right: 0;
    }
    
    .btn::after {
        right: 30px;
    }
        
    .btn .btn--txt {
        font-size: 1.4rem;
    }

}/* pc 769px */


/* =========================
loading
========================= */
/*背景*/
#loading{
	width:100vw;
	height:100vh;
	background-image: url(../images/背景テクスチャ_sp.png);
	position:fixed;
    z-index: 999999;
}
/*ロゴ*/
#loadingLogo{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}

#loadingLogo img {
    width: 300px;
}

#loadingPc {
    display: none;
}

/* loasding pc表示 */
@media screen and (min-width: 769px) {
    #loadingPc {
        width:100vw;
        height:100vh;
        background-image: url(../images/背景テクスチャ_pc.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        position:fixed;
        z-index: 999999;
        display: block;
    }
    #loadingLogoPc {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    #loadingLogoPc img {
        width: 1200px;
    }
    #loading {
        display: none;
    }
}/* pc 769px */


/* ======================
mv
====================== */
.slider {
	width: 100%;
	height: 570px;
	overflow: hidden;
	position: relative;
	max-width: 100%;
}

.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 100;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 30s;
	animation-iteration-count: infinite;
    transform: scale(1.5);
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
        transform: scale(1);
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}

.slider div:first-of-type{
	background-image: url(../images/メインビジュアル/01_日並合う風\ .JPG);
}
.slider div:nth-of-type(2){
	background-image: url(../images/メインビジュアル/02_君憶う光芒.jpeg);
	animation-delay: 10s;
}
.slider div:last-of-type{
	background-image: url(../images/メインビジュアル/03_旋る朝.jpeg);
	animation-delay: 20s;
}

/* ======================
mv pc
====================== */
@media screen and (min-width: 769px) {
    .slider {
        height: 800px;
    }
}/* pc 769px */


/*=======================
header
====================== */
.header {
    position: fixed;
    width: 100vw;
    padding: 5vh 3em;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    top: -2px;
}

.icon.before,
.icon.after,
.nav_icon {
    width: 48px;
    height: 42px;
}

/* ヘッダー背景変更 */
.header[data-js-scroll="true"] {
    background: linear-gradient( rgba(163, 150, 150, 0.3), rgb(255, 255, 255, 0));
    transition: 0.5s;
  }


/* .nav 初期表示 */
.nav {
    background: url(../images/背景テクスチャ_sp.png);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(+100%);
    transition: transform 0.4s;
}

.nav__header {
    margin: 17px 8% 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__list {
    margin-top: 71.5px;
}

.nav__item {
    color: var(--primary-black, #170606);
    font-family: 'Roboto';
    font-size: 1.8rem;
    line-height: 1;
    margin-top: 30px;
    display: block;
    text-align: center;
}

.header__btn {
    width: 21px;
} 

.icon_instagram_white {
    display: none;
}

/* .nav active表示 */
.nav.active {
    transform: translateY(0);
}

.header__btn {
    display: block;
    width: 21px;
} 

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        width: 100vw;
        padding: 8vh 13em;
    }
    
    .nav__header {
        display: none;
    }

    .header__icon .icon {
        width: 70px;
        height: 67px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        align-items: center;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        margin-top: 0;
        display: flex;
        align-items: center;
        transform: translateY(-25%);
    }

    .nav__item {
        color: #FFFAF0;
        font-family: 'Roboto';
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 1.8px;
        margin-left: 3vw;
        align-items: center;
    }

    .nav__item:first-of-type {
        display: none;
    }

    .nav__item:last-of-type {
        display: flex;
    }

    .nav_home,
    .header__btn,
    .icon_instagram {
        display: none;
    }

    .icon_instagram_white {
        display: flex;
    }

    .nav__item:nth-of-type(6) {
        display: none;
    }
}/* pc 769px */


/* ======================
article header
====================== */
/* メインのスライドショー */

.mainTitle {
    position: absolute;
}

.slider__sampleBox {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider__sample {
    display: flex;
}

.scrolldown {
    position: absolute;
    left: 50%;
    top: 500px;
    z-index: 99999;
}

.scrolldown::after {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: var(--primary-white);
    right: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    animation: scroll 2.0s infinite;
}

@keyframes scroll {
    0% {
        transform: scale(1,0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1,1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1,1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1,0);
        transform-origin: 0 100%;
    }
}

.mainTitle {
    z-index: 100;
    text-align: center;
    margin: 0 auto;
    top: 205px;
    left: 50%;
    transform: translateX(-50%);
}
.mainTitle_item01,
.mainTitle_item03 {
    display: block;
    color: var(--primary-white);
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin: 0 auto;
}

.mainTitle_item02 {
    display: block;
    color: #FFFAF0;
    text-align: center;
    font-family: "Rubik Dirt";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px; /* 90% */
    letter-spacing: 3.5px;
    margin: 5 0;
}

.mainmessage {
    text-align: center;
    margin-top: 77px;
    margin-bottom: 76px;
}

.mainmessage__txt {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1.2px;
    margin-top: 22px;
}

.mainmessage__txtPC {
    display: none;
}

.slider__sample--item01 img,
.slider__sample--item02 img,
.slider__sample--item03 img,
.slider__sample--item04 img,
.slider__sample--item05 img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 3px;
}

.slider__sample {
    display: flex;
  animation: loop-slide 30s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* article header pc */
@media screen and (min-width: 769px) {
    .article__header {
        height: 515px;
        margin: 0;
        background-image: url(../images/bg-main-pc.jpg);
        background-position: left 140px bottom;
    }

    .mainVisual {
        padding: 56px 70px 40px 205px;
        max-width: 933px;
    }

    .logo__sp {
        display: none;
    }

    .logo__pc {
        display: block;
    }

    .mainTitle {
        top: 340px;
    }

    .mainTitle_item01,
    .mainTitle_item03 {
        text-align: center;
        font-size: 2.0rem;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .mainTitle_item02 {
        margin: 10px 0;
    }

    .mainmessage {
        margin: 170px auto 170px;
    }

    .mainmessage__txt:nth-of-type(1),
    .mainmessage__txt:nth-of-type(2) {
        color: #170606;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 1.6px;
        margin-bottom: 40px;
    }

    .mainmessage__txt:nth-of-type(3) {
        display: none;
    }

    .mainmessage__txtPC {
        display: block;
        color: #170606;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 1.6px;
        margin-bottom: 40px;
    }
    

    .spBr {
        display: none;
    }

    .scrolldown {
        position: absolute;
        left: 50%;
        top: 750px;
        z-index: 99999;
    }

    .slider__sample--item01 img,
    .slider__sample--item02 img,
    .slider__sample--item03 img,
    .slider__sample--item04 img,
    .slider__sample--item05 img {
        width: 374px;
        height: 374px;
    }

}/* pc 769px */

/* ======================
news
====================== */
#news {
    padding: 5em 9vw 5em;
}

/* neko */
.section--news .topicBox {
    display: block;
    position: relative;
}
.section--news img{
    position: absolute;
    width: 70px;
    height: auto;
    bottom: 0;
    right: 8%;
}

.news_01 {
    display: block;
    margin: 70px 0 70px 0;
    position: relative;
}

.news__item::before {
    content: '';
    position: absolute;
    width: 100%;
    border: none;
    border-top: 1px dotted #BC8F8F;
    bottom: 85px;
}

.news__item::after {
    content: '';
    position: absolute;
    width: 100%;
    border: none;
    border-top: 1px dotted #BC8F8F;
    bottom: -35px;
}

.news__item time {
    color: #170606;
    font-family: 'Roboto';
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1.4px;
}

.news__item span {
    display: block;
    color: #170606;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
    letter-spacing: 1.2px;
    margin-top: 16px;
}

.section--news .btn{
    margin-top: 7em;
}

/* モーダルを開くボタン */
.modal-open{
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-black);
    background: rgba(194, 178, 178, 0);
    border: none;
    cursor: pointer;
}

/* モーダルと背景の指定 */
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 999999;
}

/* モーダルの擬似要素の指定 */
.modal:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active{
    opacity: 1;
    visibility: visible;
}
  
  /* モーダル内側の指定 */
  .modal-container{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
    color: var(--primary-black);
    /* background: #000; */
    border-radius: 50%;
    cursor: pointer;
}
  
/* モーダルのコンテンツ部分の指定 */
  .modal-content{
    background: white;
    text-align: left;
    line-height: 1.8;
    padding: 25px;
}

.modal-contentTopic {
    color: var(--primary-black);
    font-family: 'Roboto';
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    margin-bottom: 15px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
  .modal-contentTxt {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 1.2px;
}

/* news pc */
@media screen and (min-width: 769px) {
    /* neko */
    .section--news .topicBox {
        display: block;
        position: relative;
    }
    .section--news img{
        position: absolute;
        width: 96px;
        height: 66px;
        bottom: 0;
        right: 8%;
    }

    .section--news .topic {
        margin-top: 400px;  
    }

    .news_01 {
        display: block;
        margin: 110px 0 110px 0;
        position: relative;
    }
    
    .news__item::before {
        content: '';
        position: absolute;
        width: 100%;
        border: none;
        border-top: 1px dotted #BC8F8F;
        bottom: 115px;
    }
    
    .news__item::after {
        content: '';
        position: absolute;
        width: 100%;
        border: none;
        border-top: 1px dotted #BC8F8F;
        bottom: -60px;
    }

    .news__item time {
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 1.6px;
    }
    
    .news__item span {
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 1.6px;
    }

    /* modal text */
    .modal-contentTopic {
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 1.6px;
        margin-bottom: 15px;
    }
    
    /* モーダルのコンテンツ部分のテキストの指定 */
      .modal-contentTxt {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 200%;
        letter-spacing: 1.6px;
    }
    
}/* pc 769px */

/* ======================
works
====================== */
#works {
    padding: 5em 9vw 5em;
}

/* neko */
.works {
    display: block;
    position: relative;
}

.works .topicBox{
    display: flex;
    justify-content: space-between;
}

.works .topicBox .topic{
    margin: 2em 0 0 0;
}

.works .topicBox .topic_sub{
    margin: 1px 0 40px 0;
}

.works .topicBox img{
    width: 40px;
    height: auto;
    object-fit: contain;
}

.works .topic_sub {
    margin-bottom: 40px;
}

.works__thumnail {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 2vw;
    flex-wrap: wrap;
}

.works__thumnail img {
    width: 41.3%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    object-fit: cover;
}

.works .btn {
    width: 40vw;
}

/* サムネホバー */
.works__thumnail--item {
    width: 40vw;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
  }
  .works__thumnail--item img {
    width: 100%;
    height: 100%;
  }
  .hover-mask {
    align-items: center; /* テキストの中央揃え */
    text-align: center;
    background: rgba(194, 178, 178, 0.5); /* マスクの色(黒の50%) */
    bottom: 0;
    color: #fff; /* テキストの色 */
    display: flex; /* テキストの中央揃え */
    justify-content: center; /* テキストの中央揃え */
    left: 0;
    opacity: 0; /* 最初は透明(非表示) */
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
  .hover-mask:hover {
    opacity: 1; /* hoverしたら透過しない(表示させる) */
  }
  .hover-mask p {
    width: 80%; /* テキストを横幅いっぱいにならないようにする */
  }


/* works pc */
@media screen and (min-width: 769px) {
    /* neko */
    .works {
        display: block;
        position: relative;
    }
    .works .topicBox img{
        width: 55px;
        height: auto;
        bottom: 95%;
        right: 9.7%;
    }
    
    .works .topic_sub {
        margin-bottom: 50px;
    }
    
    .works__thumnail {
        display: flex;
        /* padding: 0 9.7%; */
        /* justify-content: flex-start; */
        align-items: flex-start;
        align-content: space-between;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .works__thumnail img {
        width: 284px;
        height: 284px;
        border-radius: 3px;
        object-fit: cover;
    }

    .works__thumnail--item {
        padding: 0;
    }

    .works .btn {
        width: 170px;
        margin-right: 0;
    }

    /* サムネホバー */
    .works__thumnail--item {
        width: 20vw;
        height: auto;
        aspect-ratio: 1 / 1;
        position: relative;
    }
    .works__thumnail--item img {
        width: 100%;
        height: 100%;
    }
    .hover-mask {
        align-items: center; /* テキストの中央揃え */
        text-align: center;
        background: rgba(194, 178, 178, 0.5); /* マスクの色(黒の50%) */
        bottom: 0;
        color: #fff; /* テキストの色 */
        display: flex; /* テキストの中央揃え */
        justify-content: center; /* テキストの中央揃え */
        left: 0;
        opacity: 0; /* 最初は透明(非表示) */
        position: absolute;
        right: 0;
        top: 0;
        transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
        width: 100%;
        height: 100%;
        font-size: 1.4rem;
    }
    .hover-mask:hover {
        opacity: 1; /* hoverしたら透過しない(表示させる) */
    }
    .hover-mask p {
        width: 80%; /* テキストを横幅いっぱいにならないようにする */
    }

}/* pc 769px */


/* ======================
profile
====================== */
.section--profile {
    position: relative;
    margin-top: 100px;
}

.section--profile img {
    width: 100vw;
    height: 347px;
    object-fit: cover;
}

.section--profile {
    text-align: center;
}

.section--profile .topic {
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
}

.section--profile .topic_sub {
    margin-bottom: 70px;
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(-50%);
}

.section--profile .topic,
.section--profile .topic_sub {
    color: var(--primary-white);
    text-align: center;
    margin-left: 0;
    position: absolute;
}

.section--profile .btn {
    display: block;
    margin-right: 0;
    width: 170px;
    color: var(--primary-white, #FFFAF0);
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 60px;
    border: 0.5px solid var(--primary-white);
    padding: 20px 50px 20px 30px;
    margin: -13em auto 16em;
    position: relative;
    transition: 0.4s;
    letter-spacing: 1.2px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
}

.section--profile .btn::after {
    content: '';
    display: block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.section--profile .btn:hover {
    color: var(--primary-white);
    border: 0.5px solid var(--primary-pink);
    background-color: var(--primary-pink);
}

.section--profile .btn:hover::after {
    content: '';
    display: inline-block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn--txt {
    color: var(--primary-white);
    font-family: 'Roboto';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
}

/* prolife pc */
@media screen and (min-width: 769px) {
    .section--profile img {
        height: 400px;
    }

    .section--profile .topic {
        position: absolute;
        left: 9.7%;
        top: 145px;
        transform: translateX(0);
    }
    
    .section--profile .topic_sub {
        margin-bottom: 70px;
        position: absolute;
        left: 9.7%;
        top: 203px;
        transform: translateX(0);
    }

    .section--profile .btn {
        font-size: 1.4rem;
        padding: 30px 55px 42px 30px;
        margin: -16em auto 16em;
        right: 15vw;
    }
       
    .btn_white {
        margin: 0;
        width: 170px;
        font-size: 1.4rem;
        padding: 28px 55px 28px 30px;
        position: relative;
        right: 8%;
        border-radius: 60px;
        position: relative;
        transition: 0.4s;
        letter-spacing: 1.2px;
        position: absolute;
        bottom: 164px;
        transform: translateX(0);
    }
    
    .btn_white::after {
        content: '';
        display: block;
        width: 4.5px;
        height: 8.0px;
        background-image: url(../images/btn_arrow_white.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: 18%;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
    }
    
    .btn_white:hover {
        color: var(--primary-white);
        border: none;
        background-color: var(--primary-pink);
    }
    
    .btn_white:hover::after {
        content: '';
        display: inline-block;
        width: 4.5px;
        height: 8.0px;
        background-image: url(../images/btn_arrow_white.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: 18%;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.4s;
    }
    
    .btn--txt {
        color: var(--primary-white);
        font-family: 'Roboto';
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 1.4px;
    }

}/* pc 769px */

/* ==================
contact
================== */

    /* neko */
    .section--contact {
        display: block;
        position: relative;
    }
    .section--contact .topicBox img{
        position: absolute;
        width: 70px;
        height: auto;
        top: -48px;
        right: 50%;
        transform: translateX(50%);
    }

.section--contact {
    width: 82vw;
    height: 452px;
    background-color: white;
    border-radius: 5px;
    margin: 18em auto 0;
    padding: 48px 26px;
    justify-content: center;
    align-items: center;
}

.section--contact .topic {
    color: #170606;
    text-align: center;
    font-family: "Rubik Dirt";
    font-size: 3.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 30px */
    letter-spacing: 2.1px;
    margin: 0 auto;
}

.section--contact .topic_sub {
    color: #170606;
    text-align: center;
    font-family: 'Noto Sans JP';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
    letter-spacing: 1.2px;
}

.section--contact .topic,
.section--contact .topic_sub {
    color: var(--primary-black);
    text-align: center;
    margin-left: 0;
}

.contact_txt {
    color: var(--primary-black);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    line-height: 24px; /* 200% */
    letter-spacing: 1.2px;
    margin-top: 20px;
}

.contact_icon {
    width: 210px;
    height: 210px;
    border: 2px var(--primary-black) dotted;
    border-radius: 50%;
    margin: 30px auto;
    transition: 0.4s;
}

.contact_icon img {
    width: 58px;
    height: 52.5px;
    margin: 78px 74px 84px 73px;
    transition: 0.4s;
}

.contact_icon img:hover {
    width: 72px;
    height: 65px;
    margin: 70px 85px 74px 65px;
}

/* contact pc */
@media screen and (min-width: 769px) {
    /* neko */
    .section--contact {
        display: block;
        position: relative;
    }
    .section--contact .topicBox img{
        position: absolute;
        width: 96px;
        height: auto;
        top: -63px;
        left: 5%;
    }

    .section--contact {
        display: flex;
        width: 84%;
        height: 524px;
        padding: 157px 118px 154px 117px;
        justify-content: space-between;
        align-items: center;
    }

    .section--contact .topic {
        text-align: left;
        font-size: 5.0rem;
        font-weight: 400;
        letter-spacing: 2.1px;
        margin: 0;
        left: 17.8%;
    }
    
    .section--contact .topic_sub {
        text-align: left;
        font-style: normal;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 100%; /* 12px */
        letter-spacing: 1.2px;
    }
    
    .section--contact .topic,
    .section--contact .topic_sub {
        text-align: 0;
        margin-left: 0;
    }
    
    .contact_txt {
        text-align: left;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 24px; /* 171.429% */
        letter-spacing: 1.12px;
    }
    
    .contact_icon {
        width: 210px;
        height: 210px;
        border: 2px var(--primary-black) dotted;
        border-radius: 50%;
        margin: 0;
        transition: 0.4s;
    }
    
    .contact_icon img {
        width: 58px;
        height: 52.5px;
        margin: 78px 74px 84px 73px;
        transition: 0.4s;
    }
    
    .contact_icon img:hover {
        width: 72px;
        height: 65px;
        margin: 70px 85px 74px 65px;
    }
}/* pc 769px */


/* ==================
Instagram
================== */
#instagram {
    padding: 13em 0 5em;
}

.section--instagram .topicBox{
    margin-left: 9vw;
}

.slider__instagram img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 3px;
}

.slider__instagram {
    display: flex;
  animation: loop-slide 30s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider__instagramBox {
    display: flex;
    overflow: hidden;
}

.slider__instagramMain .topic_sub {
    margin-bottom: 40px;
}

.btn_instagram {
    display: block;
    margin: 0 auto;
    margin-top: 45px;
    width: 45vw;
    color: var(--primary-black, #170606);
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.2rem;
    line-height: 1;
    border-radius: 60px;
    border: 0.5px solid var(--primary-black);
    padding: 20px 50px 20px 30px;
    position: relative;
    transition: 0.4s;
    letter-spacing: 1.2px;
}

.btn_instagram::after {
    content: '';
    display: block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_jumparrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn_instagram:hover {
    color: var(--primary-white);
    border: 0.5px solid var(--primary-pink);
    background-color: var(--primary-pink);
}

.btn_instagram:hover::after {
    content: '';
    display: inline-block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_jumparrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn_instagram .btn--txt {
    color: var(--primary-white);
    font-family: 'Roboto';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
}

/* instagram pc */
@media screen and (min-width: 769px) {
    .btn_instagram {
        width: 220px;
        font-size: 1.4rem;
        padding: 28px 75px 28px 50px;
        position: relative;
        transition: 0.4s;
        letter-spacing: 1.2px;
        margin-top: 60px;
        margin-right: 9.7%;
    }

    .btn_instagram::after {
        right: 30px;
        width: 8.5px;
    }

    .btn_instagram:hover::after {
        width: 8.5px;
    }
        
    .btn_instagram .btn--txt {
        font-size: 1.4rem;
    }
}

/* ======================
footer
====================== */
.scrollup {
    position: absolute;
    right: 8%;
    top: -40px;
    z-index: 99999;
}

.scrollup::after {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: var(--primary-black);
    right: 50%;
    top: 24;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    animation: scrolldown 2.0s infinite;
}

.scrollupTxt {
    position: absolute;
    display: block;
    color: var(--primary-black);
    transform: rotate(90deg);
    top: -30px;
    left: -6px;
    font-size: 1.0rem;
}

@keyframes scrolldown {
    0% {
        transform: scale(1,0);
        transform-origin: 0 100%;
    }

    50% {
        transform: scale(1,1);
        transform-origin: 0 100%;
    }

    50.1% {
        transform: scale(1,1);
        transform-origin: 0 0;
    }

    100% {
        transform: scale(1,0);
        transform-origin: 0 0;
    }
}

.footer {
    position: relative;
    margin-top: 100px;
    width: 100%;
    height: 323px;
    object-fit: cover;
}

.footer {
    text-align: center;
}

.mainTitle_footer {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    margin: 0 auto;
}

.mainTitle_footer_item01,
.mainTitle_footer_item03 {
    color: #FFFAF0;
    text-align: center;
    font-family: Roboto;
    font-size: 1.0rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
}

.mainTitle_footer_item02 {
    width: fit-content;
    color: #FFFAF0;
    text-align: center;
    font-family: "Rubik Dirt";
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.9px;
}

.nav__list--footer {
    margin-top: 0;
    position: absolute;
    right: 50%;
    bottom: 30px;
    transform: translateX(50%);
    z-index: 100;
}

.nav__item--footer {
    color: #FFFAF0;
    text-align: center;
    font-family: Roboto;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    margin-top: 16px;
}

.nav__item--footer img {
    width: 13px;
    height: 14px;
}

.footerslider {
	width: 100%;
	height: 323px;
	overflow: hidden;
	position: relative;
	max-width: 100%;
}

.footerslider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 100;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 20s;
	animation-iteration-count: infinite;
    transform: scale(1.5);
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 1;
        transform: scale(1);
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}

.footerslider div:first-of-type{
	background-image: url(../images/フッター/01_春風と白い教会.jpeg);
}
.footerslider div:nth-of-type(2){
	background-image: url(../images/フッター/02_汽笛と朝焼け.jpeg);
	animation-delay: 10s;
}


/* ======================
headerSlider pc
====================== */
@media screen and (min-width: 769px) {
    .footerslider {
        height: 353px;
        margin-top: 140px;
    }
}/* pc 769px */

/* footer pc */
@media screen and (min-width: 769px) {
    .scrollup {
        right: 10%;
    }
    
    .scrollupTxt {
        left: -9px;
        font-size: 1.2rem;
    }

    .mainTitle_footer {
        text-align: left;
        font-size: 5.0rem;
        font-weight: 400;
        letter-spacing: 2.1px;
        margin: 0;
        top: 176px;
        left: 9.7%;
        transform: translateY(-50%);
    }
    
    .section--contact .topic,
    .section--contact .topic_sub {
        text-align: 0;
        margin-left: 0;
    }

    .nav__list--footer {
        width: fit-content;
        height: fit-content;
        text-align: right;
        margin: 0;
        top: 176px;
        right: 9.7%;
        transform: translateY(-50%);
        z-index: 100;
    }

    .footer_txt {
        font-size: 1.8rem;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 1.8px;
    }

    .nav__item--footer img {
        width: 25px;
        height: 26px;
    }
}/* pc 769px