@charset "utf-8";

/* CSS Document */
/********************************************************/
/******** 共通（body,inner,pタグ,imgタグの基本設定） ********/
/*******************************************************/
body {
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
}

body p {
    word-break: break-all;
}

body img {}

.inner {
    display: block;
    width: 94%;
    max-width: 1100px;
    margin: 0 auto;
}

.appear {
    animation: appear 0.5s ease forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* SP */
@media only screen and (max-width:768px) {
    body img {
        width: 100%;
    }

    .inner {
        width: 90%;
    }

}

/**********************/
/****** ヘッダー ******/
/**********************/
.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 70px 0 0;
}

.headerScrolled {
    animation: headerScrolled 1s ease forwards;
}

/* SP */
@media only screen and (max-width:768px) {
    .headerScrolled {
        animation: headerScrolledSp 1s ease forwards;
    }
}

@keyframes headerScrolled {
    0% {
        padding: 70px 0 0;
        background: rgba(0, 0, 0, 0);
    }

    50% {
        padding: 20px 0;

    }

    100% {
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.6);
    }
}


@keyframes headerScrolledSp {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    100% {
        background: rgba(0, 0, 0, 0.6);
    }
}

.headerScrolledReverse {
    animation: headerScrolledReverse 1s ease forwards;
}

/* SP */
@media only screen and (max-width:768px) {
    .headerScrolledReverse {
        animation: headerScrolledReverseSp 0.5s ease forwards;
    }
}

@keyframes headerScrolledReverse {
    0% {
        padding: 20px 0;
        background: rgba(0, 0, 0, 0.6);
    }

    50% {
        padding: 70px 0 0;

    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}

@keyframes headerScrolledReverseSp {
    0% {
        background: rgba(0, 0, 0, 0.6);
    }

    100% {
        background: rgba(0, 0, 0, 0);
    }
}


.headerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4%;
    margin: 0 auto;
    box-sizing: border-box;
}

.headerLogo {
    width: 40%;
    font-size: 2.4em;
    font-weight: 300;
    font-family: 'Lora', serif;
    color: #FFF;
    letter-spacing: 0.033em;
    transform: rotate(0.03deg);
}

.headerLogo img {
    height: 26px;
}

.headerNav {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.headerNav a {
    position: relative;
    margin: 0 40px 0 0;
    padding: 10px 0;
    font-size: 1.8em;
    font-weight: 300;
    color: #FFF;
    text-decoration: none;
    letter-spacing: 0.033em;
    transition: 0.5s;
}

.headerNav a:hover {
    opacity: 0.7;
}

.headerNav a:last-of-type {
    margin: 0;
}

.headerNavActive:after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #FFF;
    animation: appear 0.5s ease forwards;
}

.instagram {
    width: 24px;
    height: 24px;
}

.instagram img {
    width: 100%;
}

.humberger {
    display: none;
}

/* 中間位置で調整 */
@media only screen and (max-width:880px) {
    .headerLogo {
        font-size: 2.3em;
    }

    .headerNav a {
        margin: 0 20px 0 0;
    }

}

/* SP */
@media only screen and (max-width:768px) {
    .header {
        position: fixed;
        /*background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);*/
        padding: 0;
    }

    .headerInner {
        padding: 10px 4%;
    }

    .headerLogo {
        width: auto;
        font-size: 1.6em;
        font-weight: 300;
        color: #FFF;
        letter-spacing: 0.033em;
    }

    .headerLogo img {
        width: auto;
        height: 17px;
    }


    .headerNav {
        width: auto;
        margin: 5px 0 0;
    }

    .headerNav a {
        display: none;
    }

    .headerNav a.instagram {
        display: block;
        width: 24px;
        height: 24px;
    }

    .humberger {
        display: block;
        width: 28px;
        margin: 0 0 0 20px;
    }

    .humberger div {
        width: 100%;
        height: 3px;
        margin: 0 0 7px;
        background: #FFF;
    }

    .humberger div:last-of-type {
        margin: 0;
    }

    .headerNavSp {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.8);
    }

    .headerNavSpActive {
        animation: headerNavSpActive 0.5s ease forwards;
    }

    .headerNavSp a {
        display: block;
        width: 100%;
        padding: 20px 0;
        border-bottom: 1px solid #FFF;
        font-size: 1.8em;
        text-align: center;
        font-weight: 300;
        color: #FFF;
        text-decoration: none;
        letter-spacing: 0.033em;
    }

    .headerNavSp a:last-of-type {
        border-bottom: none;
    }

    .headerNavSpClose {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1001;
        font-size: 3em;
        color: #FFF;
    }
}

@keyframes headerNavSpActive {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

/* SP */
@media only screen and (max-width:768px) {}

/**********************/
/****** フッター ******/
/**********************/
.footer {
    background: #1F1E1E;
    padding: 50px 0;
}

.footerNav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerNav a {
    margin: 0 30px 0 0;
    font-size: 2.1em;
    font-weight: 300;
    color: #FFF;
    text-decoration: none;
    letter-spacing: 0.033em;
    transition: 0.5s;
}

.footerNav a:hover {
    opacity: 0.7;
}

.footerNav a:last-of-type {
    margin: 0;
}

.footerInstagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 45px 0;
    transition: 0.5s;
}

.footerInstagram:hover {
    opacity: 0.7;
}

.footerLinkSmall {
    font-size: 0.8rem;
    text-decoration: underline;
    color: #FFF;
    font-weight: 300;
    letter-spacing: 0.033em;
}

.footerCorpName {
    margin: 0 0 45px;
    color: #FFF;
    font-size: 1.8em;
    font-weight: 300;
    letter-spacing: 0.033em;
    text-align: center;
}

.footerCorpAddress {
    color: #FFF;
    font-size: 1.4em;
    font-weight: 300;
    letter-spacing: 0.033em;
    line-height: 1.7;
    text-align: center;
}

/* SP */
@media only screen and (max-width:768px) {
    .footerNav a {
        margin: 0 15px 0 0;
        font-size: 1.8em;
    }

    .footerInstagram {
        width: 30px;
        margin: 30px auto;
    }
}

/**********************/
/****** パーツ類 *******/
/**********************/
/*タイトル・見出し系（h2,h3,h4）*/
.headlineCenter {
    /*
  font-size: 6.0em;
  */
    font-size: calc(100vw / 1100 * 34);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

.headlineLeft {
    font-size: 2.4em;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: left;
}

@media only screen and (max-width:768px) {
    .headlineCenter {
        font-size: 3em;
    }
}

/***テキスト***/
.text {
    font-size: 1.8em;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 300;
    color: #000;
}

@media only screen and (max-width:768px) {}

/***画像・動画***/

@media only screen and (max-width:768px) {}

/***ボタン***/
.moreButton {
    width: 300px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D97564;
    font-size: 2.4em;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #FFF;
    transition: 0.5s;
}

.moreButton:hover {
    opacity: 0.7;
}


.moreButton:before {
    content: url(../images/buttonIcon.svg);
    width: 34px;
    height: 34px;
    margin: 0 15px 0 0;
}

.moreButtonActive:before {
    transform: rotate(180deg);
}

@media only screen and (max-width:768px) {
    .moreButton {
        height: 60px;
        font-size: 1.8em;
    }

    .moreButton:before {
        content: url(../images/buttonIcon.svg);
        width: 28px;
        height: 28px;
        margin: 0 10px 0 0;
    }
}

/***キャプション、コピー等***/

@media only screen and (max-width:768px) {}

/***リスト系***/

@media only screen and (max-width:768px) {}

/***囲い系***/

@media only screen and (max-width:768px) {}

/***テーブル***/

@media only screen and (max-width:768px) {}

/**********************/
/****** TOPページ *****/
/**********************/
.topSlider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.topSliderItem {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 100%;
    height: 100vh;
}

.sliderController {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
}

.js-sliderController-active {
    background: #FFF;
}

.sliderController button {
    width: 10px;
    height: 10px;
    margin: 0 20px 0 0;
    border-radius: 10px;
    border: 1px solid #FFF;
}

.topCatchCopy {
    position: absolute;
    max-width: 1280px;
    /*font-family: 'Oooh Baby', cursive;*/
    font-size: calc(100vw / 1280 * 32);
    /*font-size: calc(100vw / 1280 * 30);*/
    font-weight: 500;
    color: #FFF;
    text-align: center;
    line-height: 1.32;
}

@media only screen and (max-width:768px) {
    .topSlider {
        height: 0;
        padding-bottom: 56%;
    }

    .topSliderItem {
        height: 100%;
    }

    .topCatchCopy {
        font-size: 1.6em;
        margin: 65% 5% 0;
    }

}


.content {
    background: #FCF9ED;
    padding: 90px 0 140px;
}

@media only screen and (max-width:768px) {
    .content {
        padding: 45px 0 90px;
    }
}


/* レシピ */
.recipesArea {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 55px 0 0;
}

.recipe {
    max-width: 326px;
    width: calc(100% / 3 - 20px);
    margin: 0 61px 80px 0;
}

.recipe:nth-of-type(3n) {
    margin: 0 0 80px;
}


.recipe img {
    width: 100%;
}

/*微調整*/
@media only screen and (max-width:1170px) {
    .recipe {
        width: calc(100% / 3 - 3%);
        margin: 0 4.5% 80px 0;
    }
}

.recipeHeadline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 30px;
    font-size: 2.0em;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.recipeHeadline img {
    width: auto;
    padding: 0 10px 0 0;
}

.recipeText {
    font-size: 1.4em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
}

.recipeClick {
    margin: 20px 0 0;
    padding: 0 10px 10px;
    font-size: 2.1em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-align: center;
    color: #D97564;
    border-bottom: 1px solid #D97564;
    transition: 0.5s;
}

.recipeClick:hover {
    opacity: 0.7;
    padding: 0 20px 10px;
}


@media only screen and (max-width:768px) {
    .recipesArea {
        justify-content: space-between;
        margin: 35px 0 0;
    }

    .recipe {
        width: calc(50% - 15px);
        margin: 0;
    }

    .recipeHeadline {
        display: flex;
        justify-content: flex-start;
        margin: 10px 0 15px;
        font-size: 1.6em;
    }

    .recipeHeadline img {
        height: 20px;
        width: auto;
    }

    .recipeText {
        font-size: 1.2em;
    }

    .recipeClick {
        font-size: 1.6em;
    }
}

/* 商品 */
.productsWrap {
    margin: 260px auto 0;
}

.productsArea {
    margin: 60px 0 0;
}

.productHeadline {
    display: flex;
    align-items: center;
    padding: 0 0 20px;
    font-size: 3.4em;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.productHeadlineReverse {
    width: 48%;
    max-width: 600px;
    margin: 0 0 0 calc(100% - 47%);
}

.productHeadline img {
    margin: 0 20px 0 0;
}

.productsCatFlex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 100px;
}

.productsCatFlexReverse {
    flex-flow: row-reverse;
    flex-wrap: wrap;
}

.productsCatImage {
    width: 48%;
    max-width: 516px;
    height: 400px;
}

@media only screen and (max-width:1150px) {
    .productsCatImage {
        height: 0;
        padding-bottom: 50%;
    }
}

@media only screen and (max-width:920px) {
    .productsCatImage {
        height: 0;
        padding-bottom: 70%;
    }
}

.productsCatImageMission {
    background: url(../images/mission.jpg) center center no-repeat;
    background-size: contain;

}

.productsCatImage01 {
    background: url(../images/products01.jpg) center center;
    background-size: cover;
}

.productsCatImage02 {
    background: url(../images/products02.jpg) center center;
    background-size: cover;
}

.productsCatImage03 {
    background: url(../images/products03.jpg) center center;
    background-size: cover;
}

.productsCatImage img {
    width: 100%;
}

.productsCatLinks {
    width: 50%;
    max-width: 640px;
}

.product {
    margin: 0 0 50px;
}

.product:last-of-type {
    margin: 0;
}

.product dt {
    display: inline-block;
    padding: 0;
    font-size: 2.0em;
    line-height: 1.6;
    font-weight: 500;
    color: #D97564;
    border-bottom: 1px solid #D97564;
}

.product dt a {
    line-height: 1.6;
    font-weight: 500;
    color: #D97564;
    text-decoration: none;
    cursor: pointer;
}

.product dt a:hover {
    opacity: 0.7;
}

.product dd {
    margin: 10px 0 0;
    font-size: 1.6em;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 300;
    color: #000;
}

@media only screen and (max-width:768px) {
    .productsWrap {
        margin: 120px auto 0;
    }

    .productsArea {
        margin: 35px 0 0;
    }

    .productsCatFlex {
        margin: 0;
    }

    .productsCatFlexReverse {
        flex-flow: unset;
        flex-wrap: wrap;
    }

    .productHeadline {
        font-size: 2.6em;
    }

    .productHeadline img {
        height: 20px;
        width: auto;
        margin: 0 10px 0 0;
    }

    .productHeadlineReverse {
        width: 100%;
        margin: 0;
    }

    .productsCatImage {
        width: 100%;
        max-width: none;
        padding-bottom: 67%;
    }

    .productsCatLinks {
        width: 100%;
    }

    .product {
        margin: 20px 0 0;
    }

    .product:last-of-type {
        margin: 20px 0 60px;
    }

    .product dt {
        font-size: 1.6em;
    }


    .product dd {
        font-size: 1.4em;
    }

}

/* プロセス */
.processWrap {
    margin: 260px auto 0;
}

.process {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 60px 0 0;
}

.processItem {
    max-width: 340px;
    width: calc(100% / 3 - 40px)
}

.processItem dt {
    margin: 0 0 30px;
    text-align: center;
}

.processItem dt img {
    width: 100%;
}


.processItem01 dt {
    padding: 12px 0 0;
}

.processItem01 dt img {
    width: 100px;
}

.processItem02 dt {}

.processItem02 dt img {
    width: 110px;
}

.processItem03 dt {
    padding: 6px 0 0;
}

.processItem03 dt img {
    width: 120px;
}


.processItem dd {
    font-size: 2.1em;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 300;
    text-align: left;
}

.processItem dd a {
    color: #D97564;
    transition: 0.5s;
}

.processItem dd a:hover {
    text-decoration: none;
}

.processArrow {
    width: 0;
    height: 0;
    margin: 20px 0 0;
    border-style: solid;
    border-width: 25px 0 25px 30px;
    border-color: transparent transparent transparent #000;
}


/* SP */
@media only screen and (max-width:768px) {
    .processItem {
        width: 100%;
        margin: 0 auto;
    }

    .processItem01 dt {
        padding: 0;
    }

    .processItem03 dt {
        padding: 0;
    }

    .processItem dt img {
        width: 30%;
    }

    .processItem dd {
        font-size: 1.4em;
    }

    .processArrow {
        margin: 25px 0 25px calc(50% - 25px);
        border-width: 25px 20px 0 20px;
        border-color: #000 transparent transparent transparent;
    }
}

.benefitsImage {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px auto;
}

/* benefits：画像(benefits01.png等)をHTML+CSSで再現したプレート */
.benefitsItem {
    --r: 16px;
    /* 四隅の切り欠き半径 */
    --bw: 4px;
    /* 金の縁の太さ */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32%;
    max-width: 900px;
    aspect-ratio: 412 / 341;
    /* 元画像と同じ比率 */
    margin: 0 0 20px;
    box-sizing: border-box;
    /* 金の縁（外層） */
    background: linear-gradient(160deg, #f0da88 0%, #d3ab4d 35%, #b08430 65%, #e6c975 100%);
    -webkit-mask:
        radial-gradient(circle var(--r) at 0 0, #0000 98%, #000) top left,
        radial-gradient(circle var(--r) at 100% 0, #0000 98%, #000) top right,
        radial-gradient(circle var(--r) at 0 100%, #0000 98%, #000) bottom left,
        radial-gradient(circle var(--r) at 100% 100%, #0000 98%, #000) bottom right;
    -webkit-mask-size: 51% 51%;
    -webkit-mask-repeat: no-repeat;
    mask:
        radial-gradient(circle var(--r) at 0 0, #0000 98%, #000) top left,
        radial-gradient(circle var(--r) at 100% 0, #0000 98%, #000) top right,
        radial-gradient(circle var(--r) at 0 100%, #0000 98%, #000) bottom left,
        radial-gradient(circle var(--r) at 100% 100%, #0000 98%, #000) bottom right;
    mask-size: 51% 51%;
    mask-repeat: no-repeat;
}

/* 茶色のパネル（内層）。縁が形に沿うよう同じ形でひと回り小さく */
.benefitsItem::before {
    content: "";
    position: absolute;
    inset: var(--bw);
    background: radial-gradient(120% 105% at 50% 28%, #6e5636 0%, #5c4628 40%, #493519 75%, #3d2c15 100%);
    -webkit-mask:
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(-1 * var(--bw)) calc(-1 * var(--bw)), #0000 98%, #000) top left,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(100% + var(--bw)) calc(-1 * var(--bw)), #0000 98%, #000) top right,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(-1 * var(--bw)) calc(100% + var(--bw)), #0000 98%, #000) bottom left,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(100% + var(--bw)) calc(100% + var(--bw)), #0000 98%, #000) bottom right;
    -webkit-mask-size: 51% 51%;
    -webkit-mask-repeat: no-repeat;
    mask:
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(-1 * var(--bw)) calc(-1 * var(--bw)), #0000 98%, #000) top left,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(100% + var(--bw)) calc(-1 * var(--bw)), #0000 98%, #000) top right,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(-1 * var(--bw)) calc(100% + var(--bw)), #0000 98%, #000) bottom left,
        radial-gradient(circle calc(var(--r) + var(--bw)) at calc(100% + var(--bw)) calc(100% + var(--bw)), #0000 98%, #000) bottom right;
    mask-size: 51% 51%;
    mask-repeat: no-repeat;
}

.benefitsItem span {
    position: relative;
    z-index: 1;
    max-width: 70%;
    font-family: 'Lora', serif;
    font-size: clamp(1.6rem, 2.2vw, 3rem);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width:768px) {
    .benefitsItem {
        width: 48%;
        margin: 0 0 20px;
    }

    .benefitsItem span {
        font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    }
}

.certificates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 60px auto;
}

.certificates img {
    width: auto;
}

.certificateText {
    margin: 10px 0 0;
    font-size: 1.6em;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 300;
    color: #000;
}
/**********************/
/****** 中ページ ****/
/**********************/
/* 共通（中ページ共通パーツ） */

.modal {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    animation: appear 1s forwards ease;
    background: rgba(0, 0, 0, 0.7)
}

.modalInner {
    position: fixed;
    z-index: 10001;
    width: 90%;
    height: 85vh;
    padding: 20px 7%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #FCF9ED;
    overflow-y: scroll;
    animation: appear 1s forwards ease;
}

.modalClose {
    position: fixed;
    z-index: 10002;
    top: 10px;
    right: 20px;
    font-size: 90px;
    color: #FFF;
    font-weight: 300;
}

.modalHeadline {
    margin: 60px 0 0;
    font-size: 3.2em;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #000;
    text-align: center;
}

.modalIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}

.modalIcons li {
    margin: 0 15px 0 0;
}

.modalIcons li:last-of-type {
    margin: 0;
}

.modalFlex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.modalImage {
    width: 30%;
    text-align: center;
}

.modalFlexProducts .modalImage {
    width: 20%;
    text-align: center;
}

.modalImage img {
    max-width: 100%;
}

.modalFlexRight {
    width: 67%;
}

.modalFlexProducts .modalFlexRight {
    width: 76%;
    text-align: left;
}

.modalText {
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.modalHeadlineSmall {
    margin: 20px 0 5px;
    font-size: 1.8em;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #D97564;
}

.modalListCircle li {
    margin: 0 0 5px;
    list-style-type: circle;
    list-style-position: inside;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.modalListNumber li {
    margin: 0 0 10px;
    list-style-type: decimal;
    list-style-position: inside;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.modalListNumber li a {
    color: #D97564;
    text-decoration: underline;
    cursor: pointer;
}


.modalListCircle li:last-of-type,
.modalListNumber li:last-of-type {
    margin: 0;
}

.modalDl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 10px 0 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #DDD;
}

.modalDl dt {
    width: 150px;
    font-size: 1.6em;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #D97564;
}


.modalDl dd {
    width: calc(100% - 170px);
    margin: 0 0 0 20px;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.4;
}


.modalLinks {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    cursor: pointer;
    /*margin: 60px 0 0;*/
    padding: 60px 0 0;
    border-top: 1px solid #000;
}

.modalLinks a {
    width: 100%;
    margin: 0 2% 30px 0;
    color: #000;
    text-decoration: none;
}

.modalLinksTitle {
    font-size: 1.8em;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #D97564;
    text-decoration: underline;
    text-align: center;
}


.modalLinks a:nth-of-type(3n) {
    margin: 0;
}

.modalLinksImage {
    width: 100%;
    text-align: center;
}

.modalLinksImage img {
    max-width: 100px;
}

/* SP */
@media only screen and (max-width:768px) {
    .modalInner {
        width: 85%;
        height: 90vh;
    }

    .modalClose {
        top: 0px;
        right: 10px;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8), 0px 0px 4px rgba(0, 0, 0, 0.8);
    }

    .modalHeadline {
        margin: 20px 0;
        font-size: 2.8em;
        line-height: 1.2;
    }

    .modalImage {
        width: 100%;
        text-align: center;
        margin: 0 0 20px;
    }

    .modalFlexProducts .modalImage {
        width: 100%;
        text-align: center;
    }

    .modalImage img {
        max-width: 100%;
    }

    .modalFlexRight {
        width: 100%;
    }

    .modalFlexProducts .modalFlexRight {
        width: 100%;
        text-align: left;
    }

    .modalLinks a {
        width: 45%;
        margin: 0 10% 15px 0;
    }

    .modalLinks a:last-of-type {
        margin: 0 0 15px 0;
    }

    .modalDl dt {
        width: 100%;
    }


    .modalDl dd {
        width: 100%;
        margin: 10px 0 0;
    }

}



/*ローダー*/
.loader {
    margin: auto;
    font-size: 25px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -9999em;
    -webkit-animation: load5 1.1s infinite ease;
    animation: load5 1.1s infinite ease;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

@-webkit-keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #d97564, 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.5), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.7), 1.8em -1.8em 0 0em #d97564, 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.5), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.7), 2.5em 0em 0 0em #d97564, 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.5), 2.5em 0em 0 0em rgba(217, 117, 100, 0.7), 1.75em 1.75em 0 0em #d97564, 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.5), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.7), 0em 2.5em 0 0em #d97564, -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.5), 0em 2.5em 0 0em rgba(217, 117, 100, 0.7), -1.8em 1.8em 0 0em #d97564, -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.5), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.7), -2.6em 0em 0 0em #d97564, -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.5), -2.6em 0em 0 0em rgba(217, 117, 100, 0.7), -1.8em -1.8em 0 0em #d97564;
    }
}

@keyframes load5 {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #d97564, 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.5), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.7), 1.8em -1.8em 0 0em #d97564, 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.5), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.7), 2.5em 0em 0 0em #d97564, 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.5), 2.5em 0em 0 0em rgba(217, 117, 100, 0.7), 1.75em 1.75em 0 0em #d97564, 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.5), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.7), 0em 2.5em 0 0em #d97564, -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.2), -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.5), 0em 2.5em 0 0em rgba(217, 117, 100, 0.7), -1.8em 1.8em 0 0em #d97564, -2.6em 0em 0 0em rgba(217, 117, 100, 0.2), -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.5), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.7), -2.6em 0em 0 0em #d97564, -1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(217, 117, 100, 0.2), 1.8em -1.8em 0 0em rgba(217, 117, 100, 0.2), 2.5em 0em 0 0em rgba(217, 117, 100, 0.2), 1.75em 1.75em 0 0em rgba(217, 117, 100, 0.2), 0em 2.5em 0 0em rgba(217, 117, 100, 0.2), -1.8em 1.8em 0 0em rgba(217, 117, 100, 0.5), -2.6em 0em 0 0em rgba(217, 117, 100, 0.7), -1.8em -1.8em 0 0em #d97564;
    }
}

/*中ページ*/
.privacy {
    background: #FCF9ED;
}