@charset "UTF-8";
/* ============================================== */
/*                    共通設定                    */
/* ============================================== */
:root{
    /* 色 */
    --textColor: #000000;
    --mainBlue01: #0071bc;
    --bgBlue01: #eff6fb;
    --bgGray01: #f8f8f8; /* テーブル背景 */
    --accentRed: #c1272d;
    --accentGreen: #39b54a;
    --accentOrange: #f7931e;
    /* 精米コースごと */
    --umaGenColor: #7a5b3b;
    --umaGenBg: #e5d7ba;
    --bdkColor: #7a5b3b;
    --bdkBg: #efe8da;
    --umaSeiColor: #90765b;
    --umaSeiBg: #f4f1ea;
    --stdColor: #4d4d4d;
    --stdBg: #f2f2f2;
    --jhkColor: #898937;
    --jhkBg: #fafaf2;
    --msmColor: #459fe0;
    --msmBg: #eef7ff;
    --refreshColor: #4d4d4d;
    --refreshBg: #eceef0;
    /* フォント */
    --ff_notoSans: "Noto Sans JP", serif;
    --ff_zenOldMincho: "Zen Old Mincho", serif;
    --ff_zenKakuGoAntique: "Zen Kaku Gothic Antique", sans-serif;
    --ff_oswald: "Oswald", sans-serif;
    /* 幅・高さ */
    --headerHeight: 110px;
    /* アピアランス */
    --shadow: drop-shadow(0 0 3px #fff);
}
html{overflow-x: clip;}
body{
    position: relative;
    z-index: 0;
    overflow-x: clip;
    font-family: var(--ff_notoSans);
    font-size: 18px;
    color: var(--textColor);
    line-height: 1.75;
    word-break: break-all;
}
html:has(.ham.open),
body:has(.ham.open){overflow: clip !important;}
figure,
img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
a{transition: .3s;}
a:hover{opacity: 0.8;}
a[href*=tel]{pointer-events: none;}
textarea{resize: none;}
.inner{
    width: 100%;
    max-width: 1100px;
    padding: 0 50px;
    margin: 0 auto;
}
.flex{display: flex;}
.pc_cont{display: block !important;}
.sp_cont{display: none !important;}

/* ============================================== */
/*            スクロールアニメーション            */
/* ============================================== */
.scrollin {
    visibility: hidden;
    opacity: 0;
    transition: 1.2s;
}
.scrollin.bottom {transform: translateY(30px);}
.scrollin.left {transform: translateX(-30px);}
.scrollin.right {transform: translateX(30px);}
.scrollin.active,
.scrollin.bottom.active,
.scrollin.left.active,
.scrollin.right.active {
    visibility: visible;
    opacity: 1;
    transform: translate(0,0);
}

/* -----------------------------------------------------------
template
----------------------------------------------------------- */
main{margin: 0 auto;}
/* ============================================== */
/*                    ヘッダー                    */
/* ============================================== */
header{
    position: relative;
    z-index: 50;
    inset: 0 0 auto;
    padding: 0 2%;
    height: var(--headerHeight);
}
header:has(.ham.open){
    position: fixed;
    z-index: 100;
    top: 0;
}
header:has(.ham.open) + main {margin-top: var(--headerHeight);}
header .flex{
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
header .flex > div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
header > .flex .h_left{column-gap: 35px;position: relative;z-index: 100;}
header > .flex .h_right{
    position: fixed;
    z-index: 40;
    inset: 0 2% auto auto;
    column-gap: 16px;
    justify-content: flex-end;
    height: var(--headerHeight);
}
header .logo{width: 195px;}
header .logo + p{width: 160px;}
header .btn a{
    font-size: 18px;
    min-width: 365px;
    min-height: 56px;
    background: var(--bgBlue01);
    border-radius: 30px;
    filter: drop-shadow(3px 3px var(--mainBlue01));
}
header .btn a::before{
    content: '';
    margin-right: 3px;
    width: 28px;
    height: 28px;
    background: var(--mainBlue01);
    -webkit-mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
            mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
    transition: .3s;
}
header .btn a:hover{
    background: var(--bgBlue01);
    color: var(--textColor);
    transform: translateY(3px);
    filter: drop-shadow(1px 1px var(--mainBlue01));

}
header .btn a:hover::after{background: var(--mainBlue01);}
header .btn a::after{
    margin-left: 8px;
    width: 18px;
    height: 19px;
}
/* ============================================== */
/*              ハンバーガーメニュー              */
/* ============================================== */
.ham {
    position: relative;
    z-index: 10;
    width: 60px;
    height: 60px;
    background: var(--mainBlue01);
    border-radius: 50%;
    filter: var(--shadow);
    transition: .3s;
    cursor: pointer;
}
.ham span,
.ham::before,
.ham::after {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0;
    display: block;
    width: 23px;
    height: 2px;
    background: #fff;
    transition: .5s;
}

.ham::before,
.ham::after{content: '';}
.ham::before{top: calc(50% - 6px);}
.ham::after{top: calc(50% + 6px);}

.ham.open span{opacity: 0;}
.ham.open::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham.open::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* ============================================== */
/*                 ナビゲーション                  */
/* ============================================== */
nav{
    position: fixed;
    z-index: 30;
    inset: 0 -100% auto;
    margin: auto;
    background: #fff;
    width: 100%;
    height: auto;
    padding: calc(var(--headerHeight) + 25px) 3% 80px;
    clip-path: inset(0 0 100%);
    transition: 0.4s;
}
nav ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 980px;
    max-width: 1090px;
    margin: 0 auto;
    column-gap: 55px;
}
nav ul li{
    position: relative;
    z-index: 0;
    width: calc(50% - (55px / 2));
}
/* リストの下線 */
nav ul li::before{
    position: absolute;
    z-index: 1;
    inset: auto auto 0 0;
    content: '';
    width: 100%;
    height: 3px;
    background: var(--mainBlue01);
    -webkit-mask: url("../img/common/detail/dot.svg") repeat-x left bottom / contain;
            mask: url("../img/common/detail/dot.svg") repeat-x left bottom / contain;
    pointer-events: none;
    transition: 0.3s;
}
/* ページアイコン */
nav ul li::after{
    position: absolute;
    z-index: 0;
    inset: 0 auto 0 0;
    margin: auto;
    content: '';
    width: 42px;
    height: 42px;
    background: var(--mainBlue01);
    transition: 0.3s;
    pointer-events: none;
}
nav ul li:nth-of-type(1)::after{
    -webkit-mask: url("../img/common/ico/eat.svg") no-repeat center / contain;
            mask: url("../img/common/ico/eat.svg") no-repeat center / contain;
}
nav ul li:nth-of-type(2)::after{
    -webkit-mask: url("../img/common/ico/what.svg") no-repeat center / contain;
            mask: url("../img/common/ico/what.svg") no-repeat center / contain;
}
nav ul li:nth-of-type(3)::after{
    -webkit-mask: url("../img/common/ico/use.svg") no-repeat center / contain;
            mask: url("../img/common/ico/use.svg") no-repeat center / contain;
}
nav ul li:nth-of-type(4)::after{
    -webkit-mask: url("../img/common/ico/model.svg") no-repeat center / contain;
            mask: url("../img/common/ico/model.svg") no-repeat center / contain;
}
nav ul li:nth-of-type(5)::after{
    -webkit-mask: url("../img/common/ico/qa.svg") no-repeat center / contain;
            mask: url("../img/common/ico/qa.svg") no-repeat center / contain;
}
nav ul li:nth-of-type(6)::after{
    -webkit-mask: url("../img/common/ico/introduce.svg") no-repeat center / contain;
            mask: url("../img/common/ico/introduce.svg") no-repeat center / contain;
}
nav ul li a{
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 25px;
    font-weight: 700;
    padding: 25px 95px 25px 55px;
    height: 100%;
    min-height: 94px;
}
/* お米アイコン */
nav ul li a::before,
nav ul li a::after{
    position: absolute;
    z-index: 0;
    inset: 0 20px 0 auto;
    margin: auto;
    content: '';
    width: 2.76em;
    height: 1.8em;
    transition: 0.3s;
}
nav ul li a::before{
    background: url(../img/common/ico/arrow_rice.svg) no-repeat center / contain;
    opacity: 1;
}
nav ul li a::after{
    background: url(../img/common/ico/arrow_rice_blue.svg) no-repeat center / contain;
    opacity: 0;
}
nav + .nav_bg{
    position: fixed;
    z-index: 20;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
/* open */
.h_right:has(.ham.open) + nav{clip-path: inset(0);}
.h_right:has(.ham.open) + nav + .nav_bg{
    background: rgba(0, 0, 0, .66);
    opacity: 1;
    visibility: visible;
}
/* hover */
nav ul li a:hover{opacity: 1;}
nav ul li a:hover::before{opacity: 0;}
nav ul li a:hover::after{opacity: 1;}
/* ============================================== */
/*                    ページ回遊                    */
/* ============================================== */
.sec_crosslink{
    position: relative;
    z-index: 0;
    text-align: center;
    color: #fff;
    padding: 80px 0 75px;
    background:var(--mainBlue01);
}
.sec_crosslink::before{
    position: absolute;
    z-index: -1;
    inset: -100%;
    margin: auto;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/common/cross_bg.jpg) no-repeat center / cover;
    opacity: 0.24;
}
.sec_crosslink h2{
    position: relative;
    z-index: 0;
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 32px;
    font-weight: 500;
    padding: 0 0 0.45em;
    margin: 0 auto 1.6875em;
}
.sec_crosslink h2::after{
        position: absolute;
        z-index: 0;
        inset: auto -100% 0;
        margin: auto;
        content: '';
        width: 2.81em;
        height: 3px;
        background: #fff;
        -webkit-mask: url("../img/common/detail/dot.svg") repeat-x left center / contain;
                mask: url("../img/common/detail/dot.svg") repeat-x left center / contain;
}
/* flex共通 */
.sec_crosslink .flex {
    justify-content: center;
    column-gap: min(58px, 6%);
}
.sec_crosslink .flex:has(> :nth-child(4)){
    justify-content: space-between;
    column-gap: 3%;
}
.sec_crosslink .flex li{max-width: 220px;}
.sec_crosslink .flex li a {
    position: relative;
    z-index: 0;
    display: block;
    padding: 0 0 70px;
}
.sec_crosslink .flex li a::before,
.sec_crosslink .flex li a::after{
    position: absolute;
    z-index: 0;
    inset: auto -100% 0;
    margin: auto;
    content: '';
    width: 73px;
    height: 48px;
    transition: .3s;
}
.sec_crosslink .flex li a::before{
    background: url(../img/common/ico/arrow_rice.svg) no-repeat center / contain;
    opacity: 1;
}
.sec_crosslink .flex li a::after{
    background: url(../img/common/ico/arrow_rice_blue.svg) no-repeat center / contain;
    opacity: 0;
}
.sec_crosslink .flex li a picture{
    display: block;
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 15px;
}
.sec_crosslink .flex li a picture img{transition: .3s;}
.sub_intro + .sec_crosslink .inner{max-width: 1350px;}
/* ホバー */
.sec_crosslink .flex li a:hover{opacity: 1;}
.sec_crosslink .flex li a:hover:before{opacity: 0;}
.sec_crosslink .flex li a:hover:after{
    opacity: 1;
    filter: var(--shadow);
}
.sec_crosslink .flex li a:hover picture img{transform: scale(1.1);}

/* ============================================== */
/*                    フッター                    */
/* ============================================== */
footer{padding: 60px 0 50px;}
footer .logo{
    max-width: 195px;
    margin: 0 auto 38px;
    transform: translateX(-9px);
}
footer p{
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 13px;
    color: #808080;
    text-align: center;
}
/* ============================================== */
/*                    バナー                    */
/* ============================================== */
body > .bnr{
    position: sticky;
    z-index: 29;
    inset: auto 0 40px auto;
    width: fit-content;
    margin-inline: auto 0;
    padding: 1px 0;
    transform: translateX(100%);
    transition: .6s .5s;
}
.loaded > .bnr{transform: translateX(0);}
body > .bnr a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.46;
    min-height: 62px;
    padding: 10px 14px;
    background: var(--bgBlue01);
    border: 1px solid var(--mainBlue01);
    border-right: none;
    border-radius: 32px 0 0 32px;
    filter: drop-shadow(0 5px var(--mainBlue01));
    min-width: 190px;
    transition: .5s;
}
body > .bnr a:hover{
    opacity: 1;
    transform: translateY(3px);
    filter: drop-shadow(0 2px var(--mainBlue01))

}
body > .bnr a::before{
    content: '';
    width: 28px;
    height: 28px;
    margin-right: 6px;
    background: var(--mainBlue01);
    -webkit-mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
            mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
}
body > .bnr a::after{
    content: '';
    width: 15px;
    height: 16px;
    margin-left: 6px;
    background: var(--mainBlue01);
    -webkit-mask: url(../img/common/ico/btn_arw.svg) no-repeat center / contain;
            mask: url(../img/common/ico/btn_arw.svg) no-repeat center / contain;
}
/* -----------------------------------------------------------
common_parts
----------------------------------------------------------- */
/* KV ============================================*/
.sub .kv{height: 360px;}
.sub .kv .inner{
    max-width: 100%;
    padding: 0 2%;
    height: 100%;
}
.sub .kv .bg{
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: var(--mainBlue01) no-repeat center / cover;
    border-radius: 20px;
    overflow: hidden;
}
.sub .kv .bg:not(.noimg)::before{
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(35, 24, 21, 0.61);
}
.sub.sub_eat .kv .bg{background-image: url(../img/eat/kv.png);}
.sub.sub_what .kv .bg{background-image: url(../img/what/kv.png);}
.sub.sub_use .kv .bg{background-image: url(../img/use/kv.png);}
.sub.sub_model .kv .bg{background-image: url(../img/products/kv.png);}

.sub .kv h1{
    font-family: var(--ff_zenOldMincho);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}
.sub .kv h1::before{
    content: '';
    display: block;
    width: 1.675em;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    background: transparent no-repeat center / contain;
}
.sub.sub_eat .kv h1::before{background-image: url(../img/common/ico/eat.svg);}
.sub.sub_what .kv h1::before{background-image: url(../img/common/ico/what.svg);}
.sub.sub_use .kv h1::before{background-image: url(../img/common/ico/use.svg);}
.sub.sub_model .kv h1::before{background-image: url(../img/common/ico/model.svg);}
.sub.sub_qa .kv h1::before{background-image: url(../img/common/ico/qa.svg);}
.sub.sub_intro .kv h1::before{background-image: url(../img/common/ico/introduce.svg);}

/* ボタン ============================================*/
.btn{
    font-size: 16px;
    font-weight: 500;
    width: fit-content;
}
.btn.center{margin-inline: auto;}
.btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--mainBlue01);
    border-radius: 24px;
    padding: .3em 1.5em;
    line-height: 1.4;
    text-decoration: none !important;
    column-gap: 3px;
}
.btn a::after{
    content: '';
    display: block;
    width: 1.3em;
    height: auto;
    aspect-ratio: 1;
    background: var(--mainBlue01);
    -webkit-mask: url("../img/common/ico/btn_arw.svg") no-repeat center / contain;
            mask: url("../img/common/ico/btn_arw.svg") no-repeat center / contain;
    transition: 0.3s;
}
.btn a:hover{
    opacity: 1;
    background: var(--mainBlue01);
    color: #fff;
}
.btn a:hover::after{background: #fff;}
/* 設置場所ボタン =========*/
.btn_intro{margin: 0 auto !important;}
.btn_intro a{
    position: relative;
    z-index: 0;
    color: var(--textColor) !important;
    padding-inline: 40px;
    min-width: 460px;
    min-height: 82px;
    border-width: 2px;
    border-radius: 12px;
}
.btn_intro a::before{
    content: '';
    display: inline-block;
    margin: 0 .1em 0 0;
    width: 35px;
    height: 26px;
    background: var(--mainBlue01);
    -webkit-mask: url("../img/common/ico/btn_map.svg") no-repeat center / contain;
            mask: url("../img/common/ico/btn_map.svg") no-repeat center / contain;
    transition: 0.3s;
}
.btn_intro a::after{
    position: absolute;
    z-index: 0;
    inset: -95% 1em -100% auto;
    margin: auto;
}
.btn_intro a:hover{color: #fff !important;}
.btn_intro a:hover::before{background: #fff;}
.btn a[target="_blank"]{
    padding: 0.3em 1.2em;
    column-gap: 10px;
}
.sub.sub_intro .bg_round .flex a[target="_blank"]{
    font-feature-settings: "halt";
}
.btn a[target="_blank"]::after,
.sub.sub_intro .bg_round .flex a[target="_blank"]::after,
p a[target="_blank"]::after{
/* .btn_intro a::after{ */
    width: 14px;
    height: 14px;
    -webkit-mask: url("../img/common/ico/blank.svg") no-repeat center / contain;
            mask: url("../img/common/ico/blank.svg") no-repeat center / contain;
}
.sub.sub_intro .bg_round .flex a[target="_blank"]::after,
p a[target="_blank"]::after{
    content: '';
    display: inline-block;
    background: currentColor;
    margin-left: 0.2em;
}
/* 背景付き ============================================*/
.bg_round,
.bg_round_wrapper > *{
    position: relative;
    z-index: 0;
    background: var(--bgBlue01);
    border-radius: 10px;
}
.bg_round > div,
.bg_round_wrapper > * > div{padding: 0 32px 32px 70px;}
.bg_round > div:has(.prod_cont){
    padding-block: 40px 50px;
    column-gap: initial;
    justify-content: center;
}
.bg_round .flex,
.bg_round_wrapper .flex{
    justify-content: space-between;
    align-items: center;
}
.bg_round h2,
.bg_round h3,
.bg_round_wrapper h2,
.bg_round_wrapper h3{
    position: relative;
    z-index: 0;
    font-size: 24px;
    color: var(--mainBlue01);
    font-weight: 500;
    width: fit-content;
    background: #fff;
    border-radius: 0 0 10px 0;
    padding: .3em 1em .4em .75em;
}
.bg_round h2::before,
.bg_round h2::after,
.bg_round h3::before,
.bg_round h3::after,
.bg_round_wrapper h2::before,
.bg_round_wrapper h2::after,
.bg_round_wrapper h3::before,
.bg_round_wrapper h3::after{
    --roundW: 10px;
    position: absolute;
    z-index: 0;
    content: '';
    width: var(--roundW);
    height: auto;
    aspect-ratio: 1 / 1;
    background: #fff;
    -webkit-mask: url("../img/common/detail/bg_round.svg") no-repeat center / contain;
            mask: url("../img/common/detail/bg_round.svg") no-repeat center / contain;
}
.bg_round h2::before,
.bg_round h3::before,
.bg_round_wrapper h2::before,
.bg_round_wrapper h3::before{
    inset: 0 calc(var(--roundW) * -1) auto auto;
}
.bg_round h2::after,
.bg_round h3::after,
.bg_round_wrapper h2::after,
.bg_round_wrapper h3::after{
    inset: auto auto calc(var(--roundW) * -1) 0;
}
/* .bg_round_wrapper */
.bg_round_wrapper {counter-reset: list_count;}
.bg_round_wrapper > li{
    position: relative;
    z-index: 0;
    padding: 32px 32px 32px 70px;
}
.bg_round_wrapper > li:not(:last-of-type){margin: 0 0 30px;}
.bg_round_wrapper > li >span,
.bg_round_wrapper > li::before{
    position: absolute;
    inset: 0 auto auto 0;
    width: 60px;
    height: 60px;
}
.bg_round_wrapper > li >span{
    z-index: -1;
    background: #fff;
    border-radius: 0 0 10px 0;
}
.bg_round_wrapper > li >span::before,
.bg_round_wrapper > li >span::after{
    --roundW: 10px;
    position: absolute;
    z-index: 0;
    content: '';
    width: var(--roundW);
    height: auto;
    aspect-ratio: 1 / 1;
    background: #fff;
    -webkit-mask: url(../img/common/detail/bg_round.svg) no-repeat center / contain;
            mask: url(../img/common/detail/bg_round.svg) no-repeat center / contain;
}
.bg_round_wrapper > li >span::before{inset: 0 calc(var(--roundW) * -1) auto auto;}
.bg_round_wrapper > li >span::after{inset: auto auto calc(var(--roundW) * -1) 0;}

.bg_round_wrapper > li::before{
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 34px;
    font-weight: 700;
    color: var(--mainBlue01);
    counter-increment: list_count;
    content: counter(list_count);
}
.bg_round_wrapper > li > div{padding: 0;}
.bg_round_wrapper > li figure,
.bg_round_wrapper > li picture{
    width: 227px;
    height: 167px;
    aspect-ratio: 227 / 167;
}
.bg_round_wrapper > li img{
    border-radius: 10px;
    overflow: hidden;
}
.bg_round_wrapper > li > .flex{column-gap: min(40px,5%);}
.bg_round_wrapper > li > .flex > .flex{column-gap: min(15px,4%);}
.bg_round_wrapper > li p{margin-bottom: 0;}
.bg_round_wrapper > li .caption{margin-top: 1.5em;}
/* 2列ver */
.bg_round_wrapper.flex.col2{
    flex-wrap: wrap;
    justify-content: space-between !important;
    gap: 20px !important;
    max-width: 100% !important;
}
.bg_round_wrapper.flex.col2 li{
    width: 50%;
    margin: 0;
    max-width: calc(50% - 10px) !important;
    padding: 75px 6% 40px;
}
.bg_round_wrapper.flex.col2 li p:not(:has(+ .btn)){min-height: 3.4lh;}
.bg_round_wrapper.flex.col2 li p:has(+ .btn){margin-bottom: 1em;}
/* 背景内画像 */
.bg_round > .flex{column-gap: min(75px, 9%);}
/* 製品紹介 ============================================*/
.bg_round:has(.prod_cont){margin: 45px auto 90px;}
.prod_cont{
    display: flex;
    align-items: center;
    column-gap: 25px;
    width: 50%;
}
.prod_cont:nth-of-type(1){
    justify-content: flex-end;
    padding-right: 40px;
}
.prod_cont:nth-of-type(2){
    justify-content: flex-start;
    padding-left: 40px;
}
.prod_cont:not(:last-of-type){border-right: 1px solid #a6cde8;}
.prod_cont h4{
    color: var(--mainBlue01);
    margin: 0 0 .7em;
}
.prod_cont h4 span:nth-of-type(1){
    line-height: 1.5;
    display: block;
    font-size: 16px;
}
.prod_cont h4 span:nth-of-type(2){
    display: block;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.4;
}
.prod_cont p{font-size: 16px;}
.prod_cont .btn{margin: 0;}
.prod_cont:nth-of-type(1) picture{max-width: 183px;}
.prod_cont:nth-of-type(2) picture{max-width: 119px;}
.mbm_mul{mix-blend-mode: multiply;}
/* FAQアコーディオンパネル ============================================*/
.ac_wrapper dl{
    border: 2px solid var(--bgBlue01);
    border-radius: 10px;
}
.ac_wrapper dl:not(:last-of-type){margin: 0 auto 18px;}
.ac_wrapper dl dt,
.ac_wrapper dl dd{
    position: relative;
    z-index: 0;
    padding-left: 58px;
}
.ac_wrapper dl dt{
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    background: var(--bgBlue01);
    border-radius: 0 0 10px 10px;
    padding-right: 65px;
    padding-block: .7em;
    cursor: pointer;
}
.ac_wrapper dl dt::before,
.ac_wrapper dl dt::after{
    position: absolute;
    z-index: 0;
    inset: 27px 26px auto auto;
    margin: auto;
    content: '';
    width: 20px;
    height: 2px;
    background: var(--mainBlue01);
    transition: 0.3s;
}
.ac_wrapper dl dt::before{transform: rotate(90deg);}
.ac_wrapper dl.open dt::before{transform: rotate(180deg);}
.ac_wrapper dl dt::after{transform: rotate(180deg);}
.ac_wrapper dl dd{
    line-height: 1.5;
    background: #fff;
    padding-right: 25px;
    padding-block: 1.5em;
    display: none;
}
.ac_wrapper dl dt span,
.ac_wrapper dl dd span{
    position: absolute;
    z-index: 1;
    left: .77em;
    margin: auto;
    font-family: var(--ff_zenKakuGoAntique);
    font-weight: 700;
    font-size: 27px;
}
.ac_wrapper dl dt span{
    top: .3em;
    color: var(--mainBlue01);
}
.ac_wrapper dl dd span{
    top: .75em;
    color: var(--accentRed);
}
.ac_wrapper dl dd figure{
    width: 60%;
    max-width: 600px;
    margin: 1em auto 0 0;
}
.ac_wrapper dl dd figure figcaption{
    margin: 0.5em 0 0;
    text-align: center;
    font-weight: 500;
}
.ac_wrapper dl dd .caption{margin: 1em 0 0;}
/* Youtube埋め込み ============================================*/
.youtube_cont{
    position: relative;
    width: 100%;
    max-width: 765px;
    height: auto;
    margin: 0 auto 20px;
    aspect-ratio: 16 / 9;
}
.youtube_cont iframe{
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
}
.youtube_cont + p{
    line-height: 1.4;
    text-align: center;
}
/* 栄養表示 ============================================*/
.bg_round .nutrition,
.bg_round_wrapper .nutrition{
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 0 1.5em;
}
.bg_round .nutrition dl,
.bg_round_wrapper .nutrition dl{
    font-weight: 700;
    text-align: center;
    background: #fff;
    border: 1px solid var(--accentOrange);
    border-radius: 10px;
    width: 106px;
    height: 106px;
    padding: 10px 6px;
}
.bg_round .nutrition dl dt,
.bg_round_wrapper .nutrition dl dt{
    font-size: 17px;
    color: var(--accentOrange);
    margin: 0 auto 0.2em;
}
.bg_round .nutrition dl dd,
.bg_round_wrapper .nutrition dl dd{
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 15px;
    line-height: 1.2;
}
.bg_round .nutrition dl dd > span,
.bg_round_wrapper .nutrition dl dd > span{font-size: 16px;}
.bg_round .nutrition dl dd > span span,
.bg_round_wrapper .nutrition dl dd > span span{
    display: inline-block;
    font-size: 25px;
    color: var(--accentOrange);
    margin-inline: .15em;
}
/* 罫線 ============================================*/
.editor_contents hr{
    border-top: 2px solid #e6e6e6;
    margin: 50px auto;
}
/* 余白 ============================================*/
.mb0{margin-bottom: 0 !important;}
.mb40{margin-bottom: 40px !important;}
/* テキスト ============================================*/
.caption{
    font-size: 90%;
    color: var(--mainBlue01);
    margin-bottom: 0;
}
.zabuton{
    position: relative;
    z-index: 0;
    display: inline-block;
    margin-inline: .3em .2em;
    font-family: var(--ff_zenKakuGoAntique);
    font-weight: 500;
    color: #fff;
}
.zabuton::before{
    position: absolute;
    z-index: -1;
    inset: -95% -100% -100% -90%;
    margin: auto;
    content: '';
    width: 1.1em;
    height: 1.15em;
    border-radius: 3px;
    background: var(--mainBlue01);
}
.center{text-align: center;margin-inline: auto;}
.fz120{font-size: 120%;}
.fz90{font-size: 90%;}
.fc_blue{color: var(--mainBlue01);}
.fc_red{color: var(--accentRed);}
.fc_org{color: var(--accentOrange);}
.fc_grn{color: var(--accentGreen);}
/* -----------------------------------------------------------
subpage
----------------------------------------------------------- */
.editor_contents{
    padding: 100px 0 120px;
    counter-reset: h2_count;
}
.editor_contents .inner > *:first-child{margin-top: 0;}
.editor_contents .inner > *:last-child{margin-bottom: 0;}
/* 見出し */
.editor_contents h2,
.editor_contents h3{
    line-height: 1.4;
    word-break: auto-phrase;
}
.editor_contents h2{
    position: relative;
    z-index: 0;
    font-family: var(--ff_zenKakuGoAntique);
    font-weight: 500;
    font-size: 32px;
    color: var(--mainBlue01);
    text-align: center;
    letter-spacing: 0.05em;
    margin: 2.8em auto 1.25em;
    padding: 2.35em 0 .625em;
}
.editor_contents h2::before{
    position: absolute;
    z-index: 0;
    inset: 0 -100% auto;
    margin: auto;
    padding: 8px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    counter-increment: h2_count;
    content: counter(h2_count);
    font-family: var(--ff_oswald);
    font-weight: 500;
    color: #fff;
    --fz: 27px;
    font-size: var(--fz);
    width: 1.49em;
    height: 2.18em;
    background: var(--mainBlue01);
    -webkit-mask: url("../img/common/ico/base_rice.svg") no-repeat center / contain;
            mask: url("../img/common/ico/base_rice.svg") no-repeat center / contain;
}
.editor_contents h2::after{
    position: absolute;
    z-index: 0;
    inset: auto -100% 0;
    margin: auto;
    content: '';
    width: 2.81em;
    height: 3px;
    background: url(../img/common/detail/dot.svg) repeat-x left center / contain;
}
.editor_contents .inner > h3{
    position: relative;
    z-index: 0;
    font-size: 26px;
    font-weight: 500;
    margin: 1.9em 0 1.25em;
    padding: 0 0 0 25px;
}
.editor_contents .inner > h3::before{
    position: absolute;
    z-index: 0;
    inset: .35em auto auto 0;
    content: '';
    width: .6em;
    height: .9em;
    background: var(--mainBlue01);
    -webkit-mask: url("../img/common/ico/base_rice.svg") no-repeat center / contain;
            mask: url("../img/common/ico/base_rice.svg") no-repeat center / contain;
    transform: rotate(-21deg);
}
.editor_contents h3 span{font-size: 18px;}
/* テキスト */
.editor_contents p{
    margin: 0 0 1em;
    letter-spacing: -0.06em;
}
.editor_contents > .inner > p{line-height: 2.1;}
.editor_contents p:not(.btn) a,
.ac_wrapper dl dd a{
    display: inline-block;
    margin-inline: 0.3em;
    font-weight: 500;
    color: var(--mainBlue01);
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* ブロック */
.editor_contents > .inner > .flex{
    justify-content: center;
    max-width: 800px;
    margin: 60px auto 110px;
    column-gap: min(64px, 8%);
}
.bg_round .flex > figure,
.bg_round .flex > picture,
.editor_contents > .inner > .flex > figure,
.editor_contents > .inner > .flex > picture{
    width: 70%;
    max-width: 330px;
}
.editor_contents > .inner > .flex > *:not(figure):not(picture){
    width: 50%;
    max-width: 320px;
}
/* 画像 */
.editor_contents > .inner > .figure_cont{
    width: 100%;
    margin: 40px auto 70px;
}
/* bg_round */
.bg_round,
.bg_round_wrapper > section{margin: 0 auto 35px;}


/* ============================================== */
/*                 美味しく食べる                  */
/* ============================================== */
.sub.sub_eat .bg_round > div {padding-top: 2em;}
.sub.sub_eat .bg_round > div .btn a{
    text-align: left;
    column-gap: 0;
}
.sub.sub_eat .prod_cont:nth-of-type(1) > div{max-width: 160px;}
.sub.sub_eat .prod_cont:nth-of-type(2) > div{max-width: 170px;}

/* ============================================== */
/*                  いろいろな精米                 */
/* ============================================== */
.sub.sub_what .figure_cont{max-width: 650px;}
.sub.sub_what .bg_round_wrapper > section > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3%;
    padding-top: 30px;
}
.sub.sub_what .bg_round_wrapper > section div p{max-width: calc(100% - 140px - 3%);}
.sub.sub_what .bg_round_wrapper > section div picture{
    width: 140px;
    border-radius: 10px;
    overflow: hidden;
}
/* 各精米コース */
.sub.sub_what .uma_genmai{background: var(--umaGenBg);}
.sub.sub_what .buduki{background: var(--bdkBg);}
.sub.sub_what .uma_seimai{background: var(--umaSeiBg);}
.sub.sub_what .std{background: var(--stdBg);}
.sub.sub_what .johaku{background: var(--jhkBg);}
.sub.sub_what .musen{background: var(--msmBg);}
.sub.sub_what .refresh{background: var(--refreshBg);}
.sub.sub_what .uma_genmai h3{color: var(--umaGenColor);}
.sub.sub_what .buduki h3{color: var(--bdkColor);}
.sub.sub_what .uma_seimai h3{color: var(--umaSeiColor);}
.sub.sub_what .std h3{color: var(--stdColor);}
.sub.sub_what .johaku h3{color: var(--jhkColor);}
.sub.sub_what .musen h3{color: var(--msmColor);}
.sub.sub_what .refresh h3{color: var(--refreshColor);}
/* ぶづき精米 */
.sub.sub_what .buduki > div{display: block !important;}
.sub.sub_what .buduki .bdk_desc{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.sub.sub_what .buduki .bdk_desc > .flex{
    align-items: flex-start;
    column-gap: 10px;
}
.sub.sub_what .buduki .bdk_desc > .flex:nth-of-type(1){
    padding-right: 4%;
    border-right: 1px solid var(--bdkColor);
}
.sub.sub_what .buduki .bdk_desc > .flex:nth-of-type(2){padding-left: 4%;}
.sub.sub_what .buduki .bdk_desc dl{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
    column-gap: 10px;
    margin: 0 0 0.5em;
}
.sub.sub_what .buduki .bdk_desc dl dt{
    position: relative;
    z-index: 0;
    display: inline-block;
    font-weight: 500;
    color: var(--bdkColor);
    min-width: 115px;
}
.sub.sub_what .buduki .bdk_desc dl dt span{
    display: inline-block;
    background: var(--bdkBg);
    padding-right: .5em;
}
.sub.sub_what .buduki .bdk_desc dl{width: calc(100% - 140px);}
/* other */
.sub.sub_what .umami_g > .flex > div{padding-top: 20px;}
.sub.sub_what .umami_g .caption{margin: 0;}
.sub.sub_what .refresh > div{padding-left: 45px;}
/* サイドバー */
.sub.sub_what .inner:has(.bg_round_wrapper){position: relative;z-index: 0;}
.sub.sub_what .bg_round_wrapper{
    position: relative;
    z-index: -1;
    padding-left: 85px;
}
.sub.sub_what .bg_round_wrapper > figure{
    position: sticky;
    z-index: 0;
    top: calc(50% - (585px / 2) + 50px);
    transform: translateX(-100px);
    width: 60px;
    height: 585px;
    background: none;
}
.sub.sub_what .bg_round_wrapper .uma_genmai{margin-top: -585px;}
/* about seimai */
.sub.sub_what .bg_round .about_seimai{margin: 25px auto 0;}
.sub.sub_what .bg_round .about_seimai figure{
    max-width: 630px;
    margin: 0 auto 60px;
}
.sub.sub_what .bg_round .about_seimai .btn{margin-inline: auto;}
.sub.sub_what .bg_round_wrapper.sticky + hr,
.sub.sub_what .bg_round_wrapper.sticky + hr + h3{
    max-width: calc(100% - 90px);
    margin-inline: auto 0;
}
/* リフレッシュ白米 */
.sub.sub_what .bg_wht{
    display: flex;
    align-items: center;
    column-gap: 12px;
    background: #fff;
    padding: 16px 18px 18px 22px;
    border-radius: 12px;
}
.sub.sub_what .bg_wht h4{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--mainBlue01);
    min-height: 30px;
    max-width: 95px;
    border-radius: 20px;
    margin: 0 auto .5em 0;
}
.sub.sub_what .bg_wht p{font-size: 16px;}
.sub.sub_what .bg_wht figure{max-width: 121px;}
.sub.sub_what .bg_round_wrapper > section .bg_wht p{max-width: 270px;}

/* ============================================== */
/*               コイン精米機の使い方              */
/* ============================================== */
.sub.sub_use .bg_round_wrapper.flex{margin: 90px auto 0;}
/* ============================================== */
/*                 設置機のご案内                  */
/* ============================================== */
.sub.sub_model h2::before{content: '';}
.sub.sub_model h3::before{display: none;}
.sub.sub_model h3{
    font-size: 22px;
    text-align: center;
    background: var(--bgBlue01);
    padding: 0.65em 1em;
    min-height: 60px;
    margin-bottom: 15px !important;
    border-radius: 6px;
}
.sub.sub_model h3 span{
    display: inline-block;
    font-size: inherit;
    margin: 0 0 0 1em;
}
/* テーブル */
.tb_base{
    position: relative;
    z-index: 0;
    --tb_bd: 5px solid #fff;
}
.table_inner:not(:last-of-type){margin: 0 auto 80px !important;}
.tb_base table *{text-align: center;}
.tb_base table{
    width: 100%;
    table-layout: fixed;
}
.tb_base table th,
.tb_base table td{
    border-right: var(--tb_bd);
    border-left: var(--tb_bd);
    vertical-align: middle;
}
.tb_base table thead th{border-bottom: var(--tb_bd);}
/* テーブル - 見出し */
.tb_base table thead th{
    background: #ececec;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    height: 58px;
}

.tb_base table thead th span{font-size: 14px;}
.tb_base table thead th:first-of-type{background: #d7e8f4;}
/* テーブル - 見出し幅 */
.tb_base table thead th:first-of-type,
.tb_base table tbody th:first-of-type{width: 145px;}
/* テーブル - body枠線 */
.tb_base table tbody tr > *{
    position: relative;
    z-index: 0;
}
.tb_base table tbody tr > *::after{
    position: absolute;
    z-index: 0;
    inset: auto 0 0;
    content: '';
    display: inline-block;
    width: calc(100% + 5px);
    height: 1px;
    background: #b3b3b3;
}
.tb_base table tbody th::after{left: 0;right: auto;}
.tb_base table tbody td:last-of-type::after{left: auto;right: 0;}
/* テーブル - body見出し */
.tb_base table tbody th{
    background: var(--bgBlue01);
    padding: 18px 0;
}
.tb_base table tbody th:not(:has(figure)){height: 160px;}
.tb_base table tbody th figure img{
    width: auto;
    max-height: 84px;
    margin: 0 auto;
}
.tb_base table tbody th figure figcaption,
.tb_base table tbody th p{
    font-size: 16px;
    font-weight: 400;
    margin: 0.5em auto 0;
}
/* テーブル - body td */
.tb_base table tbody td{
    background: var(--bgGray01);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    color: var(--mainBlue01);
}
.tb_base table tbody td:has( > span){padding-top: 2lh;}
.tb_base table tbody td.ng{
    font-size: 24px;
    font-weight: 800;
    color: var(--accentRed);
}
.tb_base table tbody td.triangle > span:nth-of-type(1){
    position: relative;
    z-index: 0;
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accentGreen);
}
.tb_base table tbody td.triangle > span:nth-of-type(1)::before{
    position: absolute;
    z-index: 0;
    inset: calc(-100% + 3px) -100% -100% -100%;
    margin: auto;
    content: '';
    width: 15px;
    height: auto;
    aspect-ratio: 8 / 7.2;
    background: var(--bgGray01);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.tb_base table tbody td span{
    font-size: 13px;
    font-weight: 400;
    color: var(--textColor);
    line-height: 1;
    text-align: center;
}
.tb_base table tbody td:last-of-type{font-size: 17px;}
/* ============================================== */
/*                設置場所のご案内                 */
/* ============================================== */
.sub.sub_intro .how_to_use{
    justify-content: space-between;
    max-width: 850px;
    gap: 40px;
}
.sub.sub_intro .how_to_use > div{
    max-width: 350px !important;
    word-break: auto-phrase;
}
.sub.sub_intro .how_to_use > figure{
    width: 100%;
    max-width: 470px;
}
.sub.sub_intro .bg_round .flex{column-gap: 35px;}
.sub.sub_intro .bg_round .flex > div{max-width: 473px;}
.sub.sub_intro .bg_round .flex > div p{padding-top: 1em;}
.sub.sub_intro .bg_round .flex > figure{
    max-width: 390px;
    border-radius: 15px;
    padding: 15px 28px;
    background: #fff;
    overflow: hidden;
}

/* -----------------------------------------------------------
home
----------------------------------------------------------- */
/* KV */
.home .kv{
    width: 100%;
    /* height: 575px; */
    height: auto;
    aspect-ratio: 1370 / 575;
    margin: 0 auto 140px;
}
.home .kv .inner{
    max-width: 100%;
    padding: 0 2%;
    height: 100%;
}
.home .kv .kv_cont{
    position: relative;
    z-index: 0;
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 1470 / 640;
    border-radius: 20px;
}
.home .kv .kv_cont > h1{font-size: 0;}
.home .kv .kv_cont > picture{
    display: block;
    width: 100%;
    height: 100%;
}
/* 下層リンク */
.home .sub_links .inner{max-width: 1470px;}
.home .sub_links ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 36px;
}
.home .sub_links ul:not(:last-of-type){margin-bottom: 50px;}
/* リンクリスト共通 */
.home .sub_links ul li{
    position: relative;
    z-index: 0;
    width: calc(50% - 20px);
    max-width: 665px;
    overflow: hidden;
    margin: 0;
}
/* バナーリンク */
.home .sub_links ul:nth-of-type(1) li{
    aspect-ratio: 665 / 375;
    border-radius: 0 20px 20px 20px;
}
/* ボタンリンク */
.home .sub_links ul:nth-of-type(2) li{border-radius: 20px;}
.home .sub_links ul:nth-of-type(2) li::before,
.home .sub_links ul:nth-of-type(2) li::after{top: -100%;bottom: -100%;margin: auto;}
.home .sub_links ul:nth-of-type(2) li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 120px;
    background: var(--bgBlue01);
    font-family: var(--ff_zenKakuGoAntique);
    font-weight: 700;
    font-size: 28px;
    padding: .5em 120px .5em 32px;
}
.home .sub_links ul:nth-of-type(1) li a{column-gap: 20px;}
.home .sub_links ul:nth-of-type(2) li a{column-gap: 12px;}
.home .sub_links ul:nth-of-type(2) li a::before{
    content: '';
    display: block;
    width: 54px;
    height: 54px;
    background: var(--mainBlue01);
}
.home .sub_links ul:nth-of-type(2) li:nth-of-type(1) a::before{
    -webkit-mask: url(../img/common/ico/qa.svg) no-repeat center / contain;
            mask: url(../img/common/ico/qa.svg) no-repeat center / contain;
}
.home .sub_links ul:nth-of-type(2) li:nth-of-type(2) a::before{
    -webkit-mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
            mask: url(../img/common/ico/introduce.svg) no-repeat center / contain;
}
.home .sub_links ul:nth-of-type(2) li:nth-of-type(2) a span span{display: inline-block;}

.home .sub_links ul:nth-of-type(2) li:nth-of-type(1) a{font-size: 36px;}
/* あしらい */
.home .sub_links ul li::before,
.home .sub_links ul li::after{
    position: absolute;
    z-index: 2;
    inset: auto 20px 20px auto;
    content: '';
    width: 90px;
    height: 60px;
    transition: 0.3s;
    pointer-events: none;
}
.home .sub_links ul li::before{
    background: url(../img/common/ico/arrow_rice.svg) no-repeat center / contain;
    opacity: 1;
}
.home .sub_links ul li::after{
    background: url(../img/common/ico/arrow_rice_blue.svg) no-repeat center / contain;
    opacity: 0;
}
.home .sub_links ul li a:hover,
.home .sub_links ul li:hover::after{opacity: 1;}
.home .sub_links ul li a{
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}
.home .sub_links ul li h2{
    position: absolute;
    z-index: 2;
    inset: 0 auto auto 0;
    font-family: var(--ff_zenKakuGoAntique);
    font-size: 28px;
    font-weight: 700;
    color: var(--textColor);
    padding: 0;
}
.home .sub_links ul li h2 span{
    display: block;
    width: 100%;
    height: 100%;
    padding: .3em 1em .4em .75em;
    padding-left: 65px;

}
.home .sub_links ul li h2 span::before{
    position: absolute;
    z-index: 0;
    inset: .35em auto auto 8px;
    content: '';
    width: 46px;
    height: 46px;
    background: var(--mainBlue01);
}
.home .sub_links ul li:nth-of-type(1) h2 span::before{
    -webkit-mask: url(../img/common/ico/eat.svg) no-repeat center / contain;
            mask: url(../img/common/ico/eat.svg) no-repeat center / contain;
}
.home .sub_links ul li:nth-of-type(2) h2 span::before{
    -webkit-mask: url(../img/common/ico/what.svg) no-repeat center / contain;
            mask: url(../img/common/ico/what.svg) no-repeat center / contain;
}
.home .sub_links ul li:nth-of-type(3) h2 span::before{
    -webkit-mask: url(../img/common/ico/use.svg) no-repeat center / contain;
            mask: url(../img/common/ico/use.svg) no-repeat center / contain;
}
.home .sub_links ul li:nth-of-type(4) h2 span::before{
    -webkit-mask: url(../img/common/ico/model.svg) no-repeat center / contain;
            mask: url(../img/common/ico/model.svg) no-repeat center / contain;
}
.home .sub_links ul li picture{
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.home .sub_links ul li a:hover picture{transform: scale(1.05);}