@charset "UTF-8";

/* ======================
headerSlider
====================== */
.slider {
	width: 100%;
	height: 130px;
	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: 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;
	}
}

.slider div:first-of-type{
	background-image: url(../images/ヘッダー/03_千五百秋.jpeg);
}
.slider div:nth-of-type(2){
	background-image: url(../images/ヘッダー/泡沫縹cut.PNG);
	animation-delay: 10s;
}

/* ======================
headerSlider pc
====================== */
@media screen and (min-width: 769px) {
    .slider {
        height: 500px;
    }
}/* pc 769px */


/* ======================
works
====================== */
#works {
    padding: 5em 9vw 5em;
}

/* neko */
.works {
    display: block;
    position: relative;
}
.works .topicBox img{
    position: absolute;
    width: 55px;
    height: auto;
    top: 0;
    right: 8%;
}

.btnBox {
    display: flex;
    /* width: 80.5%; */
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0px 5px;
    flex-wrap: wrap;
    list-style: none;
    margin: 40px 0 60px 0;
}

.btnBox__item img{
    width: 100%;
    height: auto;
    border-radius: 3px;
    object-fit: cover;
    opacity: 1; /* viewmore */
    aspect-ratio: 1 / 1;
}

.btnBox__item.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
}

.works_title {
    color: #170606;
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    letter-spacing: 1.6px;
    margin-top: 60px;
}

.works_size {
    color: #170606;
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
    letter-spacing: 1.32px;
    margin-top: 14px;
    margin-bottom: 60px;
}

/* list */
.filter-list {
    display: flex;
    justify-content: center;
    padding: 4em 0;
  }
  .filter-list li {
    text-align: center;
    font-size: 1.2rem;
    color: #927c7c;
    cursor: pointer;
    transition: all 0.3s;
    margin: auto 5vw;
  }
  .filter-list li.is-active {
    color: var(--primary-black);
  }
  .filter-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .filter-item li {
    text-align: center;
  }

  /* modal */
  .modal__bg.is-active {
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
  }
  
  .modal__inner {
    position: fixed;
    z-index: 10010;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    /* padding: 0 10px; */
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity .6s ease, visibility .6s ease;
  }
  
  .modal__inner.is-active {
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
  }
  
  .modal-card {
    width: 100vw;
    height: 100vh;
    background: #fff;
    /* filter: drop-shadow(0 0 10px rgba(0 ,0, 0, 0.4)); */
    /* border-radius: 16px; */
    /* padding: 16px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: absolute;
    z-index: 1;
    transform: translate3d(0, 48px, 0);
    opacity: 0; /* 初期状態で非表示 */
    visibility: hidden; /* 初期状態で非表示 */
    transition: opacity .6s ease, visibility .6s ease, transform .3s ease-in-out;
  }
  
  .modal-card.is-active {
    position: relative;
    z-index: 2;
    opacity: 1; /* 非表示を解除 */
    visibility: visible; /* 非表示を解除 */
    transform: translate3d(0, 0, 0);
  }
  
  .modal-card__heading {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
    color: #444;
  }
  
  .modal-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  
  .modal-card__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 16px;
    right: 13px;
  }
  
  .modal-card__close::before,
  .modal-card__close::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 3px;
    background: #000;
    cursor: pointer;
  }
  
  .modal-card__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .modal-card__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }



/* モーダルと背景の指定 */
.modal-card{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: linear-gradient(to bottom, #b6adad, #fff);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 999999;
}

/* モーダルのコンテンツ部分の指定 */
.modalWorks-contentBox{
    background: white;
    text-align: center;
    line-height: 1.8;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 5px 7px 7px 0 rgba(175, 167, 167, 0.5);
}

.modalWorks-content img {
    width: 90vw;
    height: auto;
    border-radius: 0;
    box-shadow: 5px 7px 7px 0 rgba(175, 167, 167, 0.7);
}

.modalWorks-contentTopic {
    color: #170606;
    text-align: center;
    font-family: 'Roboto';
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    letter-spacing: 1.6px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
  .modalWorks-contentTxt {
    color: #170606;
    text-align: center;
    font-family: Roboto;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 8px */
    letter-spacing: 0.8px;
}

.modalWorks-contentBox p:nth-of-type(2){
    margin-top: 6px;
}
    .modalWorks-contentHeart {
        color: #170606;
        font-family: "Noto Sans JP";
        font-size: 1.0rem;
        font-style: normal;
        font-weight: 400;
        line-height: 15px; /* 150% */
        letter-spacing: 1px;
        text-align: center;
        margin-top: 12px;
    }

/* works pc */
@media screen and (min-width: 769px) {
    .filter-list li {
        font-size: 1.4rem;
        margin: auto 5vw;
    }

    /* neko */
    .works {
        display: block;
        position: relative;
    }
    .works .topicBox img{
        position: absolute;
        width: 80px;
        height: auto;
        top: 0;
        right: 9.7%;
    }

    .btnBox {
        /* width: 80.5%; */
        margin: 40px 0 60px 0;
        gap: 0px 50px;
    }

    .works {
        margin-top: 10em;
    }

    .works .topic_sub {
        margin-bottom: 50px;
    }
    
    .btnBox__item {
        display: flex;
        /* padding: 0 9.7%; */
        justify-content: center;
        align-items: flex-start;
        align-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .btnBox__item img {
        width: 360px;
        height: 360px;
        border-radius: 3px;
        object-fit: cover;
    }

    .works__thumnail--item {
        padding: 0;
    }

    .works_title {
        text-align: center;
        color: #170606;
        text-align: center;
        font-family: 'Roboto';
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 1.6px;
    }

    /* modal */
    .modalWorks-content img {
        width: auto;
        height: 70vh;
        border-radius: 0;
        box-shadow: 5px 7px 7px 0 rgba(175, 167, 167, 0.7);
    }

    /* modal text */
    .modalWorks-contentBox p:first-of-type {
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 1.6px;
        margin-bottom: 15px;
    }
    
    /* モーダルのコンテンツ部分のテキストの指定 */
      .modalWorks-contentTxt {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.0rem;
        font-weight: 500;
        line-height: 200%;
        letter-spacing: 1.6px;
    }

}/* 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: 84%;
    height: 452px;
    background-color: white;
    border-radius: 5px;
    margin: 100px auto;
    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: 80.5%;
        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;
    }
    .spBr{
        display: none;
    }
}/* pc 769px */


/* ======================
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: scroll 2.0s infinite;
}

.scrollupTxt {
    position: absolute;
    display: block;
    color: var(--primary-black);
    transform: rotate(90deg);
    top: -30px;
    left: -6px;
    font-size: 1.0rem;
}

@keyframes scroll {
    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;
}

/* ================
more btn
--------======== */
.btn_works{
    display: block;
    margin: 0 auto;
    width: 40vw;
    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;
    cursor: pointer;
}

.btn_works::after {
    content: '';
    display: block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow_down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
    cursor: pointer;
}

.btn_works:hover {
    color: var(--primary-white);
    border: 0.5px solid var(--primary-pink);
    background-color: var(--primary-pink);
    cursor: pointer;
}

.btn_works:hover::after {
    content: '';
    display: inline-block;
    width: 4.5px;
    height: 8.0px;
    background-image: url(../images/btn_arrow_down_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
    cursor: pointer;
}

.btn_works .btn_txt {
    font-family: 'Roboto';
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1.2px;
    cursor: pointer;
}


/* ======================
headerSlider pc
====================== */
@media screen and (min-width: 769px) {
    .btn_works {
        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;
    }
    .btn_works .btn_txt {
        font-size: 1.4rem;
        letter-spacing: 1.4px;
        cursor: pointer;
    }

    .footerslider {
        height: 353px;
    }
}/* pc 769px */

/* footer pc */
@media screen and (min-width: 769px) {
    .scrollup {
        right: 10%;
    }
    
    .scrollupTxt {
        left: -9px;
        font-size: 1.2rem;
    }

    .footerslider {
        height: 353px;
        margin-top: 140px;
    }

    .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