@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&family=Zen+Kaku+Gothic+Antique:wght@400;700&display=swap");

:root {
    --margin-offset: -20px;
    --color-primary: #f58f2c;
    --color-secondary: #edd501;
    --color-accent: #f5612c;
    --color-neutral: #faf5ef;
    --color-base: #ffffff;
    --color-text: #000000;
    --font-en: "Playfair Display", serif;
}

#wrapper {
    width: auto;
    overflow: visible;
}

.main {
    all: revert;
    min-width: 960px;
}

.main * {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

.main a,
.main button {
    cursor: revert;
}

.main ol,
.main ul {
    list-style: none;
}

.main iframe,
.main svg,
.main img {
    height: fit-content;
    vertical-align: middle;

    max-inline-size: 100%;
    max-block-size: 100%;
}

#footer {
    position: relative;
    margin-top: 0;
    background: #ffffff;
}

.visually-hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: none !important;
}

.wrapper {
    position: relative;
    padding: 36px 20px 90px;
    overflow: hidden;
    text-size-adjust: none;

    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
}

.sphd {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
    background-image: url(../img/spmenu-bg.svg);
    background-position: top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.sphd_logo {
    display: inline-block;
    padding: 12px !important;
}

.spmenu {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 300;
    width: 70px;
    height: 56px;
    background: none;
    cursor: pointer !important;
}

.spmenu > span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    margin-top: -1px;
    border-radius: 2px;
    background: #ffffff;
    transition-property: transform, width;
    transition-duration: 0.3s;
}

.spmenu > span.-top {
    transform: translateY(-6px);
}

.spmenu > span.-mid {
    transform: scaleX(1);
}

.spmenu > span.-btm {
    transform: translateY(6px);
}

body.-nav-open .spmenu > span.-top {
    width: 20px;
    transform: translateY(0px) rotate(45deg);
}

body.-nav-open .spmenu > span.-mid {
    transform: scaleX(0);
}

body.-nav-open .spmenu > span.-btm {
    width: 20px;
    transform: translateY(0px) rotate(-45deg);
}

.spnav {
    display: none;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 200;
    width: 100%;
    height: calc(100dvh - 50px);
    overflow-y: auto;
    background-image: url(../img/spmenu-nav-bg@2x.jpg);
    background-position: center;
    background-size: cover;
    font-size: 16px;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

body.-nav-open .spnav {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.spnav_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-top: 75px;
}

.spnav_logo {
    text-align: center;
}

.spnav_list {
    display: grid;
    justify-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.spnav_list > li {
}

.spnav_list > li > a {
    display: block;
    padding: 6px;
}

.spnav_bubble {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    margin-top: auto;
    margin-right: auto;
}

.bg {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    min-width: 960px;
    height: 100%;
    overflow: hidden;
    background-image: url(../img/pc-bg@2x.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg_img {
    opacity: 0;
    position: absolute;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bg_img.-bubble1,
.bg_img.-bubble2,
.bg_img.-bubble3,
.bg_img.-bubble4 {
    transform: translate(-50%, calc(-50% + 20px));
}

.bg_img.-prod {
    transform: translateX(-50%) translateY(20px);
}

.bg_img.-img1,
.bg_img.-img2 {
    transform: translateY(20px);
}

/* body.-load で順番にフェードアップイン */
body.-load .bg_img.-bubble1 {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 1.4s;
}

body.-load .bg_img.-bubble2 {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 1.5s;
}

body.-load .bg_img.-bubble3 {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 1.6s;
}

body.-load .bg_img.-bubble4 {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition-delay: 1.7s;
}

body.-load .bg_img.-prod {
    opacity: 1;
    transform: translateX(-50%);
    transition-delay: 1.9s;
}

body.-load .bg_img.-img1,
body.-load .bg_img.-img2 {
    opacity: 1;
    transform: translateY(0);
}

body.-load .bg_img.-img1 {
    transition-delay: 2.1s;
}

body.-load .bg_img.-img2 {
    transition-delay: 2.3s;
}

.bg_img.-prod {
    left: calc((100% - 375px) / 4);
    z-index: 10;
}

.bg_img.-img1 {
    top: -140px;
    left: calc(930 / 1440 * 100%);
}

.bg_img.-img2 {
    right: calc(1160 / 1440 * 100%);
    bottom: -66px;
}

.bg_img.-bubble1 {
    top: 10%;
    left: 21%;
}

.bg_img.-bubble2 {
    top: 15%;
    left: 35%;
}

.bg_img.-bubble3 {
    top: 70%;
    left: 65%;
}

.bg_img.-bubble4 {
    top: 90%;
    left: 83%;
}

.bg_img.-bubble1 > img,
.bg_img.-bubble2 > img,
.bg_img.-bubble3 > img,
.bg_img.-bubble4 > img {
    /* height: revert-layer; */
}

.bg_nav {
    opacity: 0;
    position: absolute;
    right: calc((100% - 375px) / 4);
    z-index: 10;
    line-height: 1.5;
    transform: translateX(50%) translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.-load .bg_nav {
    opacity: 1;
    transform: translateX(50%);
    transition-delay: 1.8s;
}

.bg_nav_home {
    font-weight: bold;
    font-size: 20px;
}

.bg_nav_list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 14px;
}

.bg_nav_list > li {
}

.bg_nav_list > li > a {
}

.content {
    clip-path: path("M0,10000 Q93,10000 187,10000 T375,10000 V10000 H0 Z");
    position: relative;
    z-index: 10;
    max-width: 375px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    background: var(--color-base);
    color: var(--color-text);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    letter-spacing: 0.02em;
    transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
    text-size-adjust: 100%;
}

body.-load .content {
    clip-path: path("M0,0 Q93,40 187,0 T375,0 V10000 H0 Z");
    animation: wave-wipe-settle 0.5s ease-out 1.4s forwards, shadow-fade-in 0.5s ease-out 1.9s forwards;
}

.inner {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 10;
    width: 100%;
    min-height: 130px;
    background-image: url(../img/wave-white.svg);
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    aspect-ratio: 375 / 130;
}

.hero_img {
    position: relative;
    z-index: 1;
}

.hero_img > img {
    width: 100%;
}

.hero_cnt {
    position: relative;
    z-index: 20;
    max-width: 375px;
    margin: -80px auto 0;
    padding: 10px 126px 0 36px;
}

.hero_catch {
}

.hero_catch svg {
    overflow: visible;
}

.hero_catch_to,
.hero_catch_ro,
.hero_catch_ri {
    opacity: 0;
}

body.-load .hero_catch_to,
body.-load .hero_catch_ro,
body.-load .hero_catch_ri {
    animation-name: fade-in-down;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

body.-load .hero_catch_to {
    animation-delay: 1.5s;
}

body.-load .hero_catch_ro {
    animation-delay: 1.8s;
}

body.-load .hero_catch_ri {
    animation-delay: 2.1s;
}

.hero_pord {
    position: absolute;
    right: 28px;
    bottom: -30px;
}

.concept {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
    margin-top: 70px;
}

.concept_ttl {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 56px;
    line-height: 0.8;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    writing-mode: vertical-lr;
    -webkit-font-smoothing: antialiased;
}

.concept_cnt {
    display: grid;
    gap: 15px;
}

.concept_text {
}

.concept_text em {
    color: var(--color-primary);
}

.outline {
    position: relative;
    z-index: 1;
    margin-top: 55px;
    padding-bottom: 175px;
}

.outline_bubble {
    position: relative;
    text-align: right;
}

.outline_bubble > img {
}

.outline_bubble > img.-bubble {
    position: absolute;
    top: -140px;
    right: 0;
    width: calc(170 / 375 * 100%);
    transform-origin: right;
}

.outline_bubble > img.-main {
    position: relative;
    width: calc(270 / 375 * 100%);
}

.outline_cnt {
    margin-top: 10px;
}

.outline_prod {
    position: relative;
    max-width: 375px;
    margin: 0 auto;
}

.outline_prod_img {
    position: absolute;
    bottom: -20px;
    left: 10px;
}

.outline_prod_cnt {
    padding-left: 168px;
}

.outline_prod_ttl {
    font-weight: bold;
    font-size: 26px;
}

.outline_prod_gram {
    margin-top: 5px;
    font-weight: bold;
}

.outline_link {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    line-height: 1.3;
}

.outline_link > li {
}

.outline_link > li > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
}

.outline_link > li > a > small {
    font-weight: normal;
    font-size: 12px;
}

.toromi {
    position: relative;
    z-index: 10;
    padding-top: 44px;
    padding-bottom: 172px;
    background: var(--color-primary);
}

.toromi::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    margin-bottom: -1px;
    background-image: url(../img/wave-orange.svg);
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.toromi::after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: -130px;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 410px;
    background-image: url(../img/toromi-ttl-bg@2x.png);
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    aspect-ratio: 375 / 380;
}

.toromi.-view::after {
    animation-name: fade-in-up;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.toromi_ttl {
    opacity: 0;
    position: relative;
    z-index: 20;
    text-align: center;
}

.toromi.-view .toromi_ttl {
    animation-name: fade-in-up;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}

.toromi_wrap {
    position: relative;
    z-index: 20;
    margin-top: 35px;
}

.toromi_wrap::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -55px;
    z-index: 0;
    width: calc(133 / 375 * 100%);
    background-image: url(../img/toromi-bubble2@2x.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 133 / 200;
}

.toromi_sec {
    position: relative;
}

.toromi_sec:first-child {
    z-index: 10;
}

.toromi_sec:not(:first-child) {
    margin-top: 30px;
}

.toromi_hd {
    position: relative;
}

.toromi_hd_ttl {
    display: grid;
    justify-items: start;
    gap: 4px;
    position: absolute;
    bottom: 0;
    z-index: 20;
    line-height: 1.5;
}

@keyframes toromi_ttl_reveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    99.9% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: none;
    }
}

.toromi_hd_ttl > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    clip-path: inset(0 100% 0 0);
    /* height: 42px; */
    padding: 4px 20px 5px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--color-base);
    font-weight: bold;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
}

.toromi_hd_ttl.-view > span {
    animation: toromi_ttl_reveal 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99) forwards;
    animation-delay: calc((sibling-index() - 1) * 0.15s);
}

.toromi_hd_ttl > span > em {
    display: inline-block;
    position: relative;
    color: var(--color-primary);
}

.toromi_hd_ttl > span > em.-sonomama::after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    right: 10px;
    bottom: 100%;
    width: 57px;
    height: 17px;
    margin-bottom: -2px;
    background-image: url(../img/toromi-sonomama@2x.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(80%) scale(0.5);
    transition-property: transform, opacity;
    transition-duration: 0.3s;
    transition-delay: 1s;
}

.toromi_hd_ttl.-view > span > em.-sonomama::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toromi_sec:nth-child(2n) .toromi_hd_ttl {
    left: 0;
}

.toromi_sec:nth-child(2n + 1) .toromi_hd_ttl {
    right: 0;
}

.toromi_hd_bubble {
    position: relative;
}

.toromi_sec:nth-child(2n) .toromi_hd_bubble {
    margin-right: var(--margin-offset);
    text-align: right;
}

.toromi_sec:nth-child(2n + 1) .toromi_hd_bubble {
    margin-left: var(--margin-offset);
}

.toromi_hd_bubble > img {
    position: relative;
    z-index: 10;
}

.toromi_hd_bubble > img.-img1 {
    width: calc(300 / 375 * 100%);
}

.toromi_hd_bubble > img.-img2 {
    width: calc(244 / 375 * 100%);
}

.toromi_hd_bubble > img.-bubble {
    position: absolute;
    top: -85px;
    left: 46px;
    z-index: 0;
    width: calc(200 / 375 * 100%);
}

.toromi_cnt {
    margin-top: 30px;
}

.toromi_text {
}

.toromi_text > em {
    color: var(--color-base);
}

.recipe {
    position: relative;
    z-index: 20;
}

.recipe::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    margin-bottom: -1px;
    background-image: url(../img/wave-white.svg);
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.recipe_hd {
    line-height: 1;
    text-align: center;
}

.recipe_hd::before {
    content: "RECIPE";
    display: block;
    opacity: 0;
    color: color-mix(in srgb, var(--color-primary) 30%, transparent 70%);
    font-weight: 600;
    font-size: 90px;
    line-height: 0.9;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.recipe_hd.-view::before {
    animation-name: fade-in-up;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.recipe_hd_ttl {
    position: relative;
    margin-top: -10px;
}

.recipe_hd_ttl > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--color-neutral);
    font-weight: bold;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
}

.recipe_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 3px;
    margin-top: 36px;
    padding-bottom: 175px;
}

.recipe_item {
    opacity: 0;
    transition: opacity 0.8s ease-out;
    transition-delay: calc((sibling-index() - 1) * 0.2s);
}

.recipe_list.-view > .recipe_item {
    opacity: 1;
}

.recipe_item_wrap {
    display: block;
    opacity: 1 !important;
}

.recipe_item_img {
    position: relative;
    overflow: hidden;
}

.recipe_item_img::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    width: 20px;
    height: 20px;
    border-top-left-radius: 10px;
    background: var(--color-primary);
}

.recipe_item_img::after {
    content: "";
    display: block;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 20;
    width: 6px;
    height: 9px;
    background: var(--color-base);
}

.recipe_item_img > img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.6s;
}

.recipe_item_wrap:hover .recipe_item_img > img {
    transform: scale(1.05);
}

.recipe_item_cap {
    margin-top: 10px;
    padding: 0 4px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

.story {
    position: relative;
    z-index: 30;
    padding-bottom: 130px;
    background: var(--color-neutral);
}

.story::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    margin-bottom: -1px;
    background-image: url(../img/wave-neutral.svg);
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.story_hd {
    margin-top: -20px;
    line-height: 1;
    text-align: center;
}

.story_hd::before {
    content: "STORY";
    display: block;
    opacity: 0;
    color: color-mix(in srgb, var(--color-primary) 30%, transparent 70%);
    font-weight: 600;
    font-size: 90px;
    line-height: 0.9;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.story_hd.-view::before {
    animation-name: fade-in-up;
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.story_hd_ttl {
    position: relative;
    margin-top: -10px;
}

.story_hd_ttl > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--color-base);
    font-weight: bold;
    font-size: 22px;
    -webkit-font-smoothing: antialiased;
}

.story_body {
    display: grid;
    gap: 36px;
    margin-top: 46px;
}

.story_sec {
}

.story_sec:not(:first-child) {
    margin-top: 36px;
}

.story_subttl {
    display: grid;
    justify-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.story_subttl > span {
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    line-height: 1.5;

    --i: calc(sibling-index() - 1);
}

.story_subttl > span::before {
    content: "";
    display: block;
    clip-path: inset(0 100% 0 0);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--color-primary);
    transition: clip-path 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    transition-delay: calc(var(--i) * 0.15s);
    will-change: clip-path;
}

.story_subttl.-view > span::before {
    clip-path: inset(0 0 0 0);
}

.story_subttl > span > em {
    color: var(--color-primary);
}

.story_cnt {
    display: grid;
    gap: 15px;
    position: relative;
    z-index: 10;
    margin-top: 25px;
}

.story_text {
}

.story_text > em {
    color: var(--color-primary);
}

.story_text > a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 20%;
}

.story_img {
    position: relative;
    margin-top: 34px;
    text-align: center;
}

.story_sec.-sec3 .story_img {
    margin-top: -8px;
    text-align: right;
}

.story_img > img {
    position: relative;
    z-index: 10;
}

.story_img > img.-img1 {
    width: calc(290 / 375 * 100%);
}

.story_img > img.-img2 {
    width: 100%;
}

.story_img > img.-img3 {
    position: relative;
    right: -20px;
    width: calc(300 / 375 * 100%);
}

.story_img > img.-bubble1 {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 1;
    width: calc(136 / 375 * 100%);
}

.story_img > img.-bubble2 {
    position: absolute;
    bottom: -55px;
    left: -20px;
    z-index: 1;
    width: calc(205 / 375 * 100%);
}

.story_img > img.-bubble3 {
    position: absolute;
    top: -45px;
    left: -20px;
    z-index: 1;
    width: calc(145 / 375 * 100%);
}

.about {
    position: relative;
    z-index: 40;
    padding-bottom: 60px;
}

.about::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 130px;
    margin-bottom: -1px;
    background-image: url(../img/wave-white.svg);
    background-position: bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.about_ttl {
    text-align: center;
}

.about_lead {
    margin-top: 26px;
}

.about_lead_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: center;
}

.about_lead_write {
    display: block;
    clip-path: inset(0 100% 0 0);
    margin-top: -36px;
    margin-right: -20px;
    margin-left: auto;
    transition: clip-path 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    will-change: clip-path;
}

.about_lead_write.-view {
    clip-path: inset(0 0 0 0);
}

.about_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 13px;
    margin-top: 20px;
}

.about_item {
}

.about_item_img {
    /* overflow: hidden; */
    /* border-radius: 10px; */
    text-align: center;
}

.about_item_img > img {
    /* display: block; */
    /* width: 100%; */
    /* height: auto; */
}

.about_item_cap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 15px;
    text-align: center;
}

.about_item_ttl {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.about_item_gram {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.about_link {
    margin-top: 50px;
}

.about_link > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    background: var(--color-base);
    color: var(--color-text);
    font-weight: bold;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
}

.links {
    position: relative;
    z-index: 10;
    padding: 90px 40px;
    border-top: 4px solid var(--color-secondary);
    background: var(--color-base);
}

.links_wrap {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 48px;
    max-width: 1280px;
    margin-inline: auto;
}

.links_col {
    text-align: center;
}

.links_col > dt {
    font-weight: bold;
    font-size: 18px;
}

.links_col > dd {
    margin-top: 24px;
}

.links_shop {
    text-align: center;
}

.links_shop > a {
    display: inline-block;
}

.links_sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.links_sns > li {
}

.links_sns > li > a {
    display: inline-block;
}

[data-bubble] {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

[data-bubble="1"] {
    animation: bubble-float-1 10s ease-in-out infinite;
}

[data-bubble="2"] {
    animation: bubble-float-2 12s ease-in-out infinite;
    animation-delay: -3s;
}

[data-bubble="3"] {
    animation: bubble-float-3 9s ease-in-out infinite;
    animation-delay: -2s;
}

[data-bubble="4"] {
    animation: bubble-float-4 14s ease-in-out infinite;
    animation-delay: -5s;
}

@media screen and (min-width: 767px) {
    #wrapper {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 766px) {
    :root {
        --margin-offset: -20px;
        --color-primary: #f58f2c;
        --color-secondary: #edd501;
        --color-accent: #f5612c;
        --color-neutral: #faf5ef;
        --color-base: #ffffff;
        --color-text: #000000;
        --font-en: "Playfair Display", serif;
    }

    #header {
        visibility: visible;
        width: 100% !important;
    }

    html {
        scroll-padding-top: 100px;
    }

    .main {
        min-width: 0;
        padding-top: 50px;
        background: var(--color-primary);
    }

    .wrapper {
        padding: 0;
    }

    .sphd {
        display: block;
    }

    .spmenu,
    .spnav {
        display: flex;
    }

    .bg {
        display: none;
        min-width: 0;
        box-shadow: none;
    }

    .bg_img {
    }

    .bg_img.-prod {
    }

    .bg_img.-img1 {
    }

    .bg_img.-img2 {
    }

    .bg_img.-bubble1 {
    }

    .bg_img.-bubble2 {
    }

    .bg_img.-bubble3 {
    }

    .bg_img.-bubble4 {
    }

    .bg_img.-bubble1 > img,
    .bg_img.-bubble2 > img,
    .bg_img.-bubble3 > img,
    .bg_img.-bubble4 > img {
    }

    .bg_nav {
    }

    .bg_nav_home {
    }

    .bg_nav_list {
    }

    .bg_nav_list > li {
    }

    .bg_nav_list > li > a {
    }

    .content {
        clip-path: path("M0,10000 Q93,10000 360,10000 T767,10000 V10000 H0 Z");
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    body.-load .content {
        clip-path: path("M0,0 Q93,40 360,0 T767,0 V10000 H0 Z");
        animation: wave-wipe-settle-tb 0.5s ease-out 1.4s forwards, shadow-fade-in 0.5s ease-out 1.9s forwards;
    }

    .inner {
    }

    .hero {
    }

    .hero_img {
    }

    .hero_cnt {
    }

    .hero_catch {
    }

    .hero_catch svg {
    }

    .hero_catch_to,
    .hero_catch_ro,
    .hero_catch_ri {
    }

    body.-load .hero_catch_to,
    body.-load .hero_catch_ro,
    body.-load .hero_catch_ri {
    }

    body.-load .hero_catch_to {
    }

    body.-load .hero_catch_ro {
    }

    body.-load .hero_catch_ri {
    }

    .hero_pord {
    }

    .concept {
    }

    .concept_ttl {
    }

    .concept_cnt {
        margin: 0 auto;
    }

    .concept_text {
    }

    .concept_text em {
    }

    .outline {
    }

    .outline_bubble {
    }

    .outline_bubble > img {
    }

    .outline_bubble > img.-bubble {
    }

    .outline_bubble > img.-main {
    }

    .outline_cnt {
    }

    .outline_prod {
    }

    .outline_prod_img {
    }

    .outline_prod_cnt {
    }

    .outline_prod_ttl {
    }

    .outline_prod_gram {
    }

    .outline_link {
    }

    .outline_link > li {
    }

    .outline_link > li > a {
    }

    .outline_link > li > a > small {
    }

    .toromi {
    }

    .toromi::before {
    }

    .toromi::after {
    }

    .toromi.-view::after {
    }

    .toromi_ttl {
    }

    .toromi.-view .toromi_ttl {
    }

    .toromi_wrap {
    }

    .toromi_wrap::before {
    }

    .toromi_sec {
    }

    .toromi_sec:not(:first-child) {
    }

    .toromi_hd {
    }

    .toromi_hd_ttl {
    }

    .toromi_hd_ttl > span {
        font-size: max(22px, 5vw);
    }

    .toromi_hd_ttl.-view > span {
    }

    .toromi_hd_ttl > span > em {
    }

    .toromi_hd_ttl > span > em.-sonomama::after {
    }

    .toromi_sec:nth-child(2n) .toromi_hd_ttl {
    }

    .toromi_sec:nth-child(2n + 1) .toromi_hd_ttl {
    }

    .toromi_hd_bubble {
    }

    .toromi_sec:nth-child(2n) .toromi_hd_bubble {
    }

    .toromi_sec:nth-child(2n + 1) .toromi_hd_bubble {
    }

    .toromi_hd_bubble > img {
    }

    .toromi_hd_bubble > img.-bubble {
    }

    .toromi_cnt {
    }

    .toromi_text {
    }

    .toromi_text > em {
    }

    .recipe {
    }

    .recipe::before {
    }

    .recipe_hd {
    }

    .recipe_hd::before {
        font-size: min(90px, 24vw);
    }

    .recipe_hd.-view::before {
    }

    .recipe_hd_ttl {
    }

    .recipe_hd_ttl > span {
    }

    .recipe_list {
    }

    .recipe_item {
    }

    .recipe_list.-view > .recipe_item {
    }

    .recipe_item_wrap {
    }

    .recipe_item_img {
    }

    .recipe_item_img::before {
    }

    .recipe_item_img::after {
    }

    .recipe_item_img > img {
    }

    .recipe_item_wrap:hover .recipe_item_img > img {
    }

    .recipe_item_cap {
    }

    .story {
    }

    .story::before {
    }

    .story_hd {
    }

    .story_hd::before {
        font-size: min(90px, 24vw);
    }

    .story_hd.-view::before {
    }

    .story_hd_ttl {
    }

    .story_hd_ttl > span {
    }

    .story_body {
    }

    .story_sec {
    }

    .story_sec:not(:first-child) {
    }

    .story_subttl {
    }

    .story_subttl > span {
    }

    .story_subttl > span::before {
    }

    .story_subttl.-view > span::before {
    }

    .story_subttl > span > em {
    }

    .story_cnt {
    }

    .story_text {
    }

    .story_text > em {
    }

    .story_text > a {
    }

    .story_img {
    }

    .story_sec.-sec3 .story_img {
    }

    .story_img > img {
    }

    .story_img > img.-img1 {
    }

    .story_img > img.-img2 {
    }

    .story_img > img.-img3 {
    }

    .story_img > img.-bubble1 {
    }

    .story_img > img.-bubble2 {
    }

    .story_img > img.-bubble3 {
    }

    .about {
    }

    .about::before {
    }

    .about_ttl {
    }

    .about_lead {
    }

    .about_lead_text {
    }

    .about_lead_write {
    }

    .about_lead_write.-view {
    }

    .about_list {
    }

    .about_item {
    }

    .about_item_img {
    }

    .about_item_img > img {
    }

    .about_item_cap {
    }

    .about_item_ttl {
    }

    .about_item_gram {
    }

    .about_link {
    }

    .about_link > a {
    }

    .links {
        padding: 60px 24px;
    }

    .links_wrap {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .links_col {
    }

    .links_col > dt {
        font-size: 16px;
    }

    .links_col > dd {
        margin-top: 16px;
    }

    .links_shop {
    }

    .links_shop > a {
    }

    .links_sns {
    }

    .links_sns > li {
    }

    .links_sns > li > a {
    }
}

@media screen and (max-width: 430px) {
    .content {
        clip-path: path("M0,10000 Q93,10000 187,10000 T375,10000 V10000 H0 Z");
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    body.-load .content {
        clip-path: path("M0,0 Q93,40 187,0 T375,0 V10000 H0 Z");
        animation: wave-wipe-settle-sp 0.5s ease-out 1.4s forwards, shadow-fade-in 0.5s ease-out 1.9s forwards;
    }
}

@media screen and (max-width: 375px) {
    .content {
        clip-path: path("M0,10000 Q93,10000 187,10000 T375,10000 V10000 H0 Z");
    }

    body.-load .content {
        clip-path: path("M0,0 Q93,40 187,0 T375,0 V10000 H0 Z");
        animation: wave-wipe-settle 0.5s ease-out 1.4s forwards, shadow-fade-in 0.5s ease-out 1.9s forwards;
    }
}

@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
}

/* 泡のふよふよアニメーション */
@keyframes bubble-float-1 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    25% {
        transform: translateY(-8px) translateX(3px) scale(1.02);
    }

    50% {
        transform: translateY(-4px) translateX(-2px) scale(0.98);
    }

    75% {
        transform: translateY(-10px) translateX(1px) scale(1.01);
    }
}

@keyframes bubble-float-2 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    20% {
        transform: translateY(-6px) translateX(-4px) scale(0.97);
    }

    40% {
        transform: translateY(-12px) translateX(2px) scale(1.03);
    }

    60% {
        transform: translateY(-5px) translateX(-1px) scale(0.99);
    }

    80% {
        transform: translateY(-9px) translateX(3px) scale(1.01);
    }
}

@keyframes bubble-float-3 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    33% {
        transform: translateY(-7px) translateX(5px) scale(1.04);
    }

    66% {
        transform: translateY(-14px) translateX(-3px) scale(0.96);
    }
}

@keyframes bubble-float-4 {
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    15% {
        transform: translateY(-5px) translateX(-2px) scale(1.02);
    }

    35% {
        transform: translateY(-11px) translateX(4px) scale(0.98);
    }

    55% {
        transform: translateY(-8px) translateX(-5px) scale(1.03);
    }

    75% {
        transform: translateY(-13px) translateX(2px) scale(0.97);
    }
}

@keyframes fade-in-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wave-wipe-settle {
    0% {
        clip-path: path("M0,0 Q93,40 187,0 T375,0 V10000 H0 Z");
    }

    99% {
        clip-path: path("M0,0 Q93,0 187,0 T375,0 V10000 H0 Z");
    }

    100% {
        clip-path: none;
    }
}

@keyframes wave-wipe-settle-tb {
    0% {
        clip-path: path("M0,0 Q93,40 360,0 T767,0 V10000 H0 Z");
    }

    99% {
        clip-path: path("M0,0 Q93,0 360,0 T767,0 V10000 H0 Z");
    }

    100% {
        clip-path: none;
    }
}

@keyframes wave-wipe-settle-sp {
    0% {
        clip-path: path("M0,0 Q93,40 230,0 T430,0 V10000 H0 Z");
    }

    99% {
        clip-path: path("M0,0 Q93,0 230,0 T430,0 V10000 H0 Z");
    }

    100% {
        clip-path: none;
    }
}

@keyframes shadow-fade-in {
    0% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    }
}
