@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;
}

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

.image {
    background-image: url(../image/campaign/04_Oksanamha/SPAC_00008.jpg);
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.image_title {
    background-color: var(--primary-gold);
    color: var(--primary-white);
    padding: 5px 10.8%; /* 横幅を適度に調整 */
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1.15px;
    white-space: nowrap; /* テキストを1行に収める */

    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content; /* 内容に応じた幅にする */
}

@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;
    }

    .image_title {
        padding: 9px 13%;
        font-size: 2.3rem;
        letter-spacing: 2px;

        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}/* pc 769px */

/* main */
.main_top {
    padding: 100px 7% 60px;
    margin-bottom: 30px;
}

.main_top_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* h2と線の間隔を調整 */
    margin-bottom: 40px;
}
  
.main_top_heading::before,
.main_top_heading::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background-color: #000;
}

.main_top h2 {
    /* text-align: left; */
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.main_top p {
    text-align: center;
    font-size: 13px;
    line-height: 40px;
    letter-spacing: 0.65px;
    margin-bottom: 70px;
}

.main_imgbox {
    position: relative;
    width: 100%;
    height: 440px; /* 必要に応じて高さ調整 */
}

.main_imgbox .main_img_01,
.main_imgbox .main_img_02 {
  width: 47%;
  height: 320px;
  object-fit: cover;
  position: absolute;
}

.main_imgbox .main_img_01 {
  top: 0;
  left: 0;
}

.main_imgbox .main_img_02 {
  bottom: 0;
  right: 0;
  top: 120px; /* 120px下げる指定 */
}

@media screen and (min-width:769px){
    .main_top {
        padding: 150px 10.4% 100px;
    }

    .main_top_heading {
        margin-bottom: 60px;
    }

    .main_top h2 {
        font-size: 2.5rem;
        letter-spacing: 18.5px;
    }

    .main_top p {
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 4;
        letter-spacing: 2px;
        margin-bottom: 180px;
    }

    .main_imgbox {
        height: 680px;
    }

    .main_imgbox .main_img_01 {
        width: 53%;
        height: 540px;
        object-position: 0% 80%;
    }
    
    .main_imgbox .main_img_02 {
        width: 36%;
        height: 420px;
        object-position: 0% 85%;
    }

    .main_imgbox .main_img_02 {
        top: 260px;
    }

}/* pc 769px */

/* PLAN */
.plan-section {
    width: 100%;
    text-align: center;
    padding: 30px 7% 20px;
}
  
  /* メイン画像 */
.main-image-area {
    width: 100%;
    height: 440px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.main-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: 100%; */
    transition: opacity 0.5s ease;
}

.tab-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}
  
.tab-button {
    width: 150px;
    padding: 10px 20px;
    border: 1px solid var(--primary-gold);
    background: var(--primary-white);
    color: var(--primary-gold);
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
  
.tab-button.active {
    background: var(--primary-gold);
    color: var(--primary-white);
}
  
.tab-content {
    display: none;
    padding: 20px 4%;
    border: 1px solid var(--primary-gold);
    border-radius: 5px;
    margin-bottom: 30px;
}
  
.tab-content.active {
    display: block;
} 
  
  /* タブコンテンツ */
.tab-contents {
    max-width: 800px;
    margin: auto;
}
  
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
  
.tab-content.active {
    display: block;
    opacity: 1;
}
  
  /* 共通説明 */
.common-detail {
    border-radius: 50px;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.tab_main {
    margin-bottom: 30px;
}

.tab_main h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}

.tab_main p {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    margin-bottom: 15px;
}

.summary {
    font-family: var(--primary-font);
    font-size: 1.3rem;
}

.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.3rem;
    letter-spacing: 1.8px;
}

.plan_title {
    font-family: var(--primary-font);
    background-color: var(--primary-gold);
    color: var(--primary-white);
    font-size: 1.3rem;
    text-align: center;
    padding: 5px 0;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 15px;
    margin-left: 5.1%;
    margin-right: 5.1%;
}

.plan_section p {
    font-family: var(--primary-font);
}

.plan_detail {
    background-color: var(--primary-beige);
    padding: 15px 5%;
    margin-bottom: 20px;
}

.detail_box {
    display: flex;
    align-items: baseline;
}

.plan_sab_title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-right: 15px;
}

.plan_sab_txt {
    font-size: 1.1rem;
}

.detail_item {
    width: 100%;
    font-size: 1.4rem;
    border: 1.5px solid var(--primary-gold);
    background-color: var(--primary-white);
    padding: 8px 0%;
    text-align: center;
    margin-bottom: 13px;
}

.plan_option_box {
    padding: 30px 5%;
}

.plan_option {
    background-color: var(--primary-beige);
    padding: 15px 5%;
    margin-bottom: 20px;
}

.option_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background-color: var(--primary-white);
    padding: 10px 10%;
    text-align: center;
    margin-bottom: 13px;
}

.option_title {
    font-size: 1.4rem;
}

.option_price {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.option_sob {
    width: 100%;
    font-family: var(--primary-font);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-align: center;
    border-top: 1px solid var(--primary-black);
    padding-top: 5px;
    margin-top: 5px;
} 

@media screen and (min-width:769px){
    .set_title {
        margin-top: 0px;
    }

    .plan-section {
        padding: 60px 7%;
    }
    
    .set_title h2 {
        font-size: 2.2rem;
        padding-bottom: 10px;
    }

    .main-image-area {
        width: 40%;
        height: 620px;
        margin-top: 50px;
        margin-bottom: 0px;
    }

    .plan_box {
        display: flex;
        justify-content: space-between;
    }

    .plan_local {
        width: 55%;
        padding-top: 20px;
    }

    .tab-content {
        margin-bottom: 0px;
    }

    .tab-buttons {
        justify-content: center;
        gap: 45px;
    }

    .tab_main {
        margin-bottom: 0px;
    }
    
    .tab_main h2 {
        margin-bottom: 10px;
    }
    
    .tab_main p {
        margin-bottom: 10px;
    }

    .plan_title {
        font-size: 1.5rem;
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .plan_txt {
        font-size: 1.8rem;
        line-height: 35px;
        margin-top: 25px;
    }

    .plan_section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        padding: 30px 0%;
    }

    .set_box {
        width: 85%;
        display: flex;
        justify-content: space-between;
    }

    .plan_set:first-of-type {
        margin-top: 60px;
    }

    .plan_detail {
        width: 100%;
        height: 100%;
        padding: 25px 5%;
        margin-bottom: 0;
    }

    .plan_option {
        width: 100%;
        height: 100%;
        padding: 25px 5%;
        margin-top: 80px;
        margin-bottom: 0;
    }

    .detail_box {
        margin-bottom: 5px;
    }

    .plan_sab_title {
        font-size: 1.6rem;
    }

    .plan_sab_txt {
        font-size: 1.4rem;
    }

    .detail_item {
        font-size: 1.4rem;
        padding: 10px 0;
    }

    .option_item {
        margin-bottom: 17px;
        align-items: baseline;
    }

    .option_title {
        font-size: 1.4rem;
        padding: 10px 0;
    }

    .option_price {
        font-size: 1.7rem;
    }

    .option_sob {
        font-size: 1.4rem;
        letter-spacing: 2px;
        text-align: left;
        margin-top: 0px;
    }
}/* pc 769px */

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

.contents {
    padding: 50px 5% 0px;
}

.contents_item {
    padding: 20px;
    background-color: var(--primary-white);
    margin-bottom: 20px;
    border: 1px solid var(--primary-black);
}

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

.contents_item a{
    display: flex;
    align-items: center;
}

.contents_item img {
    width: 60%;
    height: 110px;
    object-fit: cover;
}

.contents_txt {
    margin-left: 3.8%;
}

.contents_txt h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.contents_txt p {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.2px;
}

@media screen and (min-width:769px){
    .section--contents {
        padding: 80px 0px 80px 5%;
    }
    
    .contents {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 50px 5% 0px 0px;
        gap: 30px;
    }
    
    .contents_item {
        width: calc(50% - 15px);
        margin-bottom: 0px;
    }

    .contents_item img {
        height: 160px;
    }

    .contents_txt h3 {
        font-size: 2rem;
    }

    .contents_txt p {
        font-size: 1.5rem;
    }
}/* pc 769px */