@charset "UTF-8";

/* =========================================
   変数(カスタムプロパティ)
========================================= */
:root {
    --font-color: #333;
    --pink-font-color: #4F3343;
}

/* =========================================
   リセット・ベース
========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 16px相当 → 10px換算 */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow-x: hidden;
    color: var(--font-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    background-color: #FFF;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

ol, ul {
    list-style: none;
}

span {
    font-weight: bold;
}

/* =========================================
   共通クラス
========================================= */
.inner {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.main_v_back{
    background-color: #FBD8DB;
}

.back_color {
    background: linear-gradient(to bottom, #FBD8DB, #FFFFFF);
}

.back_color2 {
   background-color: #fff;
   margin: 0;
   padding: 0;
}






/* =========================================
   pcとspの画像切り替え
========================================= */
.pc_design { display: block; }
.sp_design { display: none; }

@media (min-width: 751px) {
    .pc_design { display: block !important; }
    .sp_design { display: none !important; }
}

@media (max-width: 750px) {
    .pc_design { display: none !important; }
    .sp_design { display: block !important; }
}


/* =========================================
   ヘッダー
========================================= */
header {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    height: 100px;
    align-items: center;
    margin: 0 auto; 
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    z-index: 1;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 0 40px;
}

.header a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

.header img {
    max-width: 130px;
}
.header p{
    font-size: 1.6rem;
}
@media ( max-width: 750px ){
    header{
        height: 100px;
    }
    .header {
        margin: 0 30px;
    }
    .header p{
        font-size: 1.4rem;
    }
    .header img {
        max-width: 80px;
    }
}


/* =========================================
   キービジュアル
========================================= */
.main_v {
    position: relative;
    width: 100%;
}
.main_v::after{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid #FFC7D4;
    border-radius: 50%;
    top: -20%;
    right: -100px;
}

.img_rogo {
    position: relative;
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    z-index: 2;
    margin-bottom: 150px;
}

.img_rogo img:first-child {
    display: block;
    width: 100%;
    height: auto;
}

.img_rogo img {
    display: inline-block; 
    position: relative; 
    pointer-events: none;  
    top: -70px; 
    width: 100%;
    max-width: 930px;
    max-height: 912px;        
}

.img_rogo h1 {
    position: absolute;
    top: 15%;            
    left: -5%;            
    width: 80%;           
}

@media ( max-width: 750px ){
    .img_rogo {
        position: relative; 
        top: 60px;
        width: 100%;
        margin: 0 auto;
    }
    .img_rogo h1 {
        position: absolute;
        top: 15%;            
        left: 0;
        right: 0;  
        margin: 0 auto;         
        width: 95%;           
    }
    .main_v::after{
        display: none;
    }

}

/* =========================================
   流れる文字
========================================= */
.container {
    position: absolute; 

    left: 50%;        
    transform: translateX(-50%);
    width: calc(100vw - 5px);
    
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    top: 50%;
    z-index: 15;
}

.wrapper {
    display: flex;
    animation: loop-text 40s linear infinite;
}

.double-content {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 800; 
    font-style: italic; 
    font-size: 15rem;
    padding-left: 60px;
    white-space: nowrap;
    color: #FFF;
}

@keyframes loop-text {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
@media ( max-width: 750px ){
    .container {
        top: 50%; /* 円画像の高さに応じて調整 */
    }


    .double-content{
        line-height: 1.0; 
    }
    .double-content {
        display: inline-block;
        font-family: "Montserrat", sans-serif;
        font-weight: 800; 
        font-style: italic; 
        font-size: 15vw;
        white-space: nowrap;
        color: #FFF;
    }
}
@media (max-width: 550px) {
    .container {
        top: 50%; 

    }
}

/* =========================================
    装飾
========================================= */
.content1_1 h2:first-child { 
    position: relative; 
    display: inline-block; 
    z-index: 1;
}

.content1_1 h2:first-child::after {
    content: ""; 
    
    position: absolute;
    top: 0; 
    left: 0; 
    transform: translate(-50%, -50%);
    z-index: -1;

    width: 600px;
    height: 600px;
    
    /* 線だけの丸を作成 */
    border: 2px solid #FFC7D4; 
    border-radius: 50%;
    
    margin-left: 50px; 
    margin-top: -30px;
}

.content1_2 h2:first-child { 
    position: relative; 
    display: inline-block; 
    z-index: 1;
    overflow: visible;
}

.content1_2 h2:first-child::after {
    content: ""; 
    
    position: absolute;
    top: 0; 
    left: 0; 
    transform: translate(-50%, -50%);
    z-index: -10;

    width: 600px;
    height: 600px;
    
    /* 線だけの丸を作成 */
    border: 1px solid #9EE8B0; 
    border-radius: 50%;
    
    margin-left: 200px; 
    margin-top: -30px;
}


@media ( max-width: 750px){
    .content1_1 {
        position: relative; 
        z-index: 1; 
    }
    
    .content1_2 {
        position: relative;
        z-index: 0;
    }

    .content1_1 h2:first-child::after {
        content: ""; 
    
        position: absolute;
        top: 0; 
        left: 50px; 
        transform: translate(-50%, -50%);
        z-index: -10;

        width: 600px;
        height:600px;
        
        border: 2px solid #FFC7D4; 
        border-radius: 50%;
        
        margin-left: 50px; 
        margin-top: -30px;
    }
    .content1_2 h2:first-child::after {
        content: ""; 
        position: absolute;
        top: 0; 
        left: 150px; 
        transform: translate(-50%, -50%);
        z-index: -10;
        width: 600px;
        height: 600px;
        border: 1px solid #9EE8B0; 
        border-radius: 50%;
        margin-left: 200px; 
        margin-top: -30px;
    }

}



/* =========================================
   コンテンツ1
========================================= */
.content1 {
    background: linear-gradient(to bottom, #FBD8DB, #FFFFFF);
    margin-bottom: 120px;
}

.content_1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 140px;
    max-width: 1040px;
    margin: 0 auto;
    width: 90%;
}

.content_1:nth-child(even) {
    flex-direction: row-reverse;
}

.content_1 h2 {
    z-index: 10; 
    position: relative;
}

.content_1 p {
    font-size: 2.2rem;
    line-height: 4.6rem;
    font-weight: 400;
    z-index: 10;
    color: var(--pink-font-color);
}
span.big-space {
    display: block;
    height: calc(4.6rem * 1); /* 空白の高さ */
}


.content1_1 img {
    max-width: 205px;
    max-height: 444px;
    margin-right: 140px;
    width: auto;
    height: auto;
    z-index: 10;   
}

.content1_2 {
    padding-bottom: 140px;
}

.content1_2 img {
    position: relative;
    margin-left: 140px;
    max-width: 170px;
    max-height: 590px;
    width: auto;
    height: auto;
    z-index: 10;
}


/* スマホデザイン */
@media ( max-width: 750px ){
    .content_1 {
        width: 90%;
        margin: 0 auto;
        display: block;
        padding-bottom: 40px;
    }
    .content_1 p {
        font-size: 2.0rem;
        line-height: 4.0rem;
    }
    h2{
        align-items: center;
        margin: 0 auto;
        padding-bottom: 70px;
    }


    .content1_1 img {
        display: block;
        margin: 0 auto;
        max-width: 264px;
        max-height: 284px;
        width: 50%;
        text-align: center;   
    }
    .content1_2 img {
        width: 80%;
        margin: 0 auto;
        max-width: 576px;
        max-height: 207px;
        height: auto;
    }
}

/* =========================================
   コンテンツ2
========================================= */
.h3_comment {
    position: relative;
    background-color: #D41618;
    width: 250px;
    height: 3em;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}

.h3_comment img,
.h3_comment p {
    margin: 20px 0 20px 0;
}

.h3_comment:before{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #D41618;
}

h3 img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: 90%;
}

.content2_main_v {
    background-color: #FBD8DB;
    padding-bottom: 90px;
}

.content2_main_v img {
    width: 100%;
    margin-bottom: 70px;
}
.circulation{
    position: relative;

}
.circulation video{
    width: 100%;
}
.content2_main_v .circulation_text{
    position: absolute;
    width: 90%;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -150px;
}


.content2_main_v .content2_link {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 150px;
    max-width: 1250px;
}

 .content2_link li:nth-child(1) img { transform: translateY(-80px); }
 .content2_link li:nth-child(2) img { transform: translateY(-25px); }
 .content2_link li:nth-child(3) img { transform: translateY(0px); }
 .content2_link li:nth-child(4) img { transform: translateY(-25px); }
 .content2_link li:nth-child(5) img { transform: translateY(-80px); }

.content2_link li a img {
    height: auto;
    transition: filter 0.3s ease;
}

.content2_link li a img:hover {
    filter: saturate(120%) brightness(110%) contrast(110%);
    transition: filter 0.3s ease; 
}

/* スマホデザイン */
@media ( max-width: 750px ){
     .content2_main_v .content2_link {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; 
    }
    .content2_main_v .circulation_text{
        bottom: -200px;
    }


    .content2_main_v .content2_link {
        margin: 80px auto;
    }

    h3 img {
        max-width: 70%;
    }
    
    .content2_link li {
        width: 30%; 
        margin: 5px;
    }
    .content2_link li img{
        margin: 0;
        padding: 0;
    }

    .content2_main_v {
        padding-top: 0;
        padding-bottom: 0;
    }
   
    .content2_main_v .content2_link {
        padding-top: 100px;
        max-width: 1250px;
    }

    .content2_main_v {
        background: linear-gradient(to top, #FBD8DB 80%, #FFFFFF);
        padding-bottom: 90px;
    }

    .content2_link li:nth-child(1) img { transform: translateY(0px); }
    .content2_link li:nth-child(2) img { transform: translateY(0px); }
    .content2_link li:nth-child(3) img { transform: translateY(0px); }
    .content2_link li:nth-child(4) img { transform: translateY(0px); }
    .content2_link li:nth-child(5) img { transform: translateY(0px); }
}
@media ( max-width: 460px ){
    .content2_main_v .circulation_text{
        bottom: -150px;
    }
    .content2_main_v .content2_link {
        margin: 0 auto;
    }
    .content2_main_v {
        padding-bottom: 40px;
    }
    .circulation{
        margin: 0;
        padding: 0;
    }

}



/* =========================================
   コンテンツ2コンテンツ内容
========================================= */
.content2 {
    position: relative;
    display: flex;
    background-color: #FFF;
}


.centered-container {
    flex: 1.5; 
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center; 
    background-color: #FFF;
}

.centered-container p {
    font-family: "Zen Kaku Gothic New",'Noto Sans JP';
    font-weight: 700;
    white-space: nowrap;
    margin: 80px 0 50px 0;
    font-size: 3.2rem;
}
/* リスト縦書き */
.vertical-list {
    writing-mode: vertical-rl;
    display: flex;          
    flex-direction: column;
    justify-content: flex-start;
    list-style: none;
    list-style-position: inside;
    margin: 0 auto;
    text-align: left;
}

.vertical-list li {
    position: relative;
    margin-bottom: 1em;
    font-size: 2.6rem;  
}


li::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 15px;
    width: 10px; 
    height: 10px;
    border-radius: 0 50% 50% 50%; 
    transform: rotate(45deg); 
    transform-origin: 100% 100%;
    z-index: 1;
}

.content2_content {
    flex: 8.5; /* 右側 8割 */
    display: flex;
    justify-content: flex-start;
    position: relative;
    height: 100%;
    overflow: hidden;
}


.content2:nth-of-type(odd) {
    transition: padding-left 0.3s ease-out, padding-right 0.3s ease-out;
    padding-left: 10%;
}
.content2:nth-of-type(even) {
    transition: padding-left 0.3s ease-out, padding-right 0.3s ease-out;
    flex-direction: row-reverse; 
    padding-right: 10%;
}

.content2:nth-of-type(even) .content2_content {
    flex-direction: row-reverse;
    text-align: right;
}

.content2_content div {
    margin: 80px 80px;
}

.content2_content div img {
    margin-bottom: 20px;
}

.content2_content div h4 {
    font-family: "Zen Kaku Gothic New",'Noto Sans JP';
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 4vw;
    white-space: nowrap;
    color: #FFF;
    line-height: 1.5;
    text-shadow: 0 0 3px #333;
}

.content2_content div p {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #FFF;
    text-shadow: 0 0 3px #333;
}

/* 波線 */
.content2 .wave {
    position: absolute;
    top: 0;
    bottom: 0;
    object-fit: fill;
}

.content2:nth-of-type(even) .wave {
    position: absolute;
    transform: scaleX(-1);
    right: -5px;
}
.content2:nth-of-type(odd) .wave {
    left: -5px;
}

/* 独自カラー */
.content2:nth-of-type(3) li::before {
    background: linear-gradient(to right, #EF6767, #CF3B60);
}
.content2:nth-of-type(4) li::before {
    background: linear-gradient(to right, #3D84BA, #73A6D8); 
}
.content2:nth-of-type(5) li::before {
    background: linear-gradient(to right, #A4D392, #32A55C); 
}
.content2:nth-of-type(6) li::before {
    background: linear-gradient(to right, #FF9A42, #FFBD12); 
}
.content2:nth-of-type(7) li::before {
    background: linear-gradient(to right, #9A8DC1, #9A64A5);
}

.content2_1span { background-color: #CF3B60; padding: 5px 0; }
.content2_2span { background-color: #3E84BA; padding: 5px 0; }
.content2_3span { background-color: #32A55C; padding: 5px 0; }
.content2_4span { background-color: #FF8F2B; padding: 5px 0; }
.content2_5span { background-color: #9A64A5; padding: 5px 0; }

.content2_content2_1 { 
    background-image: url(../img/content2_1img.png),
    linear-gradient(to right, #EF6767, #CF3B60); 
    background-repeat: no-repeat;
    background-position: right top, 0 0;
}
    
.content2_content2_2 { 
    background-image: url(../img/content2_2img.png),
    linear-gradient(to right, #3D84BA, #73A6D8); 
    background-repeat: no-repeat;
}
.content2_content2_3 { 
    background-image: url(../img/content2_3img.png),
    linear-gradient(to right, #A4D392, #32A55C); 
    background-repeat: no-repeat;
    background-position: right top, 0 0;
}
.content2_content2_4 { 
    background-image: url(../img/content2_4img.png),
    linear-gradient(to right, #FF9A42, #FFBD12); 
    background-repeat: no-repeat;
}
.content2_content2_5 { 
    background-image: url(../img/content2_5img.png),
    linear-gradient(to right, #9A8DC1, #9A64A5); 
    background-repeat: no-repeat;
    background-position: right top, 0 0;
}

/* 画面幅が1200px以下の時の調整 */
@media (max-width: 1200px) {
    .content2:nth-of-type(odd) {
        padding-left: 30px;
    }
    .content2:nth-of-type(even) {
        flex-direction: row-reverse; 
        padding-right: 30px;
    }
    
    .content2_content2_1,
    .content2_content2_3,
    .content2_content2_5 {
        background-size: auto, 100% auto; 
        background-position: 150% top, 0 0;
        background-repeat: no-repeat, repeat;
        /* transform: translateX(calc(-30%)); */
    }
    .content2_content2_2,
    .content2_content2_4{
        background-size: auto, 100% auto; 
        background-position: -50% center, 0 0;
        background-repeat: no-repeat, repeat;
    }
}

/* 画面幅が900px以下の時の背景調整 */
@media (max-width: 900px) {

    .content2_content2_1,
    .content2_content2_3,
    .content2_content2_5 {
        background-size: auto, 100% auto; 
        background-position: calc(100% + 30vw) top, 0 0 !important;
        background-repeat: no-repeat, repeat;
    }
    .content2_content2_2,
    .content2_content2_4{
        background-size: auto, 100% auto; 
        background-position: calc(100% + -30vw) center, 0 0;
        background-repeat: no-repeat, repeat;
    }
}

/* スマホデザイン */
@media ( max-width: 750px ){
    .content2 {
        display: block;   
    }
    .centered-container{
        width: 90%;
        margin: 0 auto;
        padding-left: 10px;
    }

    .vertical-list {
        writing-mode: horizontal-tb;
    }
   .vertical-list{
        padding-bottom: 30px;
    }
    .vertical-list li {
        margin-bottom: 0.5rem;
        font-size: 2.0rem;
    }
    .content2:nth-of-type(even),
    .content2:nth-of-type(odd) {
        transition: none;
    }
  


    .vertical-list li::before {
        top: 0.8em; 
        left: -20px; 
    }

    .content2_content .wave{
        position: relative;
        margin: 0;
        padding: 0;
        top: -5px;
        margin-left: -5px;
        
    }
    .content2:nth-of-type(odd) .wave {
        transform: scaleX(-1);
        right: 0px;
    }
    .content2:nth-of-type(even) .wave {
        left: 0px;
    }
    

    .content2_content {
        display: block;
    }
    .content2_content div{
        width: 90%;
        margin:  0 auto;
        padding-top: 80px;
    }
    .content2:nth-of-type(odd) .content2_content div{
        padding-top: 42px;
    }
    .content2_content div p {
        font-size: 2.0rem;
        margin-bottom: 30px;
        color: #FFF;
    }
      .centered-container p {
        margin: 50px 0 20px 0;
    }


    .content2_content div img{
        max-height: 35px;
        width: auto;
        max-width: 100%;

    }
    .content2:nth-of-type(odd) {
        padding-left: 0;
    }
    .content2:nth-of-type(even) {
        padding-right: 0;
    }

    .content2:nth-of-type(even) .content2_content {
        text-align: left;
    }
    .content2_content div h4 {
        font-size: calc(3.5vw + 2.5rem);
        white-space: wrap;
    }
    .content2_span{
        white-space: wrap;
    }
    .content2_content div h4,
    .content2_content div p{
        text-shadow:none
    }


    .content2_content2_1 { background: linear-gradient(to bottom, #EF6767, #CF3B60); }
    .content2_content2_2 { background: linear-gradient(to top, #3D84BA, #73A6D8); }
    .content2_content2_3 { background: linear-gradient(to bottom, #A4D392, #32A55C); }
    .content2_content2_4 { background: linear-gradient(to top, #FF9A42, #FFBD12); }
    .content2_content2_5 { background: linear-gradient(to bottom, #9A8DC1, #9A64A5); }

    .centered-container p {
        white-space: normal;
    }

    .content2_content .sp_img{
        width: 100%;
    }

}


/* =========================================
   コンテンツ3
========================================= */
.content3 {
    background: linear-gradient(to top, #FBD8DB, #FEF7F8);
    overflow: hidden;
    position: relative;
}
.content3::after{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid #FFC7D4;
    border-radius: 50%;
    top: -15%;
    right: -350px;
    transform: translate(-50%);
    z-index: 0;
}
.content3::before{
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid #FFC7D4;
    border-radius: 50%;
    top: 25%;
    right: -60px;
    z-index: 0;

}

/* ここから内容情報 */
.content3_content{
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 300px;
    z-index: 1;
}
.en_rogo_last img{
    max-width: 690px;
    width: 100%;
    height: auto;
    z-index: 1;
}
.en_rogo_last {
    float: left;
    shape-outside: circle();
    margin: 45px;
}
.content3_text{
    position: relative;

}

.content3_text p {
    margin-top: 100px;
    padding-bottom: 200px;
    font-size: 2.2rem;
    line-height: 4.6rem;
    font-weight: 400;
    color: var(--pink-font-color);
}
.content3_text img {
    position: absolute;
    left: 450px;
    top: -280px;
    max-width: 700px;
    width: 50%;  
}
@media ( max-width: 1330px ){
    .footer_design{
        display: none;
    }
}

@media ( max-width: 1070px ){
    .content3_text p {
        position: relative;
        line-height: 3.5rem;
        padding-bottom: 300px;
        transform: translateX(calc(-10%));
        width: 110%;
    }
    .en_rogo_last img {
        position: relative; 
        transform: translateX(calc(-25%));
    }
    .en_rogo_last {
        margin: 0px;
    }
}
@media ( max-width: 950px ){
    .en_rogo_last img{
        transform: translateX(calc(-50%));
    }
    .content3_text img {
        position: absolute;
        left: 250px;
        top: -200px;
        max-width: 700px;
        width: 50%;  
    }
    .content3_text p {
        font-size: 2rem;
        transform: translateX(calc(-23%));
        width: 130%;
    }
     .en_rogo_last {
        margin: 0px;
    }
}

@media ( max-width: 750px ){
    .content3_content {
        padding-top: 100px;
        display: block;
    }
    .content3{
        background-image: 
            url('../img/sp/lest.png'),
            linear-gradient(to top, #FBD8DB, #FFFFFF);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .content3_text{
        margin: 0 auto;
        width: 90%;
    }
    .content3_text img{
        position: static;
        margin: 0 auto;
        max-width: 639px;
        max-height: 408px;
        margin-bottom: 50px;
         width: 100%;  
    }
     .content3_text p{ 
        line-height: 4rem;
        transform: translateX(calc(0%));
        width: 100%;
        padding-bottom: 80px;
        font-size: 2.0rem;
    }
    .content3::after {
        display: none;
    }
    .content3::before {
        display: none;
    }
}

/* =========================================
   ALL for ONE SPOON.下
========================================= */
.all_for_one_spoon{
    width: 100%;
    background-color: #FBD8DB;
    display: flex;             
    flex-direction: column;   
    justify-content: flex-end;

}

/* ----------ナリコマ食続var---------- */
.nari_link a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px auto;
    max-width: 340px;
    padding: 10px 25px;
    color: #D41618;
    transition: 0.3s ease-in-out;
    font-size: 2.4rem;
    font-weight: 600;
    background: #ffffffee;
    border: 0.2rem solid #FFC8CB;
    box-shadow: 0.2rem 0.2rem 0px 0.1rem #FFC8CB;
}
.nari_link a:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}
.nari_link a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #D41618;
    border-right: 3px solid #D41618;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.3s ease-in-out;
}
/* ----------ナリコマ食続var終---------- */


.all_for_one_spoon p{
    font-family: "Montserrat", sans-serif;
    font-weight: 800; 
    font-style: italic; 
    font-size: 9.3vw;
    white-space: nowrap;
    color: #FFF;
    margin-bottom: 0; 
    line-height: 0.7; 
}

/* =========================================
   フッター
========================================= */
footer {
    background-color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    padding: 3em;
}

@media ( max-width: 750px ){
    footer{
        padding: 1.5em;
    }

}


/* =========================================
   グラデーション文字
========================================= */
.pink {
    background: linear-gradient(180deg, #D72854, #D75FC3 120%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent; 
}

.green {
    background: linear-gradient(180deg, #00A728, #018CA3 120%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
    color: transparent; 
}

/* =========================================

======================================== */
