/***** 共通 *****/
html {
    font-family: "Noto Sans JP", sans-serif;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

a,
button {
    transition: all .3s ease;
    cursor: pointer;
}

a:hover,
button:hover {
    opacity: .7;
    transition: all .3s ease;
}

.bg.x {
    transform: scale(-1, 1);
}

.bg.y {
    transform: scale(1, -1);
}

.bg.xy {
    transform: scale(-1, -1);
}

.bg img {
    width: 100%;
}

h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
}

/***** ヘッダー *****/
header {
    width: 100vw;
    height: 100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

header .header-l {
    width: 15%;
}

header .header-l img {
    width: 100%;
}

header .header-r a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #FF9824;
    color: #fff;
    border-radius: 2rem;
}

/***** メインビジュアル *****/
#mv {
    margin-top: 100px;
    width: 100%;
    height: 60vh;
}

#mv img {
    width: 100%;
    object-fit: cover;
}

/***** 魅力ポイント *****/
#attraction {
    padding: 100px 0;
    text-align: center;
}

#attraction .intro span {
    display: inline-block;
    color: #FFA218;
    font-size: 1.5rem;
    font-weight: 500;
    padding: .3rem;
    border-bottom: 4px solid #FFA218;
}

#attraction .intro h2 {
    font-size: 3rem;
    font-weight: 600;
}

#attraction .intro p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 50px 0;
}

#attraction .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 3rem;
}

#attraction .content .item {
    width: calc((100% - 3rem) / 2);
}

#attraction .content .item p {
    aspect-ratio: 3 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 300;
    background: #F4F4F4;
    border-radius: 1.3rem;
    padding: 2rem;
}

#attraction .content .item .icon-area {
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

#attraction .content .item .icon-area::before,
#attraction .content .item .icon-area::after {
    content: '';
    background-color: #F4F4F4;
    border-radius: 50%;
    position: absolute;
    aspect-ratio: 1 / 1;
}

#attraction .content .item .icon-area::before {
    width: 25px;
    top: 5%;
    right: 5%;
}

#attraction .content .item .icon-area::after {
    width: 15px;
    top: 15%;
    right: 15%;
}

#attraction .content .item .icon-area img {
    aspect-ratio: 1 / 1;
    width: 250px;
}

/***** 各メインコンテンツ *****/
.main-item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
}

.main-item .text-area {
    width: 45%;
}

.main-item .text-area p {
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-item .text-area p span {
    color: #fff;
    font-size: 1.1rem;
    padding: .3rem .7rem;
    border-radius: 30px;
}

.main-item .text-area .add-txt {
    display: inline-block;
    font-weight: 600;
    margin-top: .7rem;
}

.main-item .text-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.main-item .text-area .sub-txt {
    margin-top: .5rem;
}

.main-item .text-area .sub-txt p {
    display: block;
    font-size: 1.1rem;
    font-weight: normal;
}

.main-item .text-area .sub-txt p span {
    color: #000;
    position: relative;
}

.main-item .text-area .sub-txt p span::before {
    content: '';
    background: #00A6FF30;
    height: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
}

.main-item .img-area {
    width: calc(55% - 45px);
    display: flex;
    align-items: center;
    gap: -1.5rem;
}

/** 写真1枚 **/
.main-item.photo1 .img-area {
    position: relative;
}

.main-item.photo1 .img-area img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 1rem;
}

.main-item.photo1 .img-area .blur-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.main-item.photo1 .img-area .tabelog {
    width: 300px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/** 写真2枚 **/
.main-item.photo2 .img-area img {
    width: calc(100% / 2);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
}

.main-item.photo2 .img-area img.left {
    transform: rotate(-3deg);
    margin-bottom: 3rem;
}

.main-item.photo2 .img-area img.right {
    transform: rotate(3deg);
    margin-top: 3rem;
}

/** 右向き **/
.main-item.right {
    flex-direction: row-reverse;
}

/***** 泡盛講座 *****/
#workshop {
    padding: 50px 0;
}

.workshop-inner {
    background: #FFF7D9;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.workshop-inner .schedule {
    margin-bottom: 20px;
}

.workshop-inner .schedule .level-tab {
    width: 100%;
    display: flex;
    gap: 10px;
}

.workshop-inner .schedule .level-tab button {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: calc((100% - 10px) / 2);
    background: #E9F8FF;
    color: #01B0FF;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
}

.workshop-inner .schedule .level-tab button.active {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(-20deg, rgba(0, 176, 255, 1) 0%, rgba(0, 176, 255, 1) 35%, rgba(255, 255, 255, 1) 100%);
}

.workshop-inner .schedule .area-tab-group {
    background: #fff;
    padding: 50px;
    border-radius: 0 0 15px 15px;
}

.workshop-inner .schedule .area-tab-group .area-tab-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.workshop-inner .schedule .area-tab-group .area-tab {
    display: block;
    width: 20%;
}

.workshop-inner .schedule .area-tab-group .area-tab button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #E9F8FF;
    padding: 10px 0;
    color: #01B0FF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.workshop-inner .schedule .area-tab-group .area-tab button.active {
    background: linear-gradient(-20deg, rgba(255, 152, 36, 1) 14%, rgba(255, 152, 36, 1) 76%, rgba(255, 255, 255, 1) 100%);
    color: #fff;
}


.workshop-inner .schedule .area-tab-group .tab-content .ttl h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.workshop-inner .schedule .area-tab-group .tab-content .ttl .label {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.workshop-inner .schedule .area-tab-group .tab-content .ttl .label li {
    background: #FF9824;
    color: #fff;
    padding: .3rem .5rem;
    border-radius: 5px;
}

.workshop-inner .schedule .area-tab-group .tab-content .info {
    margin: 20px 0;
}

.workshop-inner .schedule .area-tab-group .tab-content .info li {
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workshop-inner .schedule .area-tab-group .tab-content .info li a {
    color: #0037FF;
    font-weight: 600;
    border-bottom: .5px solid #0037FF;
}

.workshop-inner .schedule .area-tab-group .tab-content .sem-inner p {
    padding: 5px 10px;
    border-radius: 5px;
    background: #F8F8F8;
    width: fit-content;
}

.workshop-inner .schedule .area-tab-group .tab-content .sem-inner ul {
    margin-top: 5px;
    padding-left: 30px;
}

.workshop-inner .schedule .area-tab-group .tab-content .sem-inner ul li {
    list-style-type: disc;
}

.workshop-inner .instructor {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
}

.workshop-inner .instructor h2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    color: #fff;
    background: #01B0FF;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.workshop-inner .instructor .instructor-inner {
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: start;
    gap: 2rem;
}

.workshop-inner .instructor .instructor-inner .img-wrap {
    width: calc(20% - 2rem);
    aspect-ratio: 1 / 2;
}

.workshop-inner .instructor .instructor-inner .img-wrap img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
}

.workshop-inner .instructor .instructor-inner .text-wrap {
    width: 80%;
}

.workshop-inner .instructor .instructor-inner .text-wrap h3 {
    font-size: 2rem;
    font-weight: 600;
}

.workshop-inner .instructor .instructor-inner .text-wrap .post {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 20px 0;
}

.workshop-inner .instructor .instructor-inner .text-wrap .post li {
    width: fit-content;
    color: #3E3E3E;
    font-size: 1.1rem;
}

/** 自慢の１品キャンペーン **/
.photo-inner {
    margin-top: 50px;
}

.photo-inner .ttl-wrap {
    width: 100%;
    margin: 50px 0;
    text-align: center;
}

.photo-inner .ttl-wrap p {
    font-size: 2rem;
}

.photo-inner .ttl-wrap h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFB218;
    position: relative;
}

.photo-inner .ttl-wrap h2::before,
.photo-inner .ttl-wrap h2::after {
    content: '';
    width: 200px;
    height: 120px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.photo-inner .ttl-wrap h2::before {
    background: url(../img/champuru.png) no-repeat;
    background-size: contain;
    left: 0;
}

.photo-inner .ttl-wrap h2::after {
    background: url(../img/tebichi.png) no-repeat;
    background-size: contain;
    right: 0;
}

.photo-inner .ttl-wrap .sub span {
    display: block;
    width: fit-content;
    background: #008FFF;
    color: #fff;
    padding: 5px 1rem;
    margin: 30px auto;
}

.photo-inner .ttl-wrap .sub p {
    font-size: 1.8rem;
}

.photo-inner .prize-wrap .item {
    width: 720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
    position: relative;
}

.photo-inner .prize-wrap .item .capa {
    background: url(../img/bl_ball.png) no-repeat;
    width: 160px;
    aspect-ratio: 3 / 2;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-inner .prize-wrap .item .capa p {
    text-align: center;
    color: #fff;
}

.photo-inner .prize-wrap .item .prize-name p {
    background: url(../img/bl_ribbon.png) no-repeat;
    width: fit-content;
    background-size: contain;
    padding: 5px 25px;
}

.photo-inner .prize-wrap .item .prize-name p span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F31B59;
}

.photo-inner .prize-wrap .item .prize-name h3 {
    font-size: 2.5rem;
    font-weight: 600;
}

.photo-inner .prize-wrap .item img {
    width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.photo-inner .prize-wrap .img-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px 0;
}

.photo-inner .prize-wrap .img-list li {
    width: calc((100% - 40px) / 3);
}

.photo-inner .prize-wrap .img-list li img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.photo-inner .term-wrap {
    margin: 50px 0;
}

.photo-inner .term-wrap h2 {
    width: fit-content;
    padding: 5px 45px 7px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 30px auto;
    position: relative;
    background: url(../img/mi_ribbon.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.photo-inner .term-wrap h3 {
    color: #00B0FF;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 3rem;
    text-align: center;
}

.photo-inner .term-wrap .item {
    margin-bottom: 30px;
}

.photo-inner .term-wrap .item p {
    width: fit-content;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    padding: .2rem 1rem;
    background: #00B0FF;
    border-radius: 25px;
}

.photo-inner .term-wrap .item ul li {
    margin-left: 2rem;
    list-style-type: disc;
}

.photo-inner .term-wrap .item ul li.bold {
    font-weight: 600;
}

.photo-inner .term-wrap .item ul li.kome {
    list-style: none;
    position: relative;
}

.photo-inner .term-wrap .item ul li.kome::before {
    content: '※';
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
}

.photo-inner .term-wrap .entry-form a {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #FF9824;
    color: #fff;
    border-radius: 2rem;
}

/***** POPキャンペーン *****/
#pop-cp {
    padding: 50px 0;
    background: #fffcf5;
    margin: -1px 0;
}

/***** 食べログキャンペーン *****/
#tabelog-cp {
    padding: 50px 0;
}

/***** よくある質問 *****/
#faq {
    background: #fffcf5;
    margin: -1px 0;
    padding: 50px 0;
}

#faq .section-ttl {
    color: #00B0FF;
    text-align: center;
    margin-bottom: 3rem;
}

#faq .section-ttl p {
    font-size: 3rem;
    font-weight: 800;
}

#faq .section-ttl span {
    font-size: 1.2rem;
}

#faq .faq-inner {}

#faq .faq-inner .qa-7 {
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    color: #00B0FF;
    background-color: #F2FAFF60;
}

#faq .faq-inner .qa-7 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 2rem 4rem;
    font-weight: 600;
    cursor: pointer;
}

#faq .faq-inner .qa-7 summary::before,
#faq .faq-inner .qa-7 p::before {
    position: absolute;
    left: 2em;
    font-weight: 600;
    font-size: 1.3em;
    transform: translate(-100%, -60%);
}

#faq .faq-inner .qa-7 summary::before {
    color: #00B0FF;
    content: "Q";
    top: 50%;
}

#faq .faq-inner .qa-7 summary::after {
    content: '';
    position: absolute;
    right: 2em;
    aspect-ratio: 1 / 1;
    width: 20px;
    background: url(../img/plus.png);
    background-size: contain;
}

#faq .faq-inner .qa-7[open] summary::after {
    background: url(../img/minus.png);
}

#faq .faq-inner .qa-7 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 2em;
    padding-left: 4rem;
    color: #00B0FF;
    transition: transform .5s, opacity .5s;
}

#faq .faq-inner .qa-7[open] p {
    transform: none;
    opacity: 1;
}

#faq .faq-inner .qa-7 p::before {
    color: #00B0FF;
    line-height: 1.2;
    content: "A";
    top: 50%;
}

/***** ベネフィット *****/
#benefit {
    padding: 100px 0;
}

#benefit .intro {
    margin-bottom: 3rem;
    text-align: center;
}

#benefit .intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFA218;
    margin-bottom: 1rem;
}

#benefit .intro p {
    font-size: 1rem;
    line-height: 1.5;
}

#benefit .benefit-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

#benefit .benefit-list li {
    width: 300px;
    text-align: center;
}

#benefit .benefit-list li svg {
    aspect-ratio: 1 / 1;
}

#benefit .benefit-list li h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 1rem 0;
}

/***** お問い合わせ導線CTA *****/
#cta {
    background: #f4fbff;
}

#cta .inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

#cta .img-area {
    width: calc((100% - 2rem) / 2);
}

#cta .img-area img {
    height: 500px;
    object-fit: contain;
}

#cta .txt-area {
    width: calc((100% - 2rem) / 2);
}

#cta .txt-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

#cta .txt-area p {
    margin: 1rem 0;
}

#cta .txt-area a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #FF9824;
    color: #fff;
    padding: 1rem 0;
    border-radius: 30px;
}

/***** フッター *****/
footer {
    text-align: center;
    padding: 100px 0 30px;
}

footer img {
    width: 200px;
}

footer .copyright {
    margin-top: 3.5rem;
}

@media screen and (max-width: 767px) {

    /***** 共通 *****/
    .inner {
        max-width: 390px;
        padding: 0 15px;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    :root {
        --header-height: 80px;
    }

    /***** ヘッダー *****/
    header {
        height: fit-content;
        padding: 10px;
    }

    header .header-l {
        width: 40%;
    }

    header .header-r {
        width: 50%;
    }

    header .header-r a {
        width: 100%;
        gap: .5rem;
        padding: .45rem .7rem;
        font-size: 3vw;
    }

    /***** メインビジュアル *****/
    #mv {
        margin-top: var(--header-height);
        height: 500px;
    }

    /***** 魅力ポイント *****/
    #attraction {
        padding: 50px 0;
    }

    #attraction .intro span {
        font-size: 1.25rem;
        padding: .2rem;
        border-bottom: 3px solid #FFA218;
    }

    #attraction .intro h2 {
        font-size: 2rem;
    }

    #attraction .intro p {
        font-size: 1rem;
        font-weight: 400;
        margin: 20px 0;
    }

    #attraction .content {
        column-gap: .8rem;
    }

    #attraction .content .item {
        box-sizing: border-box;
        width: calc((100% - .8rem) / 2);
    }

    #attraction .content .item p {
        aspect-ratio: auto;
        font-size: 3.5vw;
        border-radius: .35rem;
        padding: .8rem .45rem;
        height: 220px;
    }

    #attraction .content .item .icon-area::before {
        width: 20px;
    }

    #attraction .content .item .icon-area::after {
        width: 10px;
    }

    /***** 各メインコンテンツ *****/
    .main-item {
        flex-wrap: wrap;
        gap: 25px;
    }

    .main-item .text-area {
        width: 100%;
    }

    .main-item .text-area p {
        font-size: 1.2rem;
        gap: .5rem;
    }

    .main-item .text-area p span {
        font-size: 1rem;
    }

    .main-item .text-area h2 {
        font-size: 7vw;
    }

    .main-item .text-area .sub-txt p {
        font-size: 1rem;
    }

    .main-item .text-area .sub-txt p span {
        color: #000;
        position: relative;
    }

    .main-item .text-area .sub-txt p span::before {
        bottom: 10%;
    }

    .main-item .img-area {
        width: 100%;
    }

    /** 写真1枚 **/
    .main-item.photo1 .img-area img {
        aspect-ratio: 3 / 1.7;
    }

    .main-item.photo1 .img-area .tabelog {
        width: 200px;
    }

    /***** 泡盛講座 *****/
    /***** POPキャンペーン *****/
    /***** 食べログキャンペーン *****/
    #workshop,
    #pop-cp,
    #tabelog-cp {
        padding: 25px 0;
    }

    /***** 泡盛講座 *****/
    .workshop-inner {
        padding: .7rem 1rem;
        border-radius: .7rem;
        margin: 2rem 15px 0;
        border-radius: 5px;
    }

    .workshop-inner .schedule .level-tab {
        gap: 5px;
    }

    .workshop-inner .schedule .level-tab button {
        width: calc((100% - 5px) / 2);
        padding: .8rem;
        border-radius: 5px 5px 0 0;
    }

    .workshop-inner .schedule .level-tab button.active {
        font-size: 1rem;
    }

    .workshop-inner .schedule .area-tab-group {
        padding: 1rem;
        border-radius: 0 0 5px 5px;
    }

    .workshop-inner .schedule .area-tab-group .area-tab-inner {
        flex-wrap: wrap;
        gap: 5px;
    }

    .workshop-inner .schedule .area-tab-group .area-tab {
        width: 100%;
    }

    .workshop-inner .schedule .area-tab-group .area-tab button {
        font-size: 1rem;
        margin-bottom: 5px;
        border-radius: 5px;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .ttl h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .ttl .label {
        gap: 5px;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .ttl .label li {
        padding: .1rem .3rem;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .info {
        margin: 10px 0;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .info li {
        gap: 5px;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .info li svg {
        width: 25px;
        aspect-ratio: 1 / 1;
    }

    .workshop-inner .schedule .area-tab-group .tab-content .info li p {
        width: calc(100% - 30px);
        font-size: .9rem;
    }

    .workshop-inner .instructor {
        padding: 1rem;
        border-radius: 5px;
    }

    .workshop-inner .instructor h2 {
        padding: .7rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .workshop-inner .instructor .instructor-inner {
        width: 100%;
        flex-wrap: wrap;
        gap: .8rem;
    }

    .workshop-inner .instructor .instructor-inner .img-wrap {
        width: 100%;
        aspect-ratio: 3 / 2;
    }

    .workshop-inner .instructor .instructor-inner .img-wrap img {
        aspect-ratio: 3 / 2;
        object-fit: contain;
    }

    .workshop-inner .instructor .instructor-inner .text-wrap {
        width: 100%;
    }

    .workshop-inner .instructor .instructor-inner .text-wrap h3 {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .workshop-inner .instructor .instructor-inner .text-wrap .post {
        flex-wrap: wrap;
        gap: 0;
        column-gap: .8rem;
        margin: 10px 0;
    }

    .workshop-inner .instructor .instructor-inner .text-wrap .post li {
        font-size: 1rem;
    }


    /** 自慢の１品キャンペーン **/
    .photo-inner .ttl-wrap {
        margin: 30px 0;
    }

    .photo-inner .ttl-wrap p {
        font-size: 1.3rem;
    }

    .photo-inner .ttl-wrap h2 {
        font-size: 1.7rem;
    }

    .photo-inner .ttl-wrap h2::before,
    .photo-inner .ttl-wrap h2::after {
        width: 70px;
        height: 40px;
        top: 0;
        transform: translateY(-100%);
    }

    .photo-inner .ttl-wrap .sub span {
        margin: 20px auto;
    }

    .photo-inner .ttl-wrap .sub p {
        font-size: 1.1rem;
    }

    .photo-inner .prize-wrap .item {
        width: 100%;
        gap: 1rem;
    }

    .photo-inner .prize-wrap .item .capa {
        width: 110px;
        aspect-ratio: 1 / 1;
    }

    .photo-inner .prize-wrap .item .capa p {
        line-height: 1;
    }

    .photo-inner .prize-wrap .item .prize-name p {
        padding: 5px 20px;
    }

    .photo-inner .prize-wrap .item .prize-name p span {
        font-size: 1.2rem;
    }

    .photo-inner .prize-wrap .item .prize-name h3 {
        font-size: 1.2rem;
    }

    .photo-inner .prize-wrap .item img {
        width: 100px;
        transform: translate(0, -50%);
    }

    .photo-inner .prize-wrap .img-list {
        gap: 10px;
    }

    .photo-inner .prize-wrap .img-list li {
        width: calc((100% - 20px) / 3);
    }

    .photo-inner .prize-wrap .img-list li img {
        border-radius: 5px;
    }

    .photo-inner .term-wrap h2 {
        font-size: 1.3rem;
        margin: 10px auto;
    }

    .photo-inner .term-wrap h3 {
        font-size: 1.3rem;
    }

    .photo-inner .term-wrap .item p {
        font-size: 1rem;
    }

    /***** よくある質問 *****/
    #faq {
        padding: 25px 0;
    }

    #faq .section-ttl {
        margin-bottom: 1.5rem;
    }

    #faq .section-ttl p {
        font-size: 2rem;
    }

    #faq .section-ttl span {
        font-size: 1rem;
    }


    #faq .faq-inner .qa-7 {
        margin-bottom: 10px;
    }

    #faq .faq-inner .qa-7 summary {
        padding: 1em;
        padding-left: 2rem;
    }

    #faq .faq-inner .qa-7 summary::before,
    #faq .faq-inner .qa-7 p::before {
        left: 1em;
        font-size: 1.2rem;
        transform: translate(-70%, -60%);
    }

    #faq .faq-inner .qa-7 summary::after {
        right: .35rem;
        width: 15px;
    }

    #faq .faq-inner .qa-7 p {
        padding: 1em;
        padding-left: 2rem;
    }

    /***** ベネフィット *****/
    #benefit {
        padding: 25px 0;
    }

    #benefit .intro h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    #benefit .intro p {
        font-size: .9rem;
    }

    #benefit .benefit-list {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    #benefit .benefit-list li {
        width: 100%;
    }

    #benefit .benefit-list li h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: .5rem 0;
    }

    /***** お問い合わせ導線CTA *****/
    #cta .inner {
        flex-wrap: wrap;
        gap: 0;
    }

    #cta .img-area {
        width: 100%;
        text-align: center;
    }

    #cta .img-area img {
        height: 200px;
        object-fit: contain;
    }

    #cta .txt-area {
        width: 100%;
    }

    #cta .txt-area h2 {
        font-size: 1.3rem;
    }

    #cta .txt-area p {
        margin: .5rem 0;
    }

    /***** フッター *****/
    footer {
        text-align: center;
        padding: 30px 15px 15px;
    }

    footer img {
        width: 150px;
    }

    footer .copyright {
        margin-top: 2rem;
    }
}

/***** エントリーフォーム *****/
/** エントリーイントロ **/
#entry-mv {
    width: 100%;
    background: #f4fbff;
    padding: 150px 0 50px;
    text-align: center;
}

#entry-mv h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
}

.bg.entry {
    height: 80px;
}

/** フォーム本体 **/
#entryform {
    padding: 50px 0;
}

#entryform.inner {
    padding: 3rem;
    box-shadow: 0 0 20px #327ABE10;
    border-radius: 1rem;
    margin: 50px auto;
}

#entryform .form-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

#entryform .form-item {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

input[type="text"],
select {
    all: unset;
    box-sizing: border-box;
}

#entryform .form-item p {
    width: 100%;
    font-weight: 600;
    position: relative;
    margin-bottom: .5rem;
}

#entryform .form-item p::after {
    content: '*';
    font-size: 1rem;
    color: #ff0000;
}

#entryform .form-item input[type="text"],
#entryform .form-item select {
    width: 100%;
    height: 45px;
    padding: .5rem 1rem;
    background: #F5F5F5;
    border: 1px solid #CBD6E2;
    border-radius: 3px;
}

#entryform .form-item label:hover {
    cursor: pointer;
}

#entryform .submit-area {
    text-align: center;
}

#entryform .submit-area input[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 1rem 0;
    margin: 10px auto 0;
    background: #FF9824;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    transition: all .3s ease;
}

#entryform .submit-area input[type="submit"]:hover {
    opacity: .7;
    transition: all .3s ease;
    cursor: pointer;
}

#entryform .form-item input[type="text"]::placeholder {
    color: #BFBFBF;
}

#entry-complete {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    padding: 150px 0 50px;
    text-align: center;
}

#entry-complete h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #FF9824;
}

#entry-complete p {
    margin: 40px 0;
    line-height: 2;
}

#entry-complete .gototop {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

#entry-complete .gototop a {
    display: block;
    background: #00B0FF;
    color: #fff;
    font-weight: 600;
    padding: .8rem 2rem;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {

    /***** エントリーフォーム *****/
    /** エントリーイントロ **/
    #entry-mv {
        padding: 50px 0 10px;
        padding-top: calc(var(--header-height) + 1rem);
    }

    #entry-mv h2 {
        font-size: 1.8rem;
        margin-bottom: 1.3rem;
    }

    /** フォーム本体 **/
    #entryform {
        padding: 10px 0;
    }

    #entryform.inner {
        padding: 1.5rem 1rem;
        border-radius: .5rem;
        margin: 0 15px;
    }

    #entryform .form-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    #entryform .form-item {
        width: 100%;
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    input[type="text"],
    select {
        all: unset;
        box-sizing: border-box;
    }

    #entryform .form-item p {
        width: 100%;
        font-weight: 600;
        position: relative;
        margin-bottom: .5rem;
    }

    #entryform .form-item p::after {
        content: '*';
        font-size: 1rem;
        color: #ff0000;
    }

    #entryform .form-item input[type="text"],
    #entryform .form-item select {
        width: 100%;
        height: 45px;
        padding: .5rem 1rem;
        background: #F5F5F5;
        border: 1px solid #CBD6E2;
        border-radius: 3px;
    }

    #entryform .form-item label:hover {
        cursor: pointer;
    }

    #entryform .submit-area {
        text-align: center;
    }

    #entryform .submit-area button[type="submit"] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 500px;
        padding: 1rem 0;
        margin: 10px auto 0;
        background: #FF9824;
        color: #fff;
        font-weight: 600;
        border-radius: 5px;
    }

    #entryform .form-item input[type="text"]::placeholder {
        color: #BFBFBF;
    }

    #entry-complete {
        height: 70vh;
        padding-top: calc(var(--header-height) + 1rem);
    }

    #entry-complete h2 {
        font-size: 1.5rem;
    }

    #entry-complete p {
        margin: 30px 0;
        line-height: 1.7;
    }

}