@charset "utf-8";
/* CSS Document */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
root設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

*:root {
    font-optical-sizing: auto;
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1;
    /*自動カーニング*/
    font-feature-settings: "palt";
    text-align: justify;
    /* 変数 */
    --color-karashi: #ecaf3c;
    --color-red: #ac272b;
    --width-kihon: 91.5%;
    --width-lage: 92%;
}

@media screen and (max-width:768px) {

    /*幅768pxの時に1文字10pxとなる値*/
    *:root {
        font-size: 1.30208vw;
    }
}

@media screen and (max-width:480px) {

    /*幅375pxの時に1文字10pxとなる値*/
    *:root {
        font-size: 2.6667vw;
    }
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
リンク設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*リンク*/

a {
    color: #034EAA;
    text-decoration: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

a:visited {
    color: #2066BB;
}

a:hover {
    opacity: 0.8;
}

a:active {
    opacity: 0.5;
}

/*PCでリンクを殺す*/

@media screen and (min-width:481px) {
    a.disabled {
        pointer-events: none;
    }

    a.disabled:hover, a.disabled:active {
        opacity: 1 !important;
    }
}

/*SPでリンクを殺す*/

@media screen and (max-width:480px) {
    a.sp_disabled {
        pointer-events: none;
    }

    a.sp_disabled:hover, a.sp_disabled:active {
        opacity: 1 !important;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
表示設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*PCで消す*/

.pc_hide {
    display: none;
}

/*SPで表示*/

@media screen and (max-width:480px) {
    .sp_hide {
        display: none;
    }

    .pc_hide {
        display: block;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
画像
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

img {
    width: 100%;
    height: auto;
}


/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページ設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
body {
    background-color: #eee;
}

.page_wrap {
    /* ページ全体の幅 */
    min-width: 980px;
}

.page_wrap .content_wrap {
    max-width: 750px;
    margin: auto;
    background-color: #fff;
    overflow: hidden;
}

@media screen and (max-width:480px) {
    .page_wrap {
        /* ページ全体の幅 */
        min-width: 320px;
    }
}




/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページトップボタン設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.pagetop {
    position: fixed;
    right: 0.5rem;
    bottom: 0.5rem;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    z-index: 20;
    width: 5rem;
    height: 5rem;
}

.pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
}

.pagetop a span {
    display: none;
}

.pagetop.on {
    visibility: visible;
    opacity: 1;
}

.pagetop a::after {
    content: "";
    position: absolute;
    display: block;
    top: 2.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(-45deg);
}

/*PC版のみhoverを付与*/

@media screen and (min-width: 769px) {
    .pagetop.on a:hover {
        opacity: 0.7;
        transition: 0.2s;
    }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
fade
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.fade {
    opacity: 0;
    transform: translate(0, 2rem);
    /* ぼかし */
    /* filter: blur(0.5rem); */
}

.fade_left {
    transform: translateX(-2rem);
}

.fade_right {
    transform: translateX(2rem);
}

.fade.fade_in {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0);
    transition: ease-in-out 700ms;
}

/*fade_delay_wrap 横並びを順番にディレイ*/

.fade_delay_wrap .fade_delay_child {
    opacity: 0;
    transform: translate(0, 2rem);
    /* ぼかし */
    /* filter: blur(0.5rem); */
}

.fade_delay_wrap.fade_in .fade_delay_child {
    opacity: 1;
    transform: translate(0, 0);
    transition: ease-in-out 700ms;
    /* ぼかし */
    /* filter: blur(0); */
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(2) {
    transition-delay: 0.1s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(3) {
    transition-delay: 0.2s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(4) {
    transition-delay: 0.3s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(5) {
    transition-delay: 0.4s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(6) {
    transition-delay: 0.5s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(7) {
    transition-delay: 0.6s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(8) {
    transition-delay: 0.7s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(9) {
    transition-delay: 0.8s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(10) {
    transition-delay: 0.9s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(11) {
    transition-delay: 1.0s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(12) {
    transition-delay: 1.1s;
}

/*fade_block　囲った要素の中で任意にディレイ*/

.fade_block .fade_blocl_child {
    opacity: 0;
    transform: translate(0, 2rem);
    /* ぼかし */
    /* filter: blur(0.5rem); */
}

.fade_block .fade_blocl_child.fade_left {
    transform: translateX(-2rem);
}

.fade_block .fade_blocl_child.fade_right {
    transform: translateX(2rem);
}

.fade_block.fade_in .fade_blocl_child {
    opacity: 1;
    transform: translate(0, 0);
    transition: ease-in-out 700ms;
    /* ぼかし */
    /* filter: blur(0); */
}

.fade_block.fade_in .fade_child_02 {
    transition-delay: 0.1s;
}

.fade_block.fade_in .fade_child_03 {
    transition-delay: 0.2s;
}

.fade_block.fade_in .fade_child_04 {
    transition-delay: 0.3s;
}

.fade_block.fade_in .fade_child_05 {
    transition-delay: 0.4s;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
タイトル
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.title_kakomi {
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 0.8em 1em 0.5em;
    color: #fff;
    font-weight: 600;
    text-align: center;
    position: relative;
    width: 78%;
    margin: auto;
}

.title_kakomi::before, .title_kakomi::after {
    content: '';
    display: block;
    position: absolute;
    aspect-ratio: 2/1;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    width: 6rem;
    top: 0;
    left: 0;
}

.title_kakomi::after {
    left: auto;
    top: auto;
    bottom: 0;
    right: 0;
    transform: scale(-1, -1);
}

/*-*/


.title_keisen {
    width: 81%;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border: 1px solid var(--color-karashi);
    margin: auto;
    letter-spacing: -0.025em;
    padding: 0.5em 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.title_keisen em {
    font-size: 1.25em;
    color: var(--color-karashi);
    font-style: normal;
}

/*-*/

.title_tate_border {
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.14em;
}

.title_tate_border span {
    display: inline-block;
    border-right: 1px solid #fff;
    margin-right: 0.5em;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ボタン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.button_wrap {
    margin: 2.2rem auto;
}

.button_wrap a.button {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: var(--width-kihon);
    margin: auto;
    background-color: var(--color-red);
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.14em;
    height: 5rem;
    border-radius: 2.5rem;
    box-shadow: 0.3rem 0.3rem 0 #9d9d9d;
    font-weight: 600;
}

.button_wrap a.button::after {
    content: '';
    display: block;
    width: 2.4rem;
    aspect-ratio: 1/1;
    background-image: url(../img/icon-maruyajirushi.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 2.4rem;
    transform: translate(0, -50%);
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
口コミ
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.kuchikomi {
    background-color: #000;
    margin-top: -1px;
    position: relative;
}

.kuchikomi h3 {
    color: var(--color-karashi);
    font-size: 2.2rem;
    text-align: center;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 0.75em;
}

.kuchikomi h3 span {
    display: inline-block;
    padding: 0 0.75em;
    position: relative;
}

.kuchikomi h3 span::before, .kuchikomi h3 span::after {
    content: '';
    display: block;
    width: 1.25em;
    height: 1px;
    background-color: var(--color-karashi);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, 0);
}

.kuchikomi h3 span::after {
    left: auto;
    right: 0;
    transform: translate(100%, 0);
}

.kuchikomi .fukdashi_wrap {
    margin: 0 2rem;
}

.kuchikomi .fukdashi_wrap li {
    font-size: 1.3rem;
    line-height: 1.42;
    background-color: #fff;
    padding: 1em;
    margin: 0.6rem 0;
    border-radius: 0.5em;
    font-weight: 600;
    position: relative;
    width: 90%;
    float: left;
    box-sizing: border-box;
}

.kuchikomi .fukdashi_wrap li::before {
    content: '';
    display: block;
    width: calc(1.6rem / 2 * tan(45deg));
    height: 1.6rem;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-90%, -50%);
}



.kuchikomi .fukdashi_wrap li:nth-child(2n) {
    width: 87%;
    float: right;
}

.kuchikomi .fukdashi_wrap li:nth-child(2n)::before {
    left: auto;
    right: 0;
    transform: translate(90%, -50%) scale(-1, 1);
}

.kuchikomi .fukdashi_wrap::after,
.kuchikomi .fukdashi_wrap li::after {
    content: '';
    display: block;
    clear: both;
}

.kuchikomi .fukdashi_wrap li:last-child {
    margin-bottom: 0;
}

.kuchikomi .img-01 {
    text-orientation: upright;
    position: relative;
}

.kuchikomi .img-01 img {
    position: relative;
    z-index: 1;
}

.kuchikomi .img-01 h4 {
    position: absolute;
    z-index: 10;
    top: 4rem;
    right: 2.2rem;

}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
こんな方にオススメ
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.osusume {
    background-image: url(../img/bg-01.webp);
    background-size: 100% auto;
    background-position: 0 31.9rem;
    background-repeat: repeat-y;
    padding-bottom: 1.4rem;
    position: relative;
    margin-top: -1px;
}

.osusume h2 {
    background: url(../img/img-02.webp), linear-gradient(0deg, rgba(0, 0, 0, 0.06766456582633051) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
    background-size: cover, auto;
    padding: 5rem 0 0;
    box-sizing: border-box;
    aspect-ratio: 375/319;
    background-repeat: no-repeat;
    background-position: bottom center, auto;
}

.osusume h2 span {
    display: block;
    width: 80%;
    margin: auto;
}

.osusume ul {
    width: var(--width-kihon);
    margin: -3.2rem auto 1rem;
}

.osusume ul li {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.25);
    padding: 1.2rem;
    margin: 0 0 1.2rem;
}

.osusume h3 {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 600;
    margin: 1em 0 0.5em;
}

.osusume .img_oniwara {
    width: var(--width-kihon);
    margin: auto;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
高評価の理由
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.hyouka {
    background-image: url(../img/bg-02.webp);
    background-size: contain;
    padding: 3.8rem 0 0;
}

.hyouka .img-04 {
    margin: 3.4rem 0 2.4rem;
}

.hyouka h3.souzou {
    font-size: 2.4rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    margin: 1em 0;
}

.hyouka p.lead_copy {
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
    line-height: 2;
}

.hyouka h3.title_keisen {
    transform: translateY(50%);
}

.hyouka .img-05 {
    width: 35.1rem;
    margin-bottom: 2rem;
}

.hyouka .copy_nande {
    font-size: 1.4rem;
    line-height: 1.75;
    color: #fff;
    width: 86.7%;
    margin: 0 auto 3.6rem;
}

.hyouka .yaizushiki {
    background-color: rgba(236, 175, 60, 0.3);
    width: var(--width-lage);
    margin: 0 auto 10.6rem;
    padding: 0.8rem;
    border-radius: 0.4rem;
    position: relative;
    box-sizing: border-box;
}

.hyouka .yaizushiki .inner {
    border: 1px solid #fff;
    border-radius: 0.3rem;
    padding: 3rem 2rem 7.7rem;
}

.hyouka .yaizushiki .inner h3 {
    width: 22.2rem;
    margin: auto auto 2rem;
}

.hyouka .yaizushiki .inner h4 {
    font-size: 1.7rem;
    color: #806239;
}

.hyouka .yaizushiki .inner h4 span {
    display: inline-block;
    background-color: #fff;
    padding: 0.25em;
    margin: 0.2em 0;
}

.hyouka .yaizushiki .inner p {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.75;
    margin: 1em 0;
}

.hyouka .yaizushiki::after {
    content: '';
    display: block;
    position: absolute;
    width: 28rem;
    aspect-ratio: 280/197;
    background-image: url(../img/img-06.webp);
    background-size: contain;
    bottom: 0;
    right: -1rem;
    transform: translateY(35%);
}

.hyouka .img-07+.copy_nande {
    width: 100%;
    text-align: center;
}

.hyouka .img-08 {
    padding-left: 4%;
}

.hyouka .img-08+.title_keisen {
    transform: translateY(0);
    margin: -3rem auto 2rem;
}

.hyouka .img-08+.title_keisen em {
    font-size: 1em;
}

.hyouka .chadsuke {
    position: relative;
    background-image: url(../img/img-09.webp);
    aspect-ratio: 375/376;
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
}

.hyouka .chadsuke h4 {
    position: absolute;
    top: 0;
    right: 2.8rem;
    width: 6.6rem;
}

.hyouka .chadsuke .button_wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
栄養食
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.eiyo {
    background-image: url(../img/bg-03.webp);
    background-size: contain;
    padding: 4.2rem 0 1.2rem;
}

.eiyo h2 {
    width: 87%;
    margin: auto auto 2rem;
}

.eiyo .img-10 {
    margin-bottom: 1rem;
}

.eiyo h3 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1em;
}

.eiyo .img-11 {
    position: relative;
    padding: 0 2.1rem 6.2rem;
    margin-bottom: 4rem;
}

.eiyo .img-11 h4 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
    padding: 0.5em 1em;
    background: rgb(168, 58, 46);
    background: linear-gradient(90deg, rgba(168, 58, 46, 1) 0%, rgba(219, 90, 36, 1) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
}

.eiyo ul {
    margin-bottom: 4.2rem;
}

.eiyo ul li {
    display: flex;
    margin-bottom: 2.2rem;
}

.eiyo ul li:nth-child(2n) {
    flex-direction: row-reverse;
}

.eiyo ul li .img {
    width: 76.8%;
    flex-shrink: 0;
}

.eiyo ul li h5 {
    width: 23.2%;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
食べ方
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.tabekata {
    background-color: var(--color-red);
    padding: 3.6rem 0;
    background-image: url(../img/bg-04.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.tabekata h3 {
    width: 82.66%;
    margin: 3rem auto 1.2rem;
}

.tabekata h4 {
    width: 88.5%;
    margin: -7rem auto 1.6rem;
}

.tabekata p {
    font-size: 1.7rem;
    line-height: 1.55;
    text-align: center;
    color: #fff;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
金額
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.kingaku {
    padding: 3rem 0;
}


.kingaku .ponzu {
    background-color: rgba(236, 175, 60, 0.3);
    width: var(--width-lage);
    margin: 2.4rem auto 1.2rem;
    padding: 0.8rem;
    border-radius: 0.4rem;
    position: relative;
    box-sizing: border-box;
}

.kingaku .ponzu .inner {
    border: 1px solid #fff;
    border-radius: 0.3rem;
    padding: 3rem 0 2rem;
}

.kingaku .ponzu .inner h3 {
    width: 26.8rem;
    margin: auto auto 2rem;
}


.kingaku .ponzu .inner p {
    font-size: 1.4rem;
    line-height: 1.75;
    width: 88%;
    margin: 1em auto;
    font-weight: 600;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
召し上がり方
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.meshiagari {
    background-image: url(../img/bg-05.webp);
    background-repeat: no-repeat;
    block-size: 100% auto;
    background-position: top 28rem center;
}

.meshiagari h2 {
    width: 26.2rem;
    margin: 0 auto 1rem;
}

.meshiagari>p {
    font-size: 1.4rem;
    line-height: 1.85;
    font-weight: 500;
    width: 81.3%;
    margin: 1em auto;
}

.meshiagari .img-17 {
    width: 25.4rem;
    margin: 0 auto 4.4rem;
}

.meshiagari h3 {
    width: 26rem;
    margin: 0 auto 1.4rem;
}

.meshiagari ol {
    padding: 0 1.5rem 0 3.4rem;
}

.meshiagari ol li {
    border-left: 1px solid var(--color-red);
    padding-left: 2.4rem;
    padding-bottom: 2.4rem;
    position: relative;
}

.meshiagari ol li::before {
    content: '';
    display: block;
    width: 3rem;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -25%);
    background-repeat: no-repeat;
    background-size: contain;
}

.meshiagari ol li:nth-child(1):before {
    background-image: url(../img/icon-01.svg);
}

.meshiagari ol li:nth-child(2):before {
    background-image: url(../img/icon-02.svg);
}

.meshiagari ol li:nth-child(3):before {
    background-image: url(../img/icon-03.svg);
}

.meshiagari ol li:nth-child(4):before {
    background-image: url(../img/icon-04.svg);
}

.meshiagari ol li:last-child {
    border-left: none;
    padding-bottom: 0;
}

.meshiagari ol li h5 {
    font-size: 1.6rem;
    color: var(--color-red);
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

.meshiagari ol li .text_img {
    display: flex;
}

.meshiagari ol li .text_img p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 500;
    width: 16.8rem;
    flex-shrink: 0;
}

.meshiagari ol li .text_img .img {
    width: 13rem;
    margin-left: 0.5em;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
よくある質問
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.q_and_a {
    padding: 4rem 0 1.2rem;
}

.q_and_a h2 {
    width: 24.4rem;
    margin: 0 auto 1.2rem;
}

.q_and_a dl {
    width: 32.9rem;
    margin: auto;
    padding: 2.2rem 0 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 600;
    border-bottom: 1px solid #b6b6b6;
}

.q_and_a dl dt, .q_and_a dl dd {
    padding-left: 4.8rem;
    position: relative;
}

.q_and_a dl dt::before, .q_and_a dl dd::before {
    content: '';
    display: block;
    position: absolute;
    width: 3.6rem;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: -0.6rem;
}

.q_and_a dl dt::before {
    background-image: url(../img/icon-q.svg);
}

.q_and_a dl dd::before {
    background-image: url(../img/icon-a.svg);
}

.q_and_a dl dt {
    margin-bottom: 1.6rem;
}

.q_and_a .img-22 {
    position: relative;
}

.q_and_a .img-22 h3 {
    position: absolute;
    width: 7.8rem;
    top: 2.6rem;
    right: 2.6rem;
}

.q_and_a .img-22+p {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    margin: 1em 0;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
メイン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.main_warap {
    padding-top: 3.2rem;
    background-image: url(../img/main_bg_h1.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
    position: relative;
}

.main_warap .main_img {
    position: relative;
    z-index: 10;
}

.main_warap .yaizu {
    background-image: url(../img/main_bg.webp);
    background-color: #000;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: relative;
    z-index: 5;
    margin-top: -8rem;
    padding-top: 10rem;
    box-sizing: border-box;
}

.main_warap .yaizu h2 {
    width: 10.2rem;
    margin: 0 auto 5.8rem;
}

.main_warap .yaizu .map_wrap {
    padding-left: 1.8rem;
    display: flex;
    align-items: flex-end;
    margin-bottom: 3.6rem;
}

.main_warap .yaizu .map_wrap .map {
    width: 14.8rem;
    flex-shrink: 0;
}

.main_warap .yaizu .map_wrap .text {
    color: #fff;
    padding-left: 1.6rem;
    padding-bottom: 0.6rem;
}

.main_warap .yaizu .map_wrap .text p {
    font-size: 1.4rem;
    line-height: 1.64;
    margin-bottom: 0.75em;
}

.main_warap .yaizu .map_wrap .text .ship {
    display: inline-block;
    border: 1px solid #fff;
    font-size: 1.3rem;
    padding: 0.375em;
}

.main_warap .yaizu h3 {
    width: 32.7rem;
    margin: auto;
}