@charset "UTF-8";
/*--------------------------------
----------------------------------
トップページ以外に反映されるCSSです
----------------------------------
----------------------------------*/

/*--------------------------------
各ページ共通パーツ
----------------------------------*/
#pageheader {
    background: #000;
    padding: calc(var(--h_height) + 45px) var(--side) 45px;
    color: #fff;
}
#pageheader h1{
    font-size: var(--f36px);
    margin: 0;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
#pageheader h1::after{
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #fff;
}
#pageheader nav.links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
}
#pageheader .links__item a{
    text-decoration: none;
    position: relative;
}
#pageheader .links__item a .icon{
    margin-right: 0.5em;
}
#pageheader .links__item a:hover .icon{
    transform: translateY(2px);
}
#pageheader .links__item a::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: scaleX(0);
    transform-origin: left;
}
#pageheader .links__item a:hover:after{
    transform: scaleX(100%);
}

#pnkz {
    font-size: var(--f12px);
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 50px;
}
#pnkz a {
    text-decoration: none;
}
#pnkz a:hover {
    color: #D0D0D0;
}

#bottommenu {
    padding: 70px calc((100vw - min(1200px,calc(100vw - 40px))) / 2);
    background: #F8F8F8;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 3%;
}
#bottommenu .bottommenu__item{
    width: 30%;
    flex-grow: 1;
    overflow: hidden;
    background: #000;
}
#bottommenu .bottommenu__item a{
    text-decoration: none;
    position: relative;
    display: block;
}
#bottommenu .bottommenu__item a p {
    position: absolute;
    right: 0;
    bottom: -1px;
    background: rgb(255 255 255 / 90%);
    margin: 0;
    padding: 0.75em 1.5em;
    line-height: 1.2;
    z-index: 10;
}
#bottommenu .bottommenu__item a:hover img{
    transform: scale(1.1);
    opacity: 0.8;
}

@media (max-width:768px) { /* hamburger size */
    #bottommenu .bottommenu__item {
        width: 40%;
    }
}
@media (max-width:540px) {
    #bottommenu .bottommenu__item {
        width: 100%;
    }
    #bottommenu {
        gap: 20px;
        font-size: var(--f14px);
    }
}

/*--------------------------------
一茶そば粉について
----------------------------------*/
/* about */
body.business #about h2{
    font-size: var(--f32px);
    background: #fff;
    width: fit-content;
    max-width: 90%;
    margin-top: -1.5em;
    position: relative;
    padding: 0.5em 1em 0 0;
}
body.business #about .disc{
    font-size: var(--f18px);
    padding-left: 5%;
    line-height: 2.5;
}

body.business .flowarea{
    position: relative;
    padding: 50px var(--side);
}
body.business .flowarea::before{
    content: "";
    width: calc((100% - var(--side)) - 15%);
    height: 100%;
    background: url("../images/common/bg01.png");
    background-size: 700px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
body.business .flowarea h3{
    font-size: var(--f32px);
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}
body.business .flowarea h3::before{
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: currentColor;
}

body.business .flow__item {
    display: flex;
    align-items: center;
}
body.business .flow__item .img {
    width: 38.5%;
    flex-shrink: 0;
}
body.business .flow__item .txt {
    flex-grow: 1;
    padding-bottom: 1rem;
    padding-left: 8%;
}
body.business .flow__item .txt h4{
    font-size: var(--f20px);
    font-weight: bold;
    margin: 0;
}
body.business .flow__item:not(:first-of-type) {
    margin-top: -1rem;
}
body.business .flow__item:nth-of-type(even) .img {
    order: 1;
}
body.business .flow__item:nth-of-type(even) .txt {
    margin-right: 1em;
}



/* product */
body.business .ancnav {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
body.business .ancnav__item {
    flex-grow: 1;
}
body.business .ancnav__item a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    text-decoration: none;
    background: #F8F8F8;
    padding: 20px;
}
body.business .ancnav__item a span{
    flex-grow: 1;
    text-align: center;
}
body.business .ancnav__item a:hover{
    background: #d9d9d9;
}
body.business .ancnav__item a:hover .icon{
    transform: translateY(2px);
}

.productlist {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 4%;
}
.productlist__item{
    width: 48%;
}
.productlist__item:nth-of-type(even){
    margin-top: 110px;
}
.productlist__item .productlist__item__clm{
    display: flex;
    gap: 20px;
}
.productlist__item .images {
    display: grid;
    grid-template-columns: 5fr 1fr 2.3fr;
    grid-template-rows: auto 10px;
    width: 50%;
}
.productlist__item .images .fukuro{
    grid-column: 1/3;
    grid-row: 1/2;
}
.productlist__item .images .kona{
    grid-column: 2/4;
    grid-row: 1/3;
    align-self: end;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5em;
}
.productlist__item .images .kona img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productlist__item .txt {
    width: 50%;
}
.productlist__item .txt h4 {
    font-size: var(--f22px);
    margin: 0;
}
.productlist__item .txt p.desc {
    font-size: var(--f14px);
}
.productlist__item .chart{
    margin-bottom: 20px;
}
.productlist__item .chart dl{
    margin: 5px 0;
}
.productlist__item .chart dd {
    width: 100%;
    height: 24px;
    border: solid 1px;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    background: #fff;
}
.productlist__item .chart dd p.min,
.productlist__item .chart dd p.max {
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    font-size: var(--f14px);
}
.productlist__item .chart dd p.min{
    left: 2px
}
.productlist__item .chart dd p.max{
    right: 2px;
}
.productlist__item .chart dd span {
    width: 1px;
    height: 100%;
    background: currentColor;
    display: block;
}
.productlist__item .chart dd::before{
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.productlist__item .chart dd[data-num="1"]::before{
    width: calc((100% / 8) * 1);
}
.productlist__item .chart dd[data-num="2"]::before{
    width: calc((100% / 8) * 2);
}
.productlist__item .chart dd[data-num="3"]::before{
    width: calc((100% / 8) * 3);
}
.productlist__item .chart dd[data-num="4"]::before{
    width: calc((100% / 8) * 4);
}
.productlist__item .chart dd[data-num="5"]::before{
    width: calc((100% / 8) * 5);
}
.productlist__item .chart dd[data-num="6"]::before{
    width: calc((100% / 8) * 6);
}
.productlist__item .chart dd[data-num="7"]::before{
    width: calc((100% / 8) * 7);
}
.productlist__item .chart dd[data-num="8"]::before{
    width: calc((100% / 8) * 8);
}

.productlist__item .info {
    background: #F8F8F8;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.productlist__item .info dl{
    display: flex;
    gap: 10px;
    margin: 0;
    align-items: baseline;
}
.productlist__item .info dt{
    background: #000;
    color: #fff;
    font-size: var(--f12px);
    font-weight: bold;
    padding: 2px 1em;
    flex-shrink: 0;
}
.productlist__item .info dd{
    margin: 0;
}

/* contact */
body.business #contact{
    position: relative;
    padding: 0 var(--side) 70px;
}
body.business #contact::before{
    content: "";
    width: calc(100vw - 90px);
    height: 100%;
    background: url("../images/common/bg01.png");
    background-size: 700px;
    position: absolute;
    top: var(--f36px);
    left: 70px;
    z-index: -1;
}
body.business #contact h2{
    font-size: var(--f36px);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}
body.business #contact h2::before{
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: currentColor;
}
body.business #contact .align_wide .img {
    width: 75%;
}
body.business #contact p {
    line-height: 2.8;
    font-size: var(--f18px);
    width: min(810px,90%);
    margin: 0 auto;
}

@media (max-width:768px) { /* hamburger size */
     /* product */
    .productlist__item {
        width: 100%;
    }
    .productlist__item:nth-of-type(even) {
        margin-top: 0;
    }

    body.business .flow__item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 30px;
        align-items: stretch;
    }
    body.business .flow__item .img {
        width: min(600px,100%);
        aspect-ratio: 5/3;
        overflow: hidden;
    }
    body.business .flow__item .img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.business .flow__item .txt {
        padding: 1em 1.5em;
        margin-top: -50px;
        margin-left: 8%;
        background: rgb(255 255 255 / 90%);
    }
    body.business .flow__item:not(:first-of-type) {
        margin-top: 0;
    }
    body.business .flow__item:nth-of-type(even) .img {
        order: 0;
    }
    body.business .flow__item:nth-of-type(even) .txt {
        margin-right: 0;
    }

    body.business .ancnav {
        flex-wrap: wrap;
    }
    body.business .ancnav__item {
        width: 40%;
    }

    /* contact */
    body.business #contact .align_wide .img {
        aspect-ratio: 5/3;
        width: 90%;
    }
    body.business #contact .align_wide .img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.business #contact p {
        font-size: var(--f16px);
    }
}
@media (max-width:540px) {
    /* about */
    body.business #about .mainimg {
        aspect-ratio: 5/4;
    }
    body.business #about .mainimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.business #about .disc {
        padding-left: 0;
        line-height: 2;
    }

    body.business .flow__item .txt {
        padding: 0;
        margin-top: 0;
        margin-left: 0;
        background: no-repeat;
    }

    /* product */
    body.business .ancnav__item a {
        padding: 10px;
    }
    body.business .ancnav__item {
        width: 100%;
    }

    .productlist__item .productlist__item__clm {
        flex-direction: column;
    }
    .productlist__item .images {
        width: min(350px,100%);
    }
    .productlist__item .txt {
        width: 100%;
    }
    .productlist__item .txt p.desc {
        margin: 0 0 1em;
    }
    .productlist__item .info {
        padding: 15px;
    }

    /* contact */
    body.business #contact::before {
        width: 100vw;
        left: 0;
    }
    body.business #contact h2::before {
        content: none;
    }
    body.business #contact .align_wide .img {
        width: 100%;
    }
    body.business #contact p {
        width: 100%;
        line-height: 2;
    }
}

/*--------------------------------
お買い物
----------------------------------*/
body.house .ancnav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
body.house .ancnav__item {
    width: calc((100% - (10px * 2)) / 3);
}
body.house .ancnav__item a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #F8F8F8;
    height: 100%;
}
body.house .ancnav__item a .img{
    flex-shrink: 0;
    width: min(120px,38%);
}
body.house .ancnav__item a .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.house .ancnav__item a .txt{
    flex-grow: 1;
    font-size: var(--f14px);
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 20px;
}
body.house .ancnav__item a .txt span{
    flex-grow: 1;
}
body.house .ancnav__item a:hover{
    background: #d9d9d9;
}
body.house .ancnav__item a:hover .icon{
    transform: translateY(2px);
}

.itemlist {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 4%;
}
.itemlist__item{
    width: 48%;
}
.itemlist__item .img {
    margin-bottom: 20px;
}
.itemlist__item .txt h3 {
    font-size: var(--f22px);
    margin: 0;
}
.itemlist__item .txt p.desc {
    font-size: var(--f14px);
    margin: 0 0 20px;
}
.itemlist__item .info {
    background: #F8F8F8;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-bottom: 30px;
}
.itemlist__item .info dl{
    display: flex;
    gap: 10px;
    margin: 0;
    align-items: baseline;
}
.itemlist__item .info dt{
    background: #000;
    color: #fff;
    font-size: var(--f12px);
    font-weight: bold;
    padding: 2px 1em;
    flex-shrink: 0;
    width: 6em;
    text-align: center;
}
.itemlist__item .info dd{
    margin: 0;
}

/* eshopボタン */
.itemlist__item .btn form input[type='submit'] {
    background: #fff;
    color: #333;
    border-radius: 2px;
    display: flex;
    text-decoration: none;
    padding: 1rem;
    gap: 1em;
    align-items: center;
    border: solid 1px currentColor;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}
.itemlist__item .btn form input[type='submit']:hover {
    background: #dddddd;
}

@media (max-width:1024px) {
    body.house .ancnav__item {
        width: calc((100% - (10px * 1)) / 2);
    }
    body.house .ancnav__item a .img{
        aspect-ratio: 16/9;
        height: 100%;
    }
}
@media (max-width:768px) { /* hamburger size */
    .itemlist__item {
        width: 100%;
    }
}
@media (max-width:540px) {
    body.house .ancnav__item {
        width: 100%;
    }
    body.house .ancnav__item a .txt {
        padding: 10px;
    }
}

.house main {
	position: relative;
}

.cart_btn {
	position: fixed;
	top: 50%;
	right: -3px;
	color: #FFF;
	background: #000;
	padding: 10px 15px 15px 10px;
	border-radius: 7px;
	font-size: 1em;
	box-sizing: border-box;
	writing-mode: vertical-rl;
	text-decoration: none;
	box-shadow: 0px 0px 0px 2px #FFF;
	height: 150px;
	opacity: 0;
	z-index: -1;
	transition: 0.3s;
}

.cart_btn img {
	width:35px;
	margin: 0 0 5px;
	vertical-align: -1px;
}

@media (max-width:1120px) { 
	.cart_btn  {
		width: 100%;
		writing-mode: inherit;
		text-align: center;
		bottom: 0;
		top: inherit;
		height:auto;
		border-radius: 0;
		right: 0;
	}
	.cart_btn img {
		width: 30px;
		margin: 0 5px 0 0;
		vertical-align: bottom;
	}
}
.cart_btn:hover {
	background: #555;
}

.cart_btn.fixed {
	opacity: 1;
	z-index: 9;
}
/*--------------------------------
一茶そばが食べられるお店
----------------------------------*/
#searchbox {
    border: solid 1px;
    padding: 30px;
    display: flex;
    gap: 20px 50px;
    flex-wrap: wrap;
}
#searchbox h2{
    font-size: var(--f20px);
    margin: 0;
}
#searchbox .search {
    font-size: var(--f14px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
#searchbox .search h3 {
    margin: 0.25em 0 0.5em;
}
#searchbox .search .check{
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}
#searchbox .search .check::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    border: solid 1px #707070;
    flex-shrink: 0;
    border-radius: 2px;
}
#searchbox .search .check.on::before {
    background: #D9B891;
}

.miselist__item:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: solid 1px #EAEAEA;
    margin-bottom: 50px;
}
.miselist__item:not(.show) {
    display: none;
}
.miselist__item h2 {
    font-size: var(--f26px);
    font-weight: bold;
    margin: 0;
}
.miselist__item .labels {
    font-size: var(--f14px);
    color: #767676;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.miselist__item .labels .label {
    border: solid 1px;
    padding: 0 0.6em;
}
.miselist__item .wrap {
    display: flex;
    gap: 30px;
    position: relative;
    align-items: flex-start;
}
.miselist__item .wrap .mise_sliders {
    width: 50%;
    position: sticky;
    top: 0;
}
.miselist__item .wrap .mise_sliders__thumb .slick-track {
    margin: 0 -4px;
}
.miselist__item .wrap .mise_sliders__thumb__item {
    margin: 8px 4px;
    cursor: pointer;
    background: #000;
}
.miselist__item .wrap .mise_sliders__thumb__item.slick-current img {
    opacity: 0.5;
}
.miselist__item .mise_txt p {
    margin: 0 0 30px;
}
.miselist__item .info {
    background: #F8F8F8;
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-bottom: 30px;
}
.miselist__item .info dl{
    display: flex;
    gap: 10px;
    margin: 0;
    align-items: baseline;
}
.miselist__item .info dt{
    background: #000;
    color: #fff;
    font-size: var(--f12px);
    font-weight: bold;
    padding: 2px 1em;
    flex-shrink: 0;
    width: 6em;
    text-align: center;
}
.miselist__item .info dd{
    margin: 0;
}
.miselist__item .map iframe {
    width: 100%;
    aspect-ratio: 4/3;
}
@media (max-width:768px) { /* hamburger size */
    .miselist__item .wrap {
        flex-direction: column;
    }
    .miselist__item .wrap .mise_sliders {
        width: 100%;
        position: relative;
    }
    .miselist__item h2 {
        margin: 0 0 10px;
    }
}
@media (max-width:540px) {
    .miselist__item .info {
        padding: 1rem;
    }
}

/*--------------------------------
おそばの豆知識
----------------------------------*/
body.soba .sobalist{
    padding: 50px var(--side);
    background: url("../images/common/bg01.png");
    background-size: 700px;
}
body.soba .sobalist__item {
    background: #fff;
    padding: 6%;
    margin-bottom: 50px;
}
body.soba .sobalist__item .clm.clm2 {
    --clmgap: 30px;
    row-gap: 20px;
}
body.soba .sobalist__item .label {
    background: #845D30;
    color: #fff;
    font-weight: bold;
    font-size: var(--f14px);
    padding: 5px 1em;
    display: flex;
    align-items: center;
    gap: 3px;
    letter-spacing: 0.2em;
    width: fit-content;
}
body.soba .sobalist__item .label span.num {
    background: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #845D30;
    letter-spacing: 0;
    font-size: var(--f12px);
    line-height: 1;
}
body.soba .sobalist__item h2 {
    margin: 10px 0 30px;
    font-size: var(--f26px);
    font-weight: bold;
    color: #845D30;
}
body.soba .sobalist__item p {
    line-height: 2;
}
body.soba .sobalist__item dl {
    background: #F8F8F8;
    display: flex;
    gap: 1em;
    padding: 5px 1rem;
}
body.soba .sobalist__item dt {
    font-size: var(--f18px);
    font-weight: bold;
    width: 6.5em;
    flex-shrink: 0;
}
body.soba .sobalist__item dd {
    margin: 0;
}
body.soba .sobalist__item h3 {
    color: #845D30;
    border-bottom: solid 1px;
    font-size: var(--f18px);
    font-weight: bold;
    margin-top: 2.3em;
}
body.soba .sobalist__item .quote {
    background: #FFFBEF;
    padding: 50px;
    color: #5D360A;
}
body.soba .sobalist__item .quote p{
    line-height: 2.25;
}
body.soba .sobalist__item .wrap .img {
    float: right;
    width: 45%;
    margin: 10px 0 0 2em;
}
@media (max-width:540px) {
    body.soba .sobalist__item dl {
        padding: 1em;
        flex-direction: column;
    }
    body.soba .sobalist__item .quote {
        padding: 20px;
    }
    body.soba .sobalist__item .quote p {
        line-height: 2;
    }
    body.soba .sobalist__item .wrap .img {
        float: none;
        width: 100%;
        margin: 0;
    }
}

/*--------------------------------
お知らせ
----------------------------------*/
body.news .newslist{
    border-top: solid 1px #EAEAEA;
    margin-bottom: 20px;
}
body.news .newslist__item a {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    gap: 0 20px;
    border-bottom: solid 1px #EAEAEA;
    padding: 1.25em 0.5em;
}
body.news .newslist__item a:hover {
    background: #f2f2f2;
}
body.news .newslist__item a h2{
    margin: 0;
    font-size: var(--f16px);
}

/* 記事ページ */
body.news .ttlwrap p {
    font-size: var(--f18px);
    margin: 0;
}
body.news .ttlwrap h2 {
    font-size: var(--f32px);
    margin: 0;
}
body.news .content {
    border-top: solid 1px #EAEAEA;
    border-bottom: solid 1px #EAEAEA;
    padding: 30px 0;
    margin: 30px 0;
}

/*--------------------------------
会社案内
----------------------------------*/
/* #greeting */
body.kaisha #greeting{
    padding-left: var(--side);
}
body.kaisha #greeting .wrap {
    display: grid;
    grid-template-columns: 50fr 7fr 57fr;
    grid-template-rows: 70px auto 70px;
}
body.kaisha #greeting .wrap .img {
    grid-column: 2/4;
    grid-row: 1/3;
}
body.kaisha #greeting .wrap .txt {
    grid-column: 1/3;
    grid-row: 2/4;
    position: relative;
    background: rgb(255 255 255 / 90%);
    padding: 2em 2em 0 0;
    line-height: 2.25;
}
body.kaisha #greeting .wrap .txt .name {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
}
body.kaisha #greeting .wrap .txt .name .sig{
     width: min(190px,33%);
}

/* outline */
.tbl {
    border-top: solid 1px #EAEAEA;
}
.tbl dl {
    border-bottom: solid 1px #EAEAEA;
    display: flex;
    margin: 0;
}
.tbl dt {
    width: max(17%,6em);
    flex-shrink: 0;
    background: #F8F8F8;
    padding: 1.5em 1em;
    text-align: center;
}
.tbl dd {
    padding: 1.5em 1em;
    padding-left: 3em;
    margin: 0;
}
.tbl dd .label{
    background: #ADADAD;
    color: #fff;
    font-size: var(--f12px);
    border-radius: 2px;
    padding: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5em;
    line-height: 1;
}

/* history */
.tbl02 dl {
    display: flex;
    margin: 0;
    gap: 30px;
}
.tbl02 dl:nth-of-type(odd) {
    background: #F8F8F8;
}
.tbl02 dt {
    width: max(10%,6em);
    flex-shrink: 0;
    padding: 10px;
    text-align: center;
}
.tbl02 dd {
    padding: 10px;
    margin: 0;
}

/* management */
body.kaisha h3 {
    font-size: var(--f32px);
    margin: 1.5em 0 0.5em;
}
body.kaisha h4 {
    font-size: var(--f22px);
    margin: 1.5em 0 0.25em;
}
body.kaisha ol {
    margin-top: 10px;
}
body.kaisha ol li{
    margin: 10px 0;
}
body.kaisha #management .wrap {
    display: flex;
    gap: 6%;
}
body.kaisha #management .txt .box {
    border: solid 1px;
    padding: 2em;
    margin-bottom: 40px;
}
body.kaisha #management .txt .box p {
    margin: 0;
}
body.kaisha #management .txt > p {
    font-size: var(--f18px);
    line-height: 2;
}
body.kaisha #management .txt > h4 + p{
    margin-top: 0;
    font-size: var(--f16px);
}
body.kaisha #management .wrap .img {
    width: 40%;
    flex-shrink: 0;
}
body.kaisha #management .wrap.imgs{
    gap: 2%;
}
body.kaisha #management .wrap.imgs .img {
    flex-grow: 1;
    border: solid 1px #ccc;
}

/* access */
body.kaisha #access .wrap {
    display: flex;
    gap: 3%;
    margin-bottom: 40px;
}
body.kaisha #access .wrap .tbl{
    flex-grow: 1;
}
body.kaisha #access .wrap .tbl dt {
    width: max(25%,6em);
    display: flex;
    justify-content: center;
    align-items: center;
}
body.kaisha #access .wrap .img{
    width: 40%;
    flex-shrink: 0;
}
body.kaisha #access .map iframe{
    width: 100%;
    aspect-ratio: 16/9;
}

@media (max-width:1024px) {
    body.kaisha #greeting .wrap {
        display: block;
    }
    body.kaisha #greeting .wrap .img {
        width: 80%;
        margin: 0 0 0 auto;
    }
}
@media (max-width:768px) { /* hamburger size */
    body.kaisha #greeting .wrap .img {
        width: 90%;
    }
    body.kaisha #management .wrap {
        flex-direction: column;
    }
    body.kaisha #management .wrap .img {
        width: min(100%,450px);
        margin: 0 auto;
    }
    body.kaisha #access .wrap {
        gap: 20px;
        flex-direction: column;
    }
    body.kaisha #access .wrap .img {
        width: min(450px,100%);
        order: -1;
    }
}
@media (max-width:540px) {
    .tbl dl {
        flex-direction: column;
    }
    .tbl dt {
        width: 100%;
        padding: 0.5em 1em;
        text-align: left;
    }
    .tbl dd {
        padding: 0.5em 1em;
        padding-left: 1em;
    }
    .tbl02 dl {
        gap: 0;
    }
    body.kaisha #access .wrap .tbl dt {
        width: 100%;
        justify-content: start;
    }
    body.kaisha #access .map iframe{
        aspect-ratio: 1/1;
    }
}


/*--------------------------------
お問い合わせ
----------------------------------*/
body.contact .form {
    background: #F8F8F8;
    padding: 50px;
}
body.contact .form dl {
    display: flex;
    border-bottom: solid 1px #EAEAEA;
    margin: 0;
    padding: 1em 0;
    gap: 2rem;
}
body.contact .form dt {
    margin: 0;
    width: max(25%,15em);
    flex-shrink: 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1em 0;
}
body.contact .form dd {
    margin: 0;
    flex-grow: 1;
}

body.contact .form dt::before {
   content: "任意";
   display: inline-block;
   background: #B2B2B2;
   border-radius: 2px;
   color: #fff;
   font-size: var(--f12px);
   padding: 5px 2em;
   line-height: 1;
}
body.contact .form dl.rec dt::before {
    content: "必須";
    background: #845D30;
}
body.contact .form input[type="text"],
body.contact .form input[type="email"] {
    width: 20em;
}
body.contact .form input
body.contact .form textarea{
    border: solid 1px #EAEAEA;
    border-radius: 2px;
}
body.contact .form input::placeholder,
body.contact .form textarea::placeholder {
    color: #BEBEBE;
}
body.contact .form label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 1em 0;
}
button.btn {
    width: min(var(--content),280px);
    margin: 0 auto;
    background: #fff;
    color: #333;
    border-radius: 2px;
    display: flex;
    text-decoration: none;
    padding: 1rem;
    gap: 1em;
    align-items: center;
}
button.btn.border {
    border: solid 1px currentColor;
}

button.btn span.txt{
    flex-grow: 1;
    text-align: center;
}
button.btn img{
    flex-shrink: 0;
}
button.btn:hover{
    background: #dddddd;
}
button.btn:hover .icon{
    transform: translateX(2px);
}

body.contact .contactbox {
    background: #F8F8F8;
    padding: 2rem 1rem;
    text-align: center;
}
body.contact .contactbox p {
    margin: 0;
}
body.contact .contactbox p.num {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.2;
}
body.contact .contactbox span.font_en{
    font-size: var(--f50px);
    font-weight: bold;
}

@media (max-width:768px) { /* hamburger size */
    body.contact .form {
        padding: 30px;
    }
    body.contact .form dl {
        flex-direction: column;
        gap: 0;
    }
}

/*--------------------------------
個人情報保護方針
----------------------------------*/
ol,ul {
    padding-left: 1.5em;
}
ol li{
    margin: 1.5em 0;
}
ol li li{
    margin: 0.5em 0;
}



/*--------------------------------
20241015 add
生そばについて
----------------------------------*/
/* about */
body.namasoba #about .mainwrap {
    position: relative;
}
body.namasoba #about .mainimg {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
body.namasoba #about .mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}
body.namasoba #about h2 {
    font-size: var(--f32px);
    background: #fff;
    width: fit-content;
    max-width: 90%;
    position: relative;
    padding: 0.5em 2em 0.5em 1em;
    position: absolute;
    top: 0;
}
body.namasoba #about .disc{
    font-size: var(--f18px);
    line-height: 2.5;
    margin-left: var(--f32px);
}
body.namasoba #about .disc h3 {
    line-height: 1.3;
    margin: 2em 0 0.5em;
}
body.namasoba #about .disc h3:first-of-type{
    margin-top: 0;
}
body.namasoba #about .disc h3+p{
    line-height: 1.7;
    font-size: var(--f16px);
}
body.namasoba #about .disc .clm{
    display: flex;
    gap: 5%;
}
body.namasoba #about .disc .clm .txts{
    flex-basis: 0;
    flex-grow: 1;
}
body.namasoba #about .disc .clm .img{
    width: 30%;
    flex-shrink: 0;
}

body.namasoba .flowarea{
    position: relative;
    padding: 50px var(--side);
}
body.namasoba .flowarea::before{
    content: "";
    width: calc((100% - var(--side)) - 15%);
    height: 100%;
    background: url("../images/common/bg01.png");
    background-size: 700px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

body.namasoba .flow__item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}
body.namasoba .flow__item .img {
    width: 38.5%;
    flex-shrink: 0;
    align-self: stretch;
}
body.namasoba .flow__item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body.namasoba .flow__item .txt {
    flex-grow: 1;
    padding-bottom: 1rem;
    padding-left: 8%;
}
body.namasoba .flow__item .txt h3{
    font-size: var(--f24px);
    font-weight: 500;
    margin: 0;
}
body.namasoba .flow__item:nth-of-type(even) .img {
    order: 1;
}
body.namasoba .flow__item:nth-of-type(even) .txt {
    margin-right: 5%;
}



/* product */
body.namasoba .sobalist__item {
    display: flex;
    gap: 20px 5%;
    margin-bottom: 50px;
}
body.namasoba .sobalist__item .img{
    width: 40%;
    flex-shrink: 0;
}
body.namasoba .sobalist__item .txt .ttl{
   font-size: var(--f22px);
}

@media (max-width:768px) { /* hamburger size */
    body.namasoba #about .disc {
        line-height: inherit;
        margin-left: 0;
    }
    body.namasoba #about .mainimg {
        aspect-ratio: 5 / 4;
    }
    body.namasoba #about .mainimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.namasoba #about .disc .br-wrap{
        display: inline;
    }
    body.namasoba #about .disc .clm .img{
        display: none;
    }
    
    body.namasoba .sobalist__item {
        flex-direction: column;
    }
    body.namasoba .sobalist__item .img{
        width: 100%;
    }

    body.namasoba .flow__item {
        flex-direction: column;
        gap: 20px;
    }
    body.namasoba .flow__item .img {
        width:100%;
        align-self: inherit;
    }
    body.namasoba .flow__item:nth-of-type(even) .img {
        order: 0;
    }
    body.namasoba .flow__item .txt {
        padding: 0;
        width:100%;
    }
    body.namasoba .flow__item:nth-of-type(even) .txt {
        margin-right: 0;
    }
}