@charset "utf-8";

/* ================================  
mainVisual
==================================*/
.mainVisual {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mainVisual__container {
    min-height: 70vh;
    flex-shrink: 0;
    display: flex;
    align-items: center; 
    padding: 60px 10% 0; 
    position: relative; 
    overflow: hidden;  
}

.mainVisual__container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/fv_sp.jpg);
    background-size: cover;
    background-position: center;
    animation: zoomUp 8s ease-out forwards;
    z-index: 0;
}

.mainVisual__container > * {
    position: relative;
    z-index: 1;
}

@keyframes zoomUp {
    0%   { transform: scale(1); }
    100% { transform: scale(1.18); }
}

.mainVisual__topics {
    font-size: 1.4rem;
    line-height: 2.8;
}

.mainVisual__topics span {
    font-size: 2rem;
}

.mainVisual__logo {
    display: block;     
    width: 100px;
    margin: 30px 0 0 auto; 
}

.ctaBtn {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 10%;
    position: relative; 
    z-index: 10;
    overflow: hidden;
}

/* .mainVisual外で単独使用する場合のctaBtn */
.ctaBtn--standalone {
    flex: none;
    padding: 30px 10% 0;
}

.main-slider {
    width: 100%;
    flex-shrink: 0;
    --swiper-navigation-color: #C5A84A; 
    --swiper-pagination-color: #C5A84A;
    margin-bottom: 20px;
}

.main-slider .swiper-wrapper {
    width: 100%;
}

.swiper-slide {
    width: 100% !important;
}

.main-slider .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-slider .swiper-button-prev,
.main-slider .swiper-button-next {
    width: 24px;           
    height: 24px;        
    --swiper-navigation-size: 20px;
}

.lineUp__btn {
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    padding: 13px 30px;
    color: var(--primary-red);
    background: linear-gradient(to right, #C5A84A, #EBDFB8, #C5A84A);
    position: relative;
    z-index: 20; 
    transition: 0.8s;
    font-size: 1.6rem;
}

.lineUp__btn:hover {
    background: var(--primary-red);
    color: var(--primary-title);
}

/* mainVisual pc */
@media screen and (min-width:769px) {

    .mainVisual {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden; 
    }

    .mainVisual__container {
        flex: 1; 
        width: 100%;
        display: flex;
        align-items: center; 
        justify-content: center; 
        padding: 80px 5.8% 0;
        box-sizing: border-box;
        min-height: 0;
    }

    .mainVisual__container::before {
        background-image: url(../images/fv_pc.jpg); 
    }   

    .maincopy {
        display: flex;
        align-items: center;
        justify-content: center; 
        gap: clamp(40px, 8vw, 120px); 
        width: 100%;
        max-width: 1400px; 
    }

    .mainVisual__topics {
        font-size: clamp(1.8rem, 2.2vw, 2.5rem); 
        line-height: 2.5;
        text-align: left;
    }
    
    .mainVisual__topics span {
        font-size: clamp(2.5rem, 3vw, 3.5rem);
    }

    .mainVisual__logo {
        width: clamp(120px, 15vw, 160px); 
        margin: 0;
    }

    .ctaBtn, 
    .ctaBtn--scene {
        display: flex;
        flex-direction: row;    
        align-items: center;    
        justify-content: center;
        gap: 60px;              
        width: 100%;
        height: 30vh;           
        max-height: 250px;      
        min-height: 180px; 
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px 5.8%;
        box-sizing: border-box;
        overflow: hidden;
        flex-shrink: 0;        
    }

    .ctaBtn--standalone {
        flex: none;
        margin-top: 0;
        padding: 40px 5%;
        height: auto !important;
    }

    /* スライダー本体 */
    .ctaBtn .main-slider,
    .ctaBtn--scene .main-slider {
        width: auto !important; 
        max-width: 600px;
        flex: 0 1 auto !important; 
        height: 100% !important;
        margin: 0 !important;   
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .ctaBtn .main-slider .swiper-wrapper,
    .ctaBtn .main-slider .swiper-slide {
        height: 100% !important;
        width: auto !important; 
    }

    .ctaBtn .main-slider .swiper-slide,
    .ctaBtn--scene .main-slider .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .ctaBtn .main-slider .swiper-slide img {
        width: auto !important;  
        height: 100% !important; 
        max-width: 100%;
        object-fit: contain !important; 
    }

    .ctaBtn .lineUp__btn,
    .ctaBtn--scene .lineUp__btn {
        flex: 0 0 auto;         
        white-space: nowrap;    
        width: auto;            
        min-width: 320px;       
        font-size: 1.8rem;     
        padding: 18px 40px;    
        margin: 0;           
    }

    .lineUp__btn span {
        font-size: 2rem;
    }
}
/* pc end */

/* ================================  
about
==================================*/
.section--about {
    text-align: center;
    overflow: hidden;
}

.title--about {
    position: relative;
}

.title--about::before {
    content: 'エーデル  シェフ';
    color: var(--primary-title);
    letter-spacing: 0.5rem;
    font-size: 1.3rem;
    font-weight: 300;

    position: absolute;
    top: -15px;
    right: 33%;
}

.about__img {
    margin-top: 50px;
    object-fit: cover;
}

.about__subtitle {
    font-size: 1.4rem;
    margin-top: 35px;
    line-height: 2;
}

.about__subtitle span {
    font-size: 3rem;
}

.about__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 38px;
}

.about__txt span {
    font-size: 2rem;
}

.about__bgimg {
    position: relative;
}

.about__bgimg::before {
    content: '';
    background-image: url(../images/about_left.png);
    background-position: center;
    background-size: cover;
    display: block;
    width: 215px;
    height: 150px;

    position: absolute;
    left: -71px;
    top: 113px;
    z-index: -1;
}

.about__bgimg::after {
    content: '';
    background-image: url(../images/about_rignt.png);
    background-position: center;
    background-size: cover;
    display: block;
    width: 215px;
    height: 150px;

    position: absolute;
    right: -81px;
    bottom: 33px;
    z-index: -1;
}

.history {
    width: 87%;
    margin: 98px auto 0;
    padding: 61px 4%;
    background-image: url(../images/history_bgimg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    position: relative;
    text-align: center;
}

.history__decoration {
    position: relative;
}

.history__decoration::before {
    content: '';
    display: block;
    background-image: url(../images/history_top-left.svg);
    background-size: contain;
    width: 70px;
    height: 70px;

    position: absolute;
    top:-32px;
    left: 0%;
}

.history__decoration::after {
    content: '';
    display: block;
    background-image: url(../images/history_top-left.svg);
    background-size: contain;
    width: 70px;
    height: 70px;
    transform: rotate(90deg);

    position: absolute;
    top:-32px;
    right: 0%;
}

.history::before {
    content: '';
    display: block;
    background-image: url(../images/history_top-left.svg);
    background-size: contain;
    width: 70px;
    height: 70px;
    transform: rotate(-90deg);

    position: absolute;
    bottom:19px;
    left: 4%;
}

.history::after {
    content: '';
    display: block;
    background-image: url(../images/history_top-left.svg);
    background-size: contain;
    width: 70px;
    height: 70px;
    transform: rotate(-180deg);

    position: absolute;
    bottom:19px;
    right: 2%;
}

.history__title {
    display: block;
    width: 204px;
    margin: 0 auto;
}

.history__topic {
    font-family: 'Whisper', serif;
    font-size: 4rem;
    color: var(--primary-gold);
    line-height: 1.5;
    margin-top: 35px;
}

.history__topics {
    font-size: 1.8rem;
    margin-top: 16px;
    line-height: 1.5;
}

.history__txt {
    font-size: 1.3rem;
    line-height: 2.5rem;
}

.history__txt:first-of-type {
    margin-top: 40px;
}

.history__txt:last-of-type {
    margin-top: 30px;
}

.ayumi__pc {
    display: none;
}

.ayumi {
    font-size: 1.6rem;
    margin-top: 56px;
}

.nittobest_office {
    width: 268px;
    margin-top: 19px;
}

.ayumi__txt {
    font-size: 1.2rem;
    margin-top: 15px;
}

.ayumi__txt:first-of-type {
    margin-top: 19px;
}

.concept__logo {
    display: block;
    width: 163px;
    margin: 23px auto 0;
}

.concept__box {
    width: fit-content;
    margin: 22px auto 0;
}

.concept_txt {
    font-size: 1.6rem;
}

.concept_txt span {
    font-size: 2rem;
}

.history__nittobest,
.history__edelchef {
    margin-left: 3.4%;
    text-align: left;
}

/* about pc */
@media screen and (min-width:769px) {
    .title--about::before {
        font-size: 2.4rem;
        font-weight: 300;
    
        position: absolute;
        top: -21px;
        right: 40%;
    }

    .about__img {
        margin: 110px auto 0;
    }

    .about__subtitle {
        font-size: 2rem;
        margin-top: 68px;
    }
    
    .about__subtitle span {
        font-size: 4.8rem;
    }
    
    .about__txt {
        font-size: 2rem;
        margin-top: 68px;
    }
    
    .about__txt span {
        font-size: 3.2rem;
    }

    .about__bgimg::before {
        content: '';
        background-image: url(../images/about_left.png);
        background-position: center;
        background-size: cover;
        display: block;
        width: 557px;
        height: 372px;
    
        position: absolute;
        left: -119px;
        top: 113px;
    }
    
    .about__bgimg::after {
        content: '';
        background-image: url(../images/about_rignt.png);
        background-position: center;
        background-size: cover;
        display: block;
        width: 538px;
        height: 359px;
    
        position: absolute;
        right: -179px;
        bottom: 33px;
    }

    .history {
        width: 80%;
        max-width: 1200px;
        padding: 87px 0;
        margin-top: 211px;
    }

    .history__decoration::before {
        width: 160px;
        height: 160px;
    
        position: absolute;
        top:-49px;
        left: 4%;
    }
    
    .history__decoration::after {
        width: 160px;
        height: 160px;
    
        position: absolute;
        top:-49px;
        right: 4%;
    }
    
    .history::before {
        width: 160px;
        height: 160px;
    
        position: absolute;
        bottom:36px;
        left: 4%;
    }

    .history::after {
        width: 160px;
        height: 160px;
    
        position: absolute;
        bottom:36px;
        right: 4%;
    }

    .history__title {
        width: 310px;
    }

    .history__nittobest ,
    .history__edelchef {
        display: flex;
        align-items: start;
        justify-content: center;
        gap: 0 53px;
        margin-top: 71px;
    }

    .history__pcLeft ,
    .history__pcRight ,
    .concept__pcLeft ,
    .concept__pcRight {
        padding: 0 0 0 27px;
        border-left: 1px var(--primary-gold) solid;
        width: 38%;
    }

    .history__pcRight {
        margin-top: 208px;
    }

    .history__topic {
        font-size: 6.4rem;
        margin-top: 0;
    }

    .history__topics {
        font-size: 2.4rem;
        margin-top: 44px;
        line-height: 1.7;
    }

    .history__txt {
        font-size: 1.8rem;
        margin-top: 44px;
        line-height: 1.9;
    }

    .history__txt:first-of-type {
        margin-top: 44px;
    }

    .ayumi__sp {
        display: none;
    }

    .ayumi__pc {
        display: block;
    }

    .ayumi {
        font-size: 2rem;
        margin-top: 22px;
    }

    .ayumi__txt {
        font-size: 1.5rem;
        margin-top: 15px;
        line-height: 1.9;
    }

    .ayumi__txt:first-of-type {
        margin-top: 22px;
    }

    .nittobest_office {
        width: 100%;
        margin-top: 0;
    }

    .concept__pcRight {
        margin-top: 270px;
    }

    .concept__logo {
        width: 245px;
        margin-top: 0;
    }

    .concept_txt {
        font-size: 2.4rem;
    }

    .concept_txt span {
        font-size: 3.6rem;
    }
}
/* pc end */

/* ================================  
scene
==================================*/
.section--scene {
    padding-bottom: 38px;
}

.title--scene {
    position: relative;
}

.title--scene::before {
    content: 'Scene';
    color: var(--primary-title);
    font-size: 1.6rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    position: absolute;
    top: -15px;
    right: 40%;
}

.imgpc {
    display: none;
}

.scene__img {
    display: block;
    margin: 46px auto 0;
    width: 80%;
    height: auto;
    max-width: 350px;
}

.scene__contents {
    text-align: center;
}

.scene__topic {
    display: inline-block;
    width: 273px;
    font-size: 2.2rem;
    margin-top: 28px;
}

.scene__topic--1 {
    position: relative;
}

.scene__topic--1::before {
    content: 'Scene 1';
    font-family: 'Whisper', serif;
    font-size: 4.8rem;
    color: var(--primary-title);
    transform: rotate(-20deg);

    position: absolute;
    top: -72px;
    left: -39px;
}

.scene__topic--2 {
    position: relative;
}

.scene__topic--2::before {
    content: 'Scene 2';
    font-family: 'Whisper', serif;
    font-size: 4.8rem;
    color: var(--primary-title);
    transform: rotate(-20deg);

    position: absolute;
    top: -72px;
    left: -39px;
}

.scene__topic--3 {
    position: relative;
}

.scene__topic--3::before {
    content: 'Scene 3';
    font-family: 'Whisper', serif;
    font-size: 4.8rem;
    color: var(--primary-title);
    transform: rotate(-20deg);

    position: absolute;
    top: -72px;
    left: -39px;
}

.scene__decoration {
    display: block;
    width: 91px;
    height: 21px;
    margin: 16px auto 0;
}

.scene__txt {
    text-align: left;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 2;
    margin: 30px auto 0;
    width: 250px;
}

/* scene pc */
@media screen and (min-width:769px) {
    .section--scene {
        padding: 0 20%;
    }
    
    .title--scene::before {
        font-size: 3.2rem;
        position: absolute;

        top: -30px;
        right: 44%;
    }

    .title__detail {
        font-size: 1.8rem;
        margin-top: 78px;
        line-height: 2;
    }

    .title__detail span {
        font-size: 2.4rem;
    }

    .scene {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1280px;
        margin-top: 114px;
    }

    .imgsp {
        display: none;
    }

    .imgpc {
        display: block;
        width: 50%;
        max-width: 405px;
    }

    .imgpc__2 {
        order: 1;
    }

    .scene__topic {
        font-size: 3.2rem;
        text-align: left;
        width: auto;
        display: block;
    }

    .scene__contents {
        width: 50%;
        margin-left: 25px;
    }

    .scene__decoration {
        width: 115px;
        height: 27px;

        transform: translateX(-70px);
    }

    .scene__txt {
        display: block;
        font-size: 1.8rem;
        margin: 33px 0 0;
        width: auto;
    }

    .scene__topic--1::before {
        font-size: 6.4rem;
        transform: rotate(-14deg);
    
        position: absolute;
        top: -85px;
        left: -68px;
    }

    .scene__topic--2::before {
        font-size: 6.4rem;
        transform: rotate(-14deg);
    
        position: absolute;
        top: -85px;
        left: -39px;
    }

    .scene__topic--3::before {
        font-size: 6.4rem;
        transform: rotate(-14deg);
    
        position: absolute;
        top: -85px;
        left: -68px;
    }

    .cta {
        margin-top: 70px;
    }

    .ctaBtn--scene {
        max-height: none; 
        gap: 40px;        
        margin-top: 30px;
    }

    .ctaBtn--scene .main-slider {
        width: 60%;      
        height: auto;
    }

    .ctaBtn--scene .lineUp__btn {
        flex-shrink: 0;  
        width: 380px;   
        min-width: 320px;   
        white-space: nowrap; 
        padding: 25px 20px;
    }
}
/* pc end */

/* ================================  
reason
==================================*/
.section--reason {
    padding: 0 5.8%;
    margin-top: 65px
}

.title--reason {
    position: relative;
}

.title--reason::before {
    content: 'Reason';
    color: var(--primary-title);
    font-size: 1.6rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    position: absolute;
    top: -15px;
    right: 42%;
}

.reasonBg {
    background-image: url(../images/reason_bgimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5px 5.3% 35px;
    text-align: center;
    margin-top: 35px;
}

.reason__no {
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-top: 35px;
}

.reason__topics {
    display: inline-block;
    font-size: 2rem;
    line-height: 3rem;
    margin: 21px auto 0;
    text-align: left;
}

.reason__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 20px;
    text-align: left;
}

.reason__img {
    margin-top: 20px;
}

/* reason pc */
@media screen and (min-width:769px) {
    .section--reason {
        max-width: 1280px;
        margin: 0 auto;
    }

    .title--reason::before {
        font-size: 3.2rem;

        top: -38px;
        right: 42%;
    }

    .reasonBg {
        margin-top: 86px;
        padding: 58px 11% ;
    }

    .reason__contents {
        display: flex;
        align-items: flex-end;
        gap: 0 49px;
        margin-top: 78px;
    }

    .reason__contents:first-of-type {
        margin-top: 0;
    }

    .reason__detail {
        flex: 1;
    }

    .reason__no {
        font-size: 2.4rem;
        margin-top: 0;
    }
    
    .reason__detail img {
        margin-top: 10px;
    }

    .reason__topics {
        font-size: 2.4rem;
    }

    .reason__txt {
        font-size: 1.8rem;
        margin-top: 34px;
    }

    .reason__img {
        flex: 1;
        width: 389px;
    }
}
/* pc end */

/* ================================  
voice
==================================*/
.section--voice {
    padding-bottom: 38px;
}

.title--voice {
    position: relative;
}

.title--voice::before {
    content: 'User\'s Voice';
    color: var(--primary-title);
    font-size: 1.6rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;

    position: absolute;
    top: -15px;
    right: 30%;
}

.voice {
    background-image: url(../images/voice_border.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: 329px;
    height: 194px;

    margin: 25px auto;
    padding: 30px 15px;
}

.voice:first-of-type {
    margin-top: 49px;
}

.voice img {
    display: block;
    width: 63px;
    height: 17px;

    margin: 0 auto;
}

.voice__txt {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.8;
    margin-top: 9px;
}

.voice__txt span {
    font-size: 2.4rem;
    line-height: 1.6;
}

.voice__person {
    font-size: 1.3rem;
    text-align: right;
    line-height: 1.8;
}

/* voice pc */
@media screen and (min-width:769px) {
    .section--voice {
        max-width: 980px;
        margin: 0 auto;
    }

    .title--voice::before {
        font-size: 3.2rem;

        top: -38px;
        right: 35%;
    }

    .voice__container {
        display: flex;
        flex-wrap: wrap;
        gap: 0 82px;
        align-items: center;
        margin-top: 81px;
    }

    .voice:first-of-type {
        margin-top: 25px;
    }

    .voice img {
        width: 81px;
        height: 22px;
    }

    .voice__txt {
        font-size: 2rem;
        margin-top: 15px;
    }
    
    .voice__txt span {
        font-size: 3.6rem;
        line-height: 1.7;
    }

    .txt2 span {
        line-height: 1.4;
    }
    
    .voice__person {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .voice {
        width: 441px;
        height: 259px;
    }
}
/* pc end */

/* ================================  
recipe
==================================*/
.recipe {
    padding: 0 12.8%;
}

.recipe__bar--sp {
    width: 100%;
    margin-top: 50px;
}

.recipe__txt {
    font-size: 1.3rem;
    margin-top: 18px;
}

.openPopupBtn {
    cursor: pointer;
    margin-top: 20px;
}

.openPopupBtn button {
    display: flex;
    gap: 0 24px;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-title);
    text-align: center;
    background-color: var(--primary-red);
    margin-top: 10px;

    width: 100%;
    padding: 8px 0;

    transition: 0.4s;
}

.openPopupBtn button:hover {
    background-color: var(--primary-black);
    color: var(--primary-title);
}

.imgBox {
    display: inline-block;
    overflow: hidden;
}

.openPopupBtn__img {
    width: 100%;
    display: block;
    overflow: hidden;
    transition-duration: .5s;
}

.openPopupBtn__img:hover {
    transform: scale(1.1);
}

.openPopupBtn__img--pc {
    display: none;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
}

.popup.show {
    display: flex;
}

.popup__wapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/recipe_bg.jpg);
    background-size: contain;
    padding: 50px 13px 13px 13px;
    border-radius: 5px;
    width: 310px;
    height: 500px;
    overflow: auto;
}

.closeBtn {
    position: absolute;
    top: 7px;
    right: 5px;
    width: 35px;
    height: 35px;
    font-size: 2.1rem;
    background-color: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe__contents {
    padding: 19px;
}

.recipe__name {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-title);
    background-color: var(--primary-red);
    padding: 5px 0 ;
}

.recipe__topics {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    border-bottom: 2px var(--primary-red) solid;
    padding-bottom: 3px;
    color: var(--primary-black);

    margin-top: 27px;
}

.recipe__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    color: var(--primary-black);
    border-bottom: 1px var(--primary-black) dashed;
    padding-bottom: 3px;
    margin-top: 6px;
}

.topics__detail {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-top: 6px;
}

.recipe__bar--pc {
    display: none;
}

/* recipe pc */
@media screen and (min-width:769px) {
    .recipe {
        padding: 0 9.3%;
    }

    .recipe__bar--sp {
        display: none;
    }

    .recipe__bar--pc {
        display: block;
        margin: 100px auto 0;
    }

    .recipe__txt {
        font-size: 1.6rem;
        margin-top: 22px;
        text-align: center;
    }

    .recipe__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0 12px;
    }

    .openPopupBtn__img--pc {
        display: block;
    }

    .openPopupBtn__img--sp {
        display: none;
    }

    .openPopupBtn button {
        font-size: 2rem;
        margin-top: 19px;
    }

    .popup-content {
        width: 884px;
        height: 60%;
        overflow: auto;
    }

    .recipe__contents {
        display: flex;
        align-items: flex-start;
        gap: 0 28px;
        padding: 19px;
    }

    .recipe__name {
        font-size: 2.4rem;
    }

    .recipe__topics {
        font-size: 2rem;
    }
    .recipe__topics:first-of-type {
        margin-top: 0px;
    }

    .recipe__list ,
    .topics__detail {
        font-size: 1.8rem;
    }
}
/* pc end */

/* ================================  
source
==================================*/
.source {
    padding: 0 12.8%;
    margin-top: 49px;
}

.source__img {
    width: 100%;
    margin-top: 50px;
}

.source__img--pc {
    display: none;
}

.source__recipe {
    background-image: url(../images/source_bgimg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--primary-black);
    padding: 17px 4%;
    margin-top:20px;
}

.source__recipe:first-of-type {
    margin-top: 0;
}

.source__name {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.source__txt {
    font-size: 1.3rem;
}

.source__material,
.source__topics {
    font-size: 1.3rem;
    border-bottom: 0.5px solid var(--primary-black);
    padding-bottom: 4px;
    margin-top: 15px;
}

.source__list,
.source__detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    margin: 0px 8px 0px 31px;
}

.source__list {
    padding: 3px 5px;
}

.source__list:first-of-type,
.source__detail {
    margin-top: 8px;
}

.source__list:nth-of-type(2n) {
    background-color: rgba(254, 254, 254, 0.8);
}

.source__caption {
    display: block;
    width: 60%;
    margin: 6px auto 0; 
}

/* source pc */
@media screen and (min-width:769px) {
    .source {
        padding: 0 9.3%;
        margin-top: 100px;
    }

    .source__img--sp {
        display: none;
    }

    .source__img--pc {
        display: block;
        max-width: 1000px;
        margin: 0 auto;
    }

    .source__recipe {
        text-align: center;
        padding: 27px 3%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .source__name {
        font-size: 2rem;
        text-align: center;
    }

    .source__flex {
        display: flex;
        justify-content: center;
        gap: 0 52px;
    }

    .source__txt {
        font-size: 1.6rem;
        margin: 0 auto ;
    }

    .flex__item {
        flex: 1;
    }

    .source__material ,
    .source__topics {
        font-size: 1.8rem;
        margin-top: 17px;
        text-align: left;
    }

    .source__list,
    .source__detail {
        font-size: 1.6rem;
        margin: 0px 8px 0 31px;
        text-align: left;
    }

    .source__list {
        padding: 5px 9px;
    }

    .source__list:first-of-type {
        margin-top: 15px;
    }

    .howTo {
        display: flex;
        align-items: flex-start;
        margin-top: 15px;
    }

    .source__caption {
        width: 160px;
    }

    .more {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0 44px;
    }

    .btn {
        margin: 0;
        font-size: 2.4rem;
        width: 341px;
        height: 68px;
    }

    .btn img {
        vertical-align: sub;
    }
}
/* pc end */