@charset "UTF-8";

/* header */
.header {
    width: 100%;
    box-sizing: border-box;
}

.mainVisual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main_logo {
    color: var(--primary-white);
}

.logo {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    z-index: 10;
    overflow: hidden;
}

.logo::after {
    content: "";
    display: block;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-white);
    margin: 0 auto;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.logo h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 8px;
    letter-spacing: .6rem;
}

.logo p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
}

.image {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.image.active {
    opacity: 1;
}

.src1 { background-image: url('../image/TOP/top_photo/top_1.jpg'); }
.src2 { background-image: url('../image/TOP/top_photo/top_2.jpg'); }
.src3 { background-image: url('../image/TOP/top_photo/top_3.jpg'); }
.src4 { background-image: url('../image/TOP/mv.webp'); }

.mvSwiper {
  height: 100%;
}

.mvSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 769px) {
    .logo::after{
        height: 3px;
    }

    .logo h1 {
        font-size: 4rem;
        line-height: 45px;
        margin-bottom: 10px;
    }
    
    .logo p {
        font-size: 2rem;
        line-height: 25px; /* 125% */
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
}/* pc 769px */

/* main */
.main_top {
    padding: 100px 5.1% 0px 7.7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_top h2 {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 33px; /* 165% */
    margin-bottom: 30px;
}

.main_top p {
    font-size: 1.3rem;
    line-height: 2.6;
    letter-spacing: 0.65px;
    text-align: center;
    margin-bottom: 100px;
}

.mainCaption_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 30px;
}

.main_about {
    padding: 50px 5.1% 100px;
    text-align: center;
    align-items: center;
}

.main_about h2 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 33px; 
    margin-bottom: 30px;
}

.main_about p {
    font-size: 1.3rem;
    line-height: 3.4;
    letter-spacing: -0.1px;
    margin-bottom: 40px;
}

.main_img {
    margin-top: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.main_img_01 {
    width: 47%;
    height: 235px;
    object-fit: cover;
}

.main_img_02 {
    width: 50%;
    height: auto;
    object-fit: contain;
}

.btn_main {
    float: none;
}

.br_pc {
    display: none;
}

@media screen and (min-width:769px){
    .br_sp {
        display: none;
    }

    .main_top {
        padding: 150px 10.4% 0;
    }

    .main_top h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .main_top p {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 3.3;
        letter-spacing: 2px;
        margin-bottom: 120px;
    }

    .mainCaption_img {
        height: 460px;
        margin-bottom: 120px;
    }

    .main_about {
        padding: 0 10.4% 150px;
    }

    .main_about h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .main_about p {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 3.3;
        letter-spacing: 2px;
        margin-bottom: 60px;
    }
    
    .main_img {
        margin-top: 120px;
    }
    
    .main_img_01 {
        width: 45%;
        height: 540px;
        background-position: right 65%;
    }

    .br_pc {
        display: block;
    }
}/* pc 769px */

/* CAMPAIGN */
.section--campaign {
    padding: 60px 0px 30px;
    background-color: var(--primary-beige);
    position: relative;
}

.campaign_box {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    clear: both;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    padding-bottom: 30px;
}

/* スクロールバー */
.campaign_box::-webkit-scrollbar {
    height: 8px;
    width: 8px;
    display: block !important;
}

.campaign_box::-webkit-scrollbar-track {
    background: var(--primary-white);
}

.campaign_box::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

/* body全体のスクロール設定 */
html, body {
    overflow-x: scroll !important;
    overflow-y: scroll !important;
}

.campaign_item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 30px;
    background-color: var(--primary-white);
    position: relative;
}

.campaign_item_link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.campaign_item_link img {
    padding-bottom: 15px;
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.arrow_s {
    position: relative;
    margin: 0 8%;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-white);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow.left {
    left: -20px;
}

.arrow.right {
    right: -20px;
}

.arrow:hover {
    opacity: 1;
}

.campaign_img {
    object-position: 25% 0%;
}

.campaign_item_txt {
    text-align: center;
    font-family: var(--primary-font);
}

.campaign_item_txt h3 {
    font-size: 1.5rem;
    letter-spacing: 1.8px;
    border-bottom: 1px solid var(--primary-black);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cam_topics {
    color: var(--primary-red);
    font-size: 1.6rem;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    line-height: 23px;
}

.cam_txt {
    font-size: 1.4rem;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
    line-height: 23px;
}

.cam_verawang {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30px;
    padding: 5px 3.8%;
    background-color: var(--primary-red);
    color: var(--primary-white);
    font-size: 1.4rem;
    letter-spacing: 1.4px;
}

@media screen and (min-width: 769px) {
    .campaign_box {
        gap: 50px;
    }

    .campaign_item {
        flex: 0 0 calc((100% - 100px) / 2); /* 3つ並べつつ、合計で2つ分の50px間隔を確保 */
    }

    .campaign_item_link img {
        height: 100%;
    }

    /* .campaign_item_txt h3 {
        font-size: 1.8rem;
        letter-spacing: 0px;
    } */

    .cam_topics {
        /* font-size: 2rem; */
        font-weight: 700;
        line-height: 30px;
    }
    
    .cam_txt {
        /* font-size: 1.6rem; */
        font-weight: 400;
        line-height: 25px;
    }

    .cam_verawang {
        /* font-size: 1.6rem; */
        font-weight: 700;
        letter-spacing: 1.6px;
        padding: 5px 1%;
    }

    .cam_topics {
        margin-bottom: 8px;
    }
}/* pc 769px */

@media screen and (min-width: 1024px) {
    .campaign_item {
        flex: 0 0 calc((100% - 100px) / 3); /* 3つ並べつつ、合計で2つ分の50px間隔を確保 */
    }
}

/* plan */
.plan_box {
    padding: 40px 5.1% 60px;
}

.plan_item {
    padding: 60px 0px 60px;
}

.plan_item:first-of-type {
    padding: 0 0 60px;
}

.plan_img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.plan_area {
    display: none;
}

.plan_section{
    padding: 0 5.1%;
    font-family: var(--primary-font);
    position: relative;
}

.plan_titel {
    background-color: var(--primary-gold);
    color: var(--primary-white);
    font-size: 1.5rem;
    text-align: center;
    padding: 5px 0;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.plan_price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.plan_price span {
    font-size: 1.8rem;
    letter-spacing: 2.5px;
}

.plan_price p {
    font-size: 1.2rem;
    line-height: 45px;
    letter-spacing: 1.8px;
}

.plan_txt {
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 3vw;
    line-height: 25px;
    clear: both;
    position: relative;
    z-index: 1;
}

.plan_sab {
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* 影をつける */
}

.plan_content {
    font-family: var(--primary-font);
    font-size: 3vw;
    line-height: 23px;
    margin-bottom: 20px;
}

.plan_sab_txt {
    position: relative; /* 擬似要素の基準 */
    padding-left: 1.4em; /* 記号の分だけ左に余白を作る */
    margin-bottom: 5px;
}

.plan_sab_txt:last-of-type {
    margin-bottom: 0;
}

.plan_sab_txt::before {
    content: "※";
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-size: 1.2em; /* 記号のサイズ */
}

.plan_content {
    margin-top: 7px;
    font-size: 3vw;
    line-height: 28px;
}

.plan_box_txt {
    position: relative; /* 擬似要素の基準 */
    padding-left: 1.2em; /* 記号の分だけ左に余白を作る */
    margin-bottom: 5px;
}

.plan_box_txt::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-size: 1.2em; /* 記号のサイズ */
}

@media screen and (min-width: 769px){
    .plan_titel {
        font-size: 1.8rem;
    }

    .plan_price span {
        font-size: 2rem;
    }

    .plan_box {
        padding: 60px 7%;
    }
    
    .plan_item {
        display: flex;
        justify-content: space-between;
        align-items: center; /* 縦方向の中央揃え */
        flex-wrap: nowrap; /* 折り返しを防ぐ */
        gap: 20px; /* 画像とテキストの間に適度な余白 */
    }
    
    .plan_img {
        width: 50%;
        margin-bottom: 0;
        box-sizing: border-box;
    }

    .plan_txt {
        font-size: 1.6rem;
    }

    .plan_sab {
        padding: 10px 30px;
    }

    .plan_content {
        font-size: 1.4rem;
    }

    .plan_box_txt {
        padding-left: 1.4em;
        margin-bottom: 10px;
    }
    
    .plan_wrapper {
        display: flex;
        flex-direction: column;
        flex-basis: 50%; /* 画像と同じ幅にする */
        /* padding-left: 4.2%; */
        box-sizing: border-box;
    } 

    .plan_item:nth-child(even) {
        flex-direction: row-reverse;
    }
}/* pc 769px */

/* GALLERY */
.section--gallery {
    background-color: var(--primary-beige);
    padding: 60px 0;
}

@keyframes infiniteScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .scroll_wrap {
    width: 100%;
    overflow: hidden;
}

.scroll_track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 80s linear infinite; /* スピードを遅く */
    clear: both;
    position: relative;
    z-index: 1;
}

.scroll_inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 40px;
}
  
  /* 無限スクロール用に複製 */
  .scroll_inner::after {
    content: "";
    display: flex;
  }
  
  .scroll_cont {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    width: 330px; /* 横サイズ */
    height: 207px; /* 縦サイズ */
    background-size: cover;
    background-position: center;
  }
  
  /* 背景画像 */
  .scroll_cont:nth-of-type(4n + 1) {
    background-image: url(../image/TOP/gallery-01.webp);
}
  .scroll_cont:nth-of-type(4n + 2) {
    background-image: url(../image/TOP/gallery-02.webp);
}
  .scroll_cont:nth-of-type(4n + 3) {
    background-image: url(../image/TOP/gallery-03.webp);
}
  .scroll_cont:nth-of-type(4n + 4) {
    background-image: url(../image/TOP/gallery-04.webp);
} 

.scroll_btn {
    padding: 0 5.1%;
}

@media screen and (min-width: 769px){
    .scroll_cont {
        width: 446px; /* 横サイズ */
        height: 280px; /* 縦サイズ */
    }

}/* pc 769px */