
.sp-style {
    display: none;
}

.sub-top {
    margin-bottom: 7rem;
}

.section-content {
    margin-bottom: 14rem;
}

.section-content h2 {
    font-size: calc(var(--s-val)*3);
}

.section-content h3 {
    font-size: calc(var(--s-val)*3);
}

.section-top_text {
    margin-bottom: 5rem;
}

.section-top_text h1 {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    font-size: calc(var(--s-val)*3.6);
}

.section-top_text h1::before {
    content: "";
    width: 5%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: -3rem;
    transform: translateX(-50%);
}

.section-top_text p {
    text-align: center;
    width: 62%;
    margin: 0 auto;
    font-size: calc(var(--s-val) * 1.6);
}

.section-content .section-title {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    color: #000;
    padding: 3% 0;
    margin-bottom: 6rem;
    align-items: center;
}

.section-text h2 {
    margin-bottom: 2.5rem;
    line-height: 1;
}

.section-text h2 span {
    font-size: calc(var(--s-val)*8);
    line-height: 1;
}

.wisking-area .section-text h2 span {
    font-size: calc(var(--s-val)*7);
}

.section-title_detail p {
    font-size: calc(var(--s-val)*1.6);
    width: 90%;
    line-height: 2.5;
}

.section-text {
    width: 40%;
    font-weight: bold;
}

.section-photo {
    width: 46%;
    display: flex;
    align-items: center;
}

/*効果*/

.detail-title {
    margin-bottom: 3rem;
    text-align: center;
}

.detail-title h3 {
    text-align: center;
    font-size: calc(var(--s-val)*4.3);
    position: relative;
    display: inline-block;
}
  
  .detail-title h3::before,
  .detail-title h3::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
  }
  
  .detail-title h3::before {
    left: 0;
    transform: translate(-100%, -50%) rotate(77deg);
  }
  
  .detail-title h3::after {
    right: 0;
    transform: translate(100%, -50%) rotate(-77deg);
  }
  

.detail-wrapper {
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 7rem;
    width: 83%;
}

.detail-list {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
}

.detail-list dt {
    background-color: #EB6200;
    text-align: center;
    font-size: calc(var(--s-val)*2);
    min-height: calc(var(--s-val)*8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
}

.detail-list dd {
    color: #000;
    font-size: calc(var(--s-val)*1.6);
    padding: 5% 7% 10%;
}

/*注意点*/

.section-content {
    background-repeat: no-repeat;
    position: relative;
}

.aufguss-area::before,
.wisking-area::before,
.kugel-area::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
    max-width: 1400px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}


.aufguss-area::before {
    background-image: url(../images/event/aufguss-bg.png);
    background-size: 25%;
    background-position: bottom 0rem right 0rem;
}

.wisking-area::before {
    background-image: url(../images/event/wisking-bg.png);
    background-size: 32%;
    background-position: bottom 4rem right 0rem;
}

.kugel-area::before {
    background-image: url(../images/event/kugel-bg.png);
    background-size: 29%;
    background-position: bottom 8rem right 0;
}

.note-title {
    width: 85%;
    margin: 0 0 0 auto;
    padding-bottom: 7rem;
}

.note-title h3 {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    white-space: nowrap;
    gap: 30px;
}

.note-title h3::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
}

dl.note-content {
    width: 60%;
}

.kugel-area dl.note-content {
    width: 62%;
}

dl.note-content:nth-child(2) {
    margin-bottom: 3rem;
}

.note-content dt {
    font-size: calc(var(--s-val)*2);
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.note-content dt::before {
    content: "";
    width: 2px;
    height: 35px;
    display: block;
    background-color: #fff;
    margin-right: 10px;
}

.note-content dd {
    font-size: calc(var(--s-val)*1.6);
    line-height: 2;
}

a.schedule-btn {
    text-align: center;
    background-color: #EB6200;
    border-radius: 100px;
    padding: 2% 0;
    display: block;
    width: 25%;
    margin: 0 auto;
    font-size: calc(var(--s-val)*2);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    max-width: 350px;
    
}

@media screen and (max-width: 1200px) {
    .section-text {
        width: 46%;
    }

    .note-title {
        width: 90%;
    }
}

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

    .pc-style {
        display: none;
    }

    .section-top_text h1 {
        margin-bottom: 6rem;
        font-size: calc(var(--s-val) * 3);
    }

    .section-top_text h1::before {
        width: 20%;
        bottom: -2rem;
    }

    .section-top_text {
        margin-bottom: 6rem;
    }

    .section-top_text p {
        width: 80%;
        font-size: calc(var(--s-val) * 1.8);
    }

    .section-content .section-title {
        flex-direction: column-reverse;
        padding: 10% 0;
    }

    .section-photo {
        width: 90%;
        margin: 0 0 2rem auto;
    }

    .section-text {
        width: 90%;
        margin: 0 0 0 auto;
    }

    .section-content h2 {
        font-size: calc(var(--s-val) * 3);
    }

    .section-text h2 span {
        font-size: calc(var(--s-val) * 8);
    }

    .wisking-area .section-text h2 span {
        font-size: calc(var(--s-val) * 5);
    }

    .section-title_detail p {
        font-size: calc(var(--s-val) * 2);
        margin: 0;
    }

    .section-text h2 {
        margin-bottom: 1rem;
    }

    .detail-title h3 {
        font-size: calc(var(--s-val) * 3.5);
        padding: 0 0rem;
    }

    .detail-list dt {
        font-size: calc(var(--s-val) * 2);
        min-height: calc(var(--s-val) * 7);
    }

    .detail-list dd {
        font-size: calc(var(--s-val) * 1.8);
    }

    .detail-title h3::before {
        transform: translate(-100%, -50%) rotate(80deg);
    }

    .detail-title h3::after {
        transform: translate(100%, -50%) rotate(-80deg);
    }

    .detail-title h3::before, .detail-title h3::after {
        width: 30px;
    }

    .detail-title {
        margin-bottom: 2rem;
    }

    .detail-wrapper {
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto 5rem;
        flex-direction: column;
    }

    .note-content dt {
        font-size: calc(var(--s-val) * 2.5);
    }

    .note-content dd {
        font-size: calc(var(--s-val) * 2);
    }

    .note-title {
        margin: 0 0 0 auto;
    }

    .note-title h3 {
        font-size: calc(var(--s-val) * 3.5);
    }

    .section-content {
        margin-bottom: 5rem;
    }

    dl.note-content {
        width: 90%;
    }

    .kugel-area dl.note-content {
        width: 90%;
    }

    .aufguss-area::before,
    .wisking-area::before,
    .kugel-area::before {
        opacity: 0.4;
    }

    .aufguss-area::before {
        background-size: 70%;
        background-position: bottom 6rem right 50%;
    }

    .wisking-area::before {
        background-size: 90%;
        background-position: bottom 4rem right 50%;
    }

    .kugel-area::before {
        background-size: 60%;
        background-position: bottom 6rem right 50%;
    }

    a.schedule-btn {
        padding: 5% 0;
        width: 80%;
        font-size: calc(var(--s-val) * 2.2);
    }
}