@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    /* font */
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-size_large: 30px;
    --font-size_medium: 2rem;
    --font-size_normal: 1.6rem;
    --font-size_small: 1.3rem;
    
    /* color & text */
    --main-black: #1a1a1a;
    --main-green: #14a8ae;
    --bg-light-green: #edf8f9;
    --border-gray: #c9caca;
    /* --bg-gray: #635e5b; */
    --bg-gray: #515151;
    --bg-dark-gray: #3e3a39;
    --bg-light-gray: #efefef;
    --text-gray: #666;
    --text-light-gray: #898989;
    --text-green: #00b4b0;
    --text-red: #e52d27;
    --text-frame--white_1: #fff 0 0, #fff 0 1px, #fff 0 -1px, #fff 1px 0, #fff 1px 1px, #fff 1px -1px, #fff -1px 0, #fff -1px 1px, #fff -1px -1px;
    
    /* size & space */
    --inner-width: 1000px;
    --under-width: 840px;
    --inner-width--sp: 90.625vw;
    --inner-sidespace--sp: 4.6875vw;
    --section-bottom: 80px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    :root{
        /* font */
        --font-size_large: 2.4rem;
        --font-size_medium: 1.7rem;
        --font-size_normal: 1.4rem;
        
        /* size & space */
        --inner-width: var(--inner-width--sp);
        --under-width: var(--inner-width--sp);
        --section-bottom: 60px;
    }
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1080px;
    background: #fff;
    color: var(--main-black);
    font-family: var(--font-sans-serif);
    font-size: var(--font-size_normal);
    line-height: 1.5;
    text-align: left;
    word-wrap: break-word;
}
@media screen and (min-width:769px){
    body.is--min_win-height{
        min-height: 0!important;
        padding-bottom: 0!important;
    }
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    body{
        min-width: 320px;
        border-top-width: 4px;
        background: #fff;
    }
}
*{
    letter-spacing: .04em;
}
.sp{
    display: none;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    img{
        width: 100%;
        height: auto;
    }
}
chrome_annotation[data-type="PHONE_NUMBER"]{
    color: inherit!important;
    border-bottom: none!important;
}

/* block */
.inlineBlock{
    display: inline-block;
}

/* float */
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.floatL,
.l{
    float: left;
}
.floatR,
.r{
    float: right;
}

/* margin */
.mB5,
.m_b5{
	margin-bottom: 5px!important;
}
.mB10,
.m_b10{
	margin-bottom: 10px!important;
}
.mB15,
.m_b15{
	margin-bottom: 15px!important;
}
.mB20,
.m_b20{
	margin-bottom: 20px!important;
}
.mB30,
.m_b30{
	margin-bottom: 30px!important;
}
.mB40,
.m_b40{
	margin-bottom: 40px!important;
}
.mB50,
.m_b50{
	margin-bottom: 50px!important;
}
.mR10,
.m_r10{
	margin-right: 10px!important;
}

/* text */
.textCenter,.txt_c,
:where(.textCenter,.txt_c) :is(li,th,td){
    text-align: center!important;
}
@media screen and (min-width:769px){
    .textCenter--only_pc,
    .txt_c--only_pc{
        text-align: center;    
    }
}
.textRight,.txt_r,
:where(.textRight,.txt_r) :is(li,th,td){
    text-align: right!important;
}
.textBold,
.txt_b{
    font-weight: bold;
}
.textIndent,
.txt_ind {
    text-indent: -1.04em;
    padding-left: 1.04em;
}
.textRed,
.txtRed{
    color: var(--text-red);
}
.textGreen,
.txtGreen{
    color: var(--text-green);
}
.textNowrap{
    white-space: nowrap!important;
}
.vertRL{
    writing-mode: vertical-rl;
}
@media screen and (min-width:769px){
    .vertRL_pc{
        writing-mode: vertical-rl;
    }
}
@media screen and (max-width:768px){
    .vertRL_sp{
        writing-mode: vertical-rl;
    }
}
.textSmall{
    font-size: .7em;
}
.ffsPalt{
    font-feature-settings: "palt" 1;
}
@media screen and (min-width:769px){
    *:has(> wbr:not(.sp)){
        word-break: keep-all;
    }   
}
@media screen and (max-width:768px){
    *:has(> wbr:not(.pc)){
        word-break: keep-all;
    }   
}

/* ruby（代用） */
[data-ruby]{
    text-align: center;
}
[data-ruby]::before{
    display: block;
    padding: 0 .2em .1em;
    font-size: clamp(1rem,.5em,1.5rem);
    line-height: 1em;
    text-align-last: justify;
    content: attr(data-ruby);
}

/* link */
a:hover {
	text-decoration: none;
}
@media screen and (min-width:769px){
    a[href^="tel:"]{
        pointer-events: none;
    }   
}
.fadeHover{
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .fadeHover:hover{
        opacity: .7;
    }
}
@media screen and (min-width:769px){
    .textLink:not(*[href^="tel:"]):not(:hover){
        text-decoration: underline;
    }
}
@media screen and (max-width:768px){
    .textLink:not(:active){
        text-decoration: underline;
    }
}

/* custom-scroll */
.custom-scroll-container,
.custom-scrollbar{
    --scrollbar-heghit: 4px; /* バーの高さ */
}
.custom-scroll-container{
    position: relative;
    padding-bottom: calc(var(--scrollbar-heghit) + 10px);
    overflow: auto;
    scrollbar-width: none;
}
.custom-scroll-container::-webkit-scrollbar{
    display: none;
}
@media screen and (min-width:769px){
    .custom-scroll-container.is--scrollable{
        cursor: grab;
    }  
    .custom-scroll-container.is--scrollable:active{
        cursor: grabbing;
    }  
}
.custom-scroll-container.is--scrolling a,
.custom-scroll-container.is--scrolling img{
    pointer-events: none;
}
.custom-scrollbar{
    display: block;
    position: relative;
    width: 100%;
    height: var(--scrollbar-heghit);
    margin-top: calc(-1 * var(--scrollbar-heghit));
    overflow: hidden;
    border-radius: 999px;
    background-color: rgba(100,100,100,.25);
}
.custom-scrollbar__thumb{
    opacity: .5;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-radius: 2px;
    background-color: rgba(0,0,0,.5);
    pointer-events: auto;
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .custom-scrollbar__thumb:hover{
        opacity: .75;
    }
    .custom-scrollbar__thumb:active{
        opacity: 1;
    }
}

/*-------------
wrapper
-------------*/
.all-wrapper{
    --header-hit: 115px; /* headerの高さ */
    padding-top: var(--header-hit);
    overflow: hidden;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .all-wrapper{
        --header-hit: 60px;
    }
}

/*-------------
header
-------------*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: var(--header-hit);
    padding: 10px 0;
    background: #fff;
}
.header-inner{
    display: flex;
    flex-direction: column;
    width: var(--inner-width);
    height: 100%;
    margin: 0 auto;
}
.header-menu-btn{
    display: none;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .header{
        padding: 0;
    }
    .header-inner{
        flex-direction: row;
        align-items: center;
        position: relative;
        width: 100%;
        padding: 0 var(--inner-sidespace--sp);
    }
    .header-logo{
        width: 187px;
    }
    .header-menu-btn{
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: absolute;
        top: calc(50% - 22px);
        right: var(--inner-sidespace--sp);
        width: 44px;
        height: 44px;
        padding-bottom: 4px;
        background: linear-gradient(to top,var(--main-green),var(--main-green)) no-repeat top 11px left 5px / 34px 2px;
        font-size: var(--font-size_small);
        line-height: 1;
        letter-spacing: .01em;
        text-align: center;
        white-space: nowrap;
        cursor: pointer;
    }
    .header-menu-btn.menu--open{
        background: none;
    }
    .header-menu-btn::before,
    .header-menu-btn::after{
        position: absolute;
        top: 4px;
        left: 5px;
        width: 34px;
        height: 2px;
        border-radius: 1px;
        background: var(--main-green);
        content: "";
        transition: all .3s ease;
    }
    .header-menu-btn::after{
        top: 18px;
    }
    .header-menu-btn.menu--open::before,
    .header-menu-btn.menu--open::after{
        top: 11px;
        transform: rotate(30deg);
    }
    .header-menu-btn.menu--open::after{
        transform: rotate(-30deg);
    }
}
/* header-nav */
.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.header-nav-list{
    display: flex;
    flex: 1 1 auto;
}
.header-nav-list-item{
    flex: 1 1 auto;
}
.header-nav-list-item__link{
    display: inline-block;
    position: relative;
    padding: 0 10px 12px;
    line-height: 1;
}
@media screen and (min-width:769px){
    .header-nav-list-item__link::after{
        opacity: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--main-green);
        content: "";
        transition: opacity .3s ease;
    }
    .header-nav-list-item__link:hover::after{
        opacity: 1;
    }   
}
.header-nav-sns{
    display: flex;
    flex: 0 0 auto;
    gap: 15px;
    margin-left: 75px;
    padding-bottom: 5px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .header-nav{
        display: block;
        position: absolute;
        top: var(--header-hit);
        left: 0;
        width: 100%;
        padding: 30px var(--inner-sidespace--sp);
        border-top: solid 1px var(--border-gray);
        background: #fff;
        box-shadow: 0 4px 8px -4px rgba(0,0,0,.5);
        transition: opacity .3s ease;
    }
    .header-nav:not(.is--active),
    .header-nav:not(.is--active) *{
        z-index: -999;
        pointer-events: none!important;
    }
    .header-nav:not(.is--show){
        opacity: 0;
    }
    .header-nav-list{
        display: block;
    }
    .header-nav-list-item{
        border-bottom: solid 1px var(--main-green);
    }
    .header-nav-list-item__link{
        display: block;
        padding: 16px 0 18px;
    }
    .header-nav-sns{
        display: flex;
        margin: 45px 0 0;
        padding-bottom: 0;
    }
}

/*-------------
footer
-------------*/
.footer{
    border-top: solid 1px var(--border-gray);
}
.footer-inner{
    display: flex;
    align-items: center;
    position: relative;
    width: var(--inner-width);
    margin: 0 auto;
    padding: 17px 0;
}
.footer__pagetop{
    position: absolute;
    top: -46px;
    right: -15px;
    z-index: 1;
}
.footer__pagetop-btn{
    display: flex;
    align-items: center;
    padding: 15px;
}
.footer__pagetop-btn-arrow{
    display: block;
    width: 15px;
    height: 15px;
    margin: 1px 4px 0 0;
}
.footer__pagetop-btn-arrow .path_b{
    fill: var(--main-black);
    transition: fill .3s ease;
}
@media screen and (min-width:769px){
    .footer__pagetop-btn:hover .footer__pagetop-btn-arrow .path_b{
        fill: var(--main-green);
    }
}
.footer__pagetop-btn__text{
    font-size: var(--font-size_small);
    line-height: 1;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .footer{
        border-top: solid 1px var(--border-gray);
    }
    .footer-inner{
        display: block;
        padding: 30px 0 calc(15px + env(safe-area-inset-bottom));
    }
    .footer__pagetop{
        right: calc(var(--inner-sidespace--sp) * -1);
    }
    .footer__pagetop-btn{
        padding: 15px var(--inner-sidespace--sp);
    }
}
/* footer-logo */
.footer-logo{
    flex: 0 0 auto;
    margin-right: 30px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .footer-logo{
        width: 187px;
        margin: 0 0 20px;
    }
}
/* footer-address */
.footer-address{
    display: flex;
    gap: 1em;
    color: var(--text-gray);
    font-size: var(--font-size_small);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .footer-address{
        flex-direction: column;
        gap: .25em;
    }
}
/* footer-end */
.footer-end{
    margin-left: auto;
}
.footer-end__link{
    margin-bottom: 4px;
}
.footer-end__link-inner{
    display: block;
	position: relative;
	padding-left: 12px;
	color: var(--text-gray);
	font-size: var(--font-size_small);
	line-height: calc(1em + 6px);
}
.footer-end__link-inner::before{
	position: absolute;
	top: .5em;
	left: 0;
	transform: rotate(45deg);
	width: 6px;
	height: 6px;
	border-top: solid 2px #999;
	border-right: solid 2px #999;
	box-sizing: border-box;
	content: "";
}
.footer-copy{
    display: block;
	color: #999;
	font-size: 1.2rem;
	line-height: calc(1em + 6px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .footer-end{
        margin: 20px 0 0;
    }
    .footer-end__link{
        margin-bottom: 9px;
    }
}

/*-------------
contents
-------------*/
.contents{
    padding: 20px 0 150px;
}
.main > .contents:first-child{
    border-top: solid 1px var(--border-gray);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .contents{
        padding: min(20px,var(--inner-sidespace--sp)) 0 120px;
    }
}
/* section-title */
.section-title{
    position: relative;
    max-width: var(--inner-width);
    margin: 0 auto 28px;
    font-size: var(--font-size_large);
    font-weight: bold;
    line-height: calc(1em + 6px);
    text-align: center;
}
.section-title[data-en]::after{
    display: block;
    margin-top: 4px;
    color: var(--text-gray);
    font-family: var(--font-serif);
    font-size: var(--font-size_small);
    line-height: calc(1em + 6px);
    content: attr(data-en);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .section-title{
        margin-bottom: 17px;
    }
}
/* is--und_circle */
.section-title.is--und_circle{
    padding-bottom: 44px;
    margin-bottom: 30px;
}
.section-title.is--und_circle::before{
    position: absolute;
    bottom: 0;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border: solid 1px #b5b5b6;
    border-radius: 50%;
    background: radial-gradient(circle,#dcdddd 5px,#fff 5px);
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .section-title.is--und_circle{
        padding-bottom: 33px;
        margin-bottom: 20px;
    }
}
/* section-head--und-line */
.section-head--und-line{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-head--und-line .section-title{
    margin-bottom: 30px;
    padding-bottom: 11px;
    border-bottom: solid 3px var(--main-green);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .section-head--und-line .section-title{
         margin-bottom: 20px;
    }
}

/*-------------
404
-------------*/
.error_404-main .contents{
    padding-top: 75px;
}
.message-404{
    width: var(--under-width);
    margin: 0 auto;
    padding: 50px;
    background: var(--bg-light-gray);
    text-align: center;
}
.message-404 p{
    margin-bottom: 12px;
}
.message-404__btn{
    width: 300px;
    margin: 35px auto 0;
}
.message-404__btn__link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    background: var(--bg-dark-gray);
    color: #fff;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .message-404__btn__link:hover{
        background: var(--main-black);
    }
}
.message-404__btn__link::after{
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 5px;
    height: 9px;
    background: url(../images/link-arrow.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .error_404-main .contents{
        padding-top: 30px;
    }
    .message-404{
        display: block;
        padding: 20px calc(var(--inner-sidespace--sp) + 5px) 25px;
        text-align: left;
    }
    .message-404__btn{
        width: 100%;
        margin-top: 30px;
    }
}

/*-------------
top
-------------*/
.main.top-page{
    padding-bottom: 100px;
}
.top-lead{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    z-index: 0;
    width: var(--inner-width);
    min-height: 450px;
    margin: 0 auto 50px;
    padding: 105px 0;
}
.top-mainvisual{
    position: relative;
    z-index: 0;
    width: var(--inner-width);
    min-height: 450px;
    margin: 0 auto 50px;
}
.top-mainvisual-text{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 105px 0 135px;
}
.top-mainvisual .keen-slider-dot.is-active{
	background:var(--main-green);
}
.top-lead__main-visual{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.top-lead__main-visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 50%;
}
.top-lead-inner{
    padding: 19px 25px 21px;
    background: rgba(90,90,90,.8);
    color: #fff;
}
.top-lead-title{
    display: flex;
    align-items: center;
    gap: 2px 8px;
    margin-bottom: 10px;
    font-weight: bold;
}
.top-lead-title__main{
    display: inline-block;
    font-size: var(--font-size_medium);
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.top-lead-title__sub{
    display: inline-block;
    margin-left: 2px;
    font-family: var(--font-serif);
    font-size: var(--font-size_normal);
    font-weight: normal;
    line-height: calc(1em + 4px);
    content: attr(data-en);
}
.top-lead__text{
    font-size: var(--font-size_medium);
    line-height: calc(1em + 8px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .top-lead{
        width: 100%;
        min-height: calc(100vw - var(--header-hit));
        margin-bottom: calc(var(--inner-sidespace--sp) + 7px);
        padding: 40px 0 var(--inner-sidespace--sp);
    }
    .top-mainvisual{
        position: relative;
        z-index: 0;
        width: 100%;
        min-height: calc(100vw - var(--header-hit));
        margin-bottom: calc(var(--inner-sidespace--sp) + 7px);
    }
    .top-mainvisual-text{
        padding: 40px 0 calc(var(--inner-sidespace--sp) + 30px);
    }
    .top-lead__main-visual img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .top-lead-inner{
        width: calc(100% - var(--inner-sidespace--sp));
        padding: 19px calc(var(--inner-sidespace--sp) + 5px) 21px var(--inner-sidespace--sp);
    }
    .top-lead-title{
        flex-wrap: wrap;
        margin-bottom: 12px;
    }
    .top-lead-title__main{
        font-size: min(20px,5.3125vw);
    }
    .top-lead-title__sub,
    .top-lead__text{
        font-size: min(18px,4.375vw);
    }
}
/* top-value */
.top-value{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--inner-width);
    margin: 0 auto 60px;
    overflow: hidden;
}
.top-value.value_v2{
    width: 100%;
    margin-bottom: calc(var(--section-bottom) / 2);
    padding: calc(var(--section-bottom) / 2) 0 calc(var(--section-bottom) / 2 + 5px);
    background: var(--bg-light-green);
}
.top-value-list{
    margin-bottom: 60px;
}
.top-value-list-item{
    position: relative;
    padding-left: 24px;
    font-size: var(--font-size_medium);
    line-height: calc(1em + 8px);
}
.top-value-list-item:not(:last-child){
    margin-bottom: 12px;
}
.top-value-list-item::before{
    position: absolute;
    top: calc(.5em - 4px);
    left: 0;
    width: 18px;
    height: 16px;
    background: url(../images/icon_check.svg) no-repeat center / contain;
    content: "";
}
.top-value-pics{
    display: flex;
    justify-content: center;
    margin: 0 -1px;
}
.top-value-pics-item{
    flex: 1;
}
.top-value-pics-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-value.value_v2 .prod-point-list-item b{
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 15px;
    display: block;
}
.top-value.value_v2 .prod-point-list-item:not(:last-child){
    margin-bottom: 30px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .top-value{
        display: block;
        margin-bottom: 40px;
    }
    .top-value-list{
        margin-bottom: 30px;
    }
    .top-value-list-item{
        padding-left: 21px;
        font-size: var(--font-size_normal);
    }
    .top-value-list-item::before{
        top: calc(.5em - 3px);
        height: 14px;
    }
    .top-value.value_v2 .top-value-list{
        width: var(--inner-width);
        margin: 0 auto 30px;
    }
    .top-value.value_v2 .prod-point-list-item b{
        font-size: 1.8rem;
        line-height: calc(1em + 8px);
    }
    .top-value.value_v2 .prod-point-list-item::before {
        top: calc(.5em);
        width: 12px;
        height: 14px;
    }
}
/* top-about */
.top-about{
    width: var(--under-width);
    margin: 0 auto 60px;
}
.top-about-body{
    line-height: calc(1em + 11px);
}
.top-about__text:not(:last-child){
    margin-bottom: 14px;
}
.top-about__text__term{
    display: inline-block;
    margin-right: .6em;
    font-weight: bold;
}
.top-about__text__desc{
    display: inline;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .top-about{
        margin-bottom: 40px;
    }
    .top-about__text:not(:last-child){
        margin-bottom: 14px;
    }
}
/* top-prod */
.top-prod{
    width: var(--inner-width);
    margin: 0 auto;
}
.top-prod-inner{
    display: flex;
    background: var(--bg-gray);
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .top-prod-inner:hover{
        background: var(--main-green);
    }
}
.top-prod-pics{
    display: flex;
    flex: 1;
    width: 666px;
}
.top-prod-pics-item{
    flex: 1;
}
.top-prod-pics-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .top-prod-inner:hover .top-prod-pics-item img{
        opacity: .5;
    }
}
.top-prod-body{
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    width: 334px;
    padding: 27px 30px 30px;
    color: #fff;
}
.top-prod-body::before{
    display: block;
    order: 1;
    margin-top: 4px; 
    font-family: var(--font-serif);
    line-height: 1;
    text-align: center;
    content: "more";
}
.top-prod-body::after{
    display: block;
    width: 27px;
    height: 27px;
    margin-top: 27px;
    background: linear-gradient(to top,#fff,#fff) no-repeat top 13px left 0 / 100% 1px,
    linear-gradient(to right,#fff,#fff) no-repeat top 0 left 13px / 1px 100%;
    font-family: var(--font-serif);
    content: "";
}
.top-prod-title{
    margin-bottom: 24px;
    font-size: var(--font-size_large);
    font-weight: 500;
    line-height: calc(1em + 4px);
    text-align: center;
}
.top-prod-title::after{
    display: block;
    margin-top: 6px;
    color: #dedede;
    font-family: var(--font-serif);
    font-size: var(--font-size_small);
    line-height: calc(1em + 4px);
    content: attr(data-en);
    transition: color .3s ease;
}
@media screen and (min-width:769px){
    .top-prod-inner:hover .top-prod-title::after{
        color: #fff;
    }
}
.top-prod__text{
    line-height: calc(1em + 8px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .top-prod-inner{
        display: block;
    }
    .top-prod-pics{
        width: 100%;
        aspect-ratio: 5 / 2;
    }
    .top-prod-body{
        width: 100%;
        padding: 18px 6.25vw 20px;
        color: #fff;
    }
    .top-prod-body::after{
        margin-top: 19px;
    }
    .top-prod-title{
        margin-bottom: 14px;
    }
}

/*-------------
page-header
-------------*/
.page-header{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    padding: 20px 0;
    background: url(../images/page-header_bg.jpg) no-repeat center / 1000px auto,
    url(../images/bg_dot.svg) repeat top left / 4px 4px;
}
.page-header.v1{
    background: url(../images/page-header_bg001.jpg) no-repeat center / 1000px auto,
    url(../images/bg_dot.svg) repeat top left / 4px 4px;
}
.page-header.v2{
    background: url(../images/page-header_bg002.jpg) no-repeat center / 1000px auto,
    url(../images/bg_dot.svg) repeat top left / 4px 4px;
}
.page-header__title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    min-height: 90px;
    padding: 9px 20px 11px;
    background: var(--main-green);
    color: #fff;
    font-size: min(36px,calc(var(--font-size_large) * 1.25));
    line-height: calc(1em + 4px);
    text-align: center;
}
.page-header._fs-mid .page-header__title{
    font-size: min(34px,calc(var(--font-size_large) * 1.06));
}
.page-header__title[data-en]::after{
    display: block;
    margin-top: 7px;
    font-family: var(--font-serif);
    font-size: max(calc(var(--font-size_normal) * .9),1.3rem);
    font-weight: 500;
    line-height: calc(1em + 4px);
    content: attr(data-en);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .page-header{
        background: url(../images/page-header_bg@sp.jpg) no-repeat bottom center / cover;
    }
    .page-header.v1{
        background: url(../images/page-header_bg001@sp.jpg) no-repeat bottom center / cover;
    }
    .page-header.v2{
        background: url(../images/page-header_bg002@sp.jpg) no-repeat bottom center / cover;
    }
    .page-header__title{
        min-width: 240px;
        font-size: min(30px,calc(var(--font-size_large) * 1.25));
    }
    .page-header._fs-mid .page-header__title{
        font-size: min(28px,calc(var(--font-size_large) * 1.04));
    }
}

/*-------------
products
-------------*/
.prod-integrity{
    width: var(--inner-width);
    margin: 0 auto 50px;
}
.prod-integrity-title{
    width: var(--under-width);
    margin: 0 auto 30px;
    padding: 14px 0 16px;
    background: var(--bg-gray);
    color: #fff;
    font-size: var(--font-size_medium);
    font-weight: normal;
    line-height: calc(1em + 9px);
    text-align: center;
}
.prod-integrity-figure{
    display: block;
    margin-top: 37px;
}
.prod-point-list-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--inner-width);
    margin: 0 auto;
}
.prod-point-list{
    margin: 0 auto;
}
.prod-point-list-item{
    position: relative;
    padding-left: 22px;
    line-height: calc(1em + 8px);
}
.prod-point-list-item::before{
    clip-path: polygon(0 0,100% 50%,0 100%);
    position: absolute;
    top: calc(.5em - 4px);
    left: 0;
    width: 16px;
    height: 18px;
    background: var(--main-green);
    content: "";
}
.prod-point-list-item:not(:last-child){
    margin-bottom: 4px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-integrity{
        margin-bottom: 40px;
    }
    .prod-integrity-title{
        margin-bottom: 20px;
        padding: 10px 10px 12px;
        line-height: calc(1em + 8px);
    }
    .prod-integrity-figure{
        margin-top: 32px;
    }
    .prod-integrity-figure img{
        width: auto;
        height: max(calc(50vh),343px);
    }
    .prod-point-list-item{
        padding-left: 18px;
    }
    .prod-point-list-item::before{
        top: calc(.5em - 3px);
        width: 12px;
        height: 14px;
    }
}
/* prod-lead-sect */
.prod-lead-sect{
    margin-bottom: calc(var(--section-bottom) / 2);
    padding: calc(var(--section-bottom) / 2) 0 calc(var(--section-bottom) / 2 + 5px);
    background: var(--bg-light-green);
}
.prod-lead-sect__columns{
    display: flex;
    justify-content: center;
    gap: 20px;
    width: var(--inner-width);
    margin: 0 auto;
}
.prod-lead-sect__columns:not(:last-child){
    margin-bottom: 25px;
}
.prod-lead-sect__pic-column{
    flex: 0 0 auto;
    width: 336px;
    height: 252px;
}
.prod-lead-sect__movie-column{
    flex: 0 0 auto;
    position: relative;
    width: 448px;
    height: 252px;
}
.prod-lead-sect__movie-column::after{
    opacity: .75;
    position: absolute;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    width: 90px;
    height: 90px;
    background: url(../images/icon_movie-play.svg) no-repeat center / contain;
    content: "";
    filter: drop-shadow(0 0 0 #000);
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .prod-lead-sect__movie-column:hover::after{
        opacity: 1;
    }
}
.prod-lead-sect__column-caption{
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: 4px 10px 6px;
    background: rgba(0,0,0,.5);
    color: #fff;
    /* text-shadow: 0 0 2px rgba(0,0,0,.25); */
}
.prod-lead-sect__pic-column img,
.prod-lead-sect__movie-column img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body:has(.products-main) .modal-content-wrap{
    border-radius: 0;
}
.prod-modal-movie{
    width: 1280px;
    max-width: 90vw;
    aspect-ratio: 16 / 9;
}
.prod-modal-movie video{
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-lead-sect{
        margin-bottom: calc(var(--section-bottom) / 2);
        padding: calc(var(--section-bottom) / 2) 0 calc(var(--section-bottom) / 2 + 5px);
        background: var(--bg-light-green);
    }
    .prod-lead-sect__columns{
        flex-direction: column;
        gap: 15px 0;
    }
    .prod-lead-sect__columns:not(:last-child){
        margin-bottom: 20px;
    }
    .prod-lead-sect__pic-column,
    .prod-lead-sect__movie-column{
        width: 100%;
        height: auto;
    }
    .prod-lead-sect__movie-column::after{
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        width: 72px;
        height: 72px;
    }
    .prod-modal-movie{
        width: var(--inner-width--sp);
        max-width: none;
    }
}
/* prod-sect */
.prod-sect-container:not(:last-child){
    margin-bottom: 120px;
}
.prod-sect{
    width: var(--inner-width);
    margin: 0 auto;
}
.prod-sect:not(:last-child){
    margin-bottom: 60px;
}
.prod-sect-title{
    margin-bottom: 17px;
    font-size: calc(var(--font-size_large) - 3px);
    font-weight: bold;
    line-height: calc(1em + 8px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect-container:not(:last-child){
        margin-bottom: 80px;
    }
    .prod-sect-title{
        margin-bottom: 13px;
        line-height: calc(1em + 6px);
    }
}
/* prod-sect__columns */
.prod-sect__columns{
    display: flex;
    gap: 20px;
}
.prod-sect__columns *.is--in_columns{
    display: flex;
}
.prod-sect__columns .prod-sect__column--wide{
    flex: 0 0 auto;
    width: 100%;
}
@media screen and (min-width:769px){
    .prod-sect__columns *.is--pc-wide_auto{
        width: auto;
    }   
}
.prod-sect__text-column{
    flex: 1 1 auto;
    max-width: 680px;
    min-width: 490px;
    margin: 0 auto;
}
.prod-sect__text-column__pics{
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.prod-sect__text-column__pic{
    flex: 1;
    width: calc(50% - 10px);
}
.prod-sect__text-column__pic img{
    width: 100%;
    height: auto;
}
@media screen and (min-width:769px){
    .prod-sect__columns:has(.prod-sect__text-column){
        gap: 20px 40px;
    }
    .prod-sect__columns.is--pc-column_3{
        gap: 28px 23px;
    }
    .prod-sect__columns.is--pc-column_3 .prod-sect__column{
        width: 318px;
    }
    .prod-sect__columns.is--pc_row-reverse{
        flex-direction: row-reverse;
    }   
    .prod-sect__columns.is--pc-justify_center{
        justify-content: center;
    }   
    .prod-sect__columns.is--pc-align_center{
        align-items: center;
    }   
    .prod-sect__columns.is--pc-align_end{
        align-items: flex-end;
    }
    .prod-sect__columns *.is--pc-add-line_1::after{
        display: block;
        content: "　";
    }
}
.prod-sect__column-title{
    margin-bottom: 17px;
    font-size: var(--font-size_medium);
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.prod-sect__column-body{
    margin-top: -6px;
    line-height: calc(1em + 10px);
}
.prod-sect__column-body:not(:last-child){
    margin-bottom: 20px;
}
.prod-sect__column-caption{
    flex: 0 0 100%;
    margin-top: 8px;
    font-size: var(--font-size_small);
    line-height: calc(1em + 7px);
    text-align: center;
}
.prod-sect__column-caption__title{
    display: block;
    margin-bottom: 6px;
    font-size: calc(var(--font-size_small) + 2px);
    font-weight: 500;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__columns{
        flex-direction: column;
        gap: 20px;
    }
    .prod-sect__columns:not(:last-child){
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: solid 1px var(--border-gray);
    }
    .prod-sect__text-column{
        width: 100%;
        min-width: 0;
    }
    .prod-sect__text-column__pics{
        gap: 10px;
        margin-bottom: 20px;
    }
    .prod-sect__text-column__pic{
        width: calc(50% - 5px);
    }
    .prod-sect__columns .prod-sect__column.is--sp-wide_calc50{
        width: calc(50% - 5px);
    }
    .prod-sect__columns .prod-sect__column.is--sp-order_1{
        order: 1;
    }
    .prod-sect__column-title{
        margin-bottom: 11px;
    }
    .prod-sect__column-body{
        margin-top: -5px;
        line-height: calc(1em + 9px);
    }
    .prod-sect__column-body > p:not(:last-child){
        margin-bottom: 8px;
    }
    .prod-sect__column-caption__title{
        margin-bottom: 4px;
    }
}
/* prod-sect__pic-column */
.prod-sect__pic-column{
    display: block;
    flex: 0 0 auto;
    justify-content: center;
    width: 390px;
}
.prod-sect__pic-column:has(.prod-sect__column-caption){
    flex-wrap: wrap;
}
.prod-sect__pic-column img{
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__pic-column{
        width: 100%;
        max-width: none;
    }
    .prod-sect__pic-column.is--in_long-pic :is(picture,.is--picture),
    .prod-sect__column.is--in_long-pic :is(picture,.is--picture){
        display: block;
        background: #eee;
    }
    .prod-sect__pic-column img{
        max-height: calc(var(--inner-width--sp) * .75);
    }
}
.prod-sect__pic-column:has(.prod-sect__pic-column-item){
    display: flex;
    gap: 0 20px;
}
.prod-sect__pic-column-item{
    flex: 0 0 auto;
    width: calc(50% - 10px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__pic-column:has(.prod-sect__pic-column-item){
        gap: 0 10px;
    }
    .prod-sect__pic-column-item{
        width: calc(50% - 5px);
    }
}
/* prod-sect__middle-columns */
.prod-sect__middle-columns{
    display: flex;
    flex: 0 0 auto;
    gap: 20px;
    width: 100%;
    margin: 15px 0;
}
.prod-sect__middle-columns .prod-sect__column{
    flex: 1;
    padding: 19px 20px 21px;
    border: solid 1px var(--border-gray);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__middle-columns{
        display: block;
        margin: 10px 0;
    }
    .prod-sect__middle-columns .prod-sect__column{
        padding: 15px calc(var(--inner-sidespace--sp) + 5px) 17px;
    }
    .prod-sect__middle-columns .prod-sect__column:not(:last-child){
        margin-bottom: 10px;
    }
}
/* prod-sect__column__pic--back */
.prod-sect__column:has(.prod-sect__column__pic--back){
    position: relative;
    z-index: 0;
    min-height: 230px;
}
.prod-sect__column__pic--back{
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: -1;
}
.prod-sect__column__pic--back img{
    width: auto;
    height: 200px;
}
.prod-sect__column__pic--back ~ *{
    text-shadow: var(--text-frame--white_1);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__column:has(.prod-sect__column__pic--back){
        position: relative;
        z-index: 0;
        min-height: calc(46.875vw + 30px);
    }
    .prod-sect__column__pic--back{
        right: var(--inner-sidespace--sp);
    }
    .prod-sect__column__pic--back img{
        height: 46.875vw;
    }
}
/* prod-sect__btn */
.prod-sect__btn:not(:first-child){
    margin-top: 25px;
}
.prod-sect__btn + .prod-sect__btn{
    margin-top: 10px;
}
.prod-sect__btn-inner{
    display: block;
    position: relative;
    padding: 12px 30px 14px 15px;
    background: var(--main-green);
    color: #fff;
    line-height: calc(1em + 5px);
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .prod-sect__btn-inner:hover{
        background: #4fbec2;
    }
}
.prod-sect__btn-inner::after{
    position: absolute;
    bottom: 50%;
    right: 15px;
    transform: rotate(-45deg);
    transform-origin: right bottom;
    width: 8px;
    height: 8px;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    content: "";
}
/* prod-sect__data */
.prod-sect__data{
    padding: 19px 25px 23px;
    background: var(--bg-light-gray);
}
.prod-sect__text-column .prod-sect__data:not(:first-child){
    margin-top: 20px;
}
.prod-sect__data-trem{
    margin-bottom: 8px;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.prod-sect__data-desc{
    line-height: calc(1em + 8px);
}
.prod-sect__data__list{
    margin-top: 10px;
}
.prod-sect__data__list:not(:last-child){
    margin-bottom: 15px;
}
.prod-sect__data__list-item{
    line-height: calc(1em + 5px);
}
.prod-sect__data__list-item:not(:last-child){
    margin-bottom: 10px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-sect__data{
        padding: 20px calc(var(--inner-sidespace--sp) + 5px) 22px;
    }
    .prod-sect__data-trem{
        margin-bottom: 9px;
        font-weight: bold;
        line-height: calc(1em + 6px);
    }
    .prod-sect__data-desc{
        line-height: calc(1em + 8px);
    }
    .prod-sect__data__list{
        margin-top: 15px;
    }
}
/* prod-upbtn */
.prod-upbtn{
    width: min(var(--inner-width),100%);
    margin: 20px auto 0;
    text-align: right;
}
.prod-upbtn a{
    display: inline-flex;
    align-items: center;
    padding: 9px 0 11px;
    color: #555;
    font-size: var(--font-size_small);
    line-height: calc(1em + 6px);
}
.prod-upbtn a:not(:hover){
    text-decoration: underline;
}
.prod-upbtn a::before{
    clip-path: polygon(0 100%,50% 0,100% 100%);
    width: 1em;
    height: .9em;
    margin: 1px 5px 0 0;
    background: var(--main-green);
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-upbtn{
        margin-top: 15px;
    }
}
/* 固有 */
.prod-2pos-title{
    margin: 20px 0 30px;
    text-align: center;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .prod-2pos-title{
        margin: 10px 0 20px;
    }
    .prod-2pos-title img{
        width: min(335px,80%);
    }
}

/*-------------
tips
-------------*/
.tips-sect:not(:last-child){
    margin-bottom: 100px;
}
.tips-sect .section-head--und-line{
    margin-bottom: calc(var(--section-bottom) / 2);
    padding: calc(var(--section-bottom) / 4 + 4px) 0 calc(var(--section-bottom) / 4);
    background: var(--bg-light-green);
}
.tips-sect .section-title{
    margin-bottom: 0;   
}
.tips-mid-sect{
    width: var(--under-width);
    margin: 0 auto;
}
.tips-mid-sect:not(:last-child){
    margin-bottom: 45px;
}
.tips-mid-sect-title{
    margin-bottom: 12px;
    font-size: var(--font-size_medium);
    font-weight: 500;
    line-height: calc(1em + 8px);
}
.tips-mid-sect__pic{
    float: right;
    margin: 6px 0 10px 18px;
}
.tips-sect__text{
    line-height: calc(1em + 10px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .tips-sect:not(:last-child){
        margin-bottom: 80px;
    }
    .tips-mid-sect:not(:last-child){
        margin-bottom: 26px;
    }
    .tips-mid-sect-title{
        margin-bottom: 8px;
    }
    .tips-mid-sect__pic{
        width: 40%;
        margin: 5px 0 .5em 1.04em;
    }
    .tips-sect__text{
        line-height: calc(1em + 9px);
    }
    .tips-sect__text:not(:last-child){
        margin-bottom: 9px;
    }
}
/* tips-sect__num-list */
.tips-sect__num-list{
    margin-top: 20px;
    counter-reset: list-num;
}
.tips-sect__num-list-item{
    position: relative;
    padding-left: 1.8em;
}
.tips-sect__num-list-item:not(:last-child){
    margin-bottom: 10px;
}
.tips-sect__num-list-item::before{
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-green);
    font-weight: 500;
    content: counter(list-num,decimal-leading-zero)".";
    counter-increment: list-num;
}
@media screen and (max-width:768px){
    /* tips-sect__num-list */
    .tips-sect__num-list{
        margin-top: 16px;
    }
    .tips-sect__num-list-item:not(:last-child){
        margin-bottom: 9px;
    }
}
/* tips-qa */
.tips-qa{
    padding: 55px 0 75px;
    background: var(--bg-light-gray);
}
.tips-qa-wrapper{
    width: var(--under-width);
    margin: 0 auto;
}
.tips-qa-list{
    counter-reset: qa-num;
}
.tips-qa-list-item:not(:last-child){
    margin-bottom: 36px;
}
.tips-qa-list-item__pic{
    float: right;
    margin: 4px 0 10px 18px;
}
.tips-qa-list-item__q{
    position: relative;
    margin-bottom: 13px;
    padding-left: 2.15em;
    font-size: var(--font-size_medium);
    font-weight: 500;
    line-height: calc(1em + 6px);
}
.tips-qa-list-item__q::before{
    position: absolute;
    top: -1px;
    left: 0;
    font-weight: bold;
    content: "Q"counter(qa-num)".";
    counter-increment: qa-num;
}
.tips-qa-list-item__a{
    line-height: calc(1em + 10px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .tips-qa{
        padding: 35px 0 45px;
    }
    .tips-qa-list-item:not(:last-child){
        margin-bottom: 29px;
    }
    .tips-qa-list-item__pic{
        width: 40%;
        margin: 3px 0 .5em 1.04em;
    }
    .tips-qa-list-item__q{
        margin-bottom: 9px;
    }
    .tips-qa-list-item__a{
        line-height: calc(1em + 9px);
    }
}

/*-------------
company
-------------*/
.company-lead{
    width: var(--inner-width);
    margin: 0 auto var(--section-bottom);
}
.company-lead-head{
    position: relative;
    padding-top: 20px;
}
.company-lead-head-pic{
    width: 880px;
    margin-left: auto;
}
.company-lead-head-pic-caption{
    margin-top: 5px;
    padding-right: calc(var(--inner-width) - 100%);
    color: var(--text-gray);
    text-align: center;
}
.company-lead-head-catch{
    position: absolute;
    top: 0;
    left: 0;
    padding: 29px 25px 31px;
    background: rgba(36,36,36,.8);
}
.company-lead-head-catch__text{
    display: block;
    color: #fff;
    font-size: var(--font-size_large);
    font-weight: normal;
    line-height: calc(1em + 4px);
}
.company-lead-head-catch[data-en]::after{
    display: block;
    margin: 12px 0 0 2px;
    color: var(--text-light-gray);
    font-family: var(--font-serif);
    font-size: var(--font-size_normal);
    line-height: calc(1em + 4px);
    content: attr(data-en);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-lead{
        width: 100%;
    }
    .company-lead-head{
        padding-top: var(--inner-sidespace--sp);
    }
    .company-lead-head-pic{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .company-lead-head-catch{
        max-width: calc(100% - 20px);
        padding: 19px calc(var(--inner-sidespace--sp) + 5px) 21px;
    }
    .company-lead-head-catch__text{
        font-size: var(--font-size_medium);
    }
    .company-lead-head-catch[data-en]::after{
        margin-top: 7px;
    }
}
/* company-outline */
.company-outline{
    width: var(--under-width);
    margin: 0 auto var(--section-bottom);
}
.company-message{
    margin-bottom: 40px;
}
.company-outline-table{
    width: 100%;
    border-top: solid 1px var(--border-gray);
}
.company-outline-table__row{
    border-bottom: solid 1px var(--border-gray);
}
.company-outline-table__row > th{
    min-width: 140px;
    padding: 19px 0 21px 30px;
    color: var(--text-light-gray);
    font-weight: normal;
    white-space: nowrap;
}
.company-outline-table__row > td{
    padding: 19px 0 21px 20px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-outline-table{
        display: block;
    }
    .company-outline-table__row{
        display: block;
    }
    .company-outline-table__row > th{
        display: block;
        width: 100%;
        min-width: 0;
        padding: 20px 0 7px;
        font-weight: 500;
        white-space: normal;
    }
    .company-outline-table__row > td{
        display: block;
        width: 100%;
        padding: 0 0 20px;
    }
}
/* company-outline__data */
.company-outline__data-wrap{
    display: table;
}
.company-outline__data-wrap:not(:last-child){
    margin-bottom: 15px;
}
.company-outline__data{
    display: table-row;
}
.company-outline__data-term{
    display: table-cell;
    padding-right: 1.2em;
    color: var(--text-light-gray);
}
.company-outline__data-desc{
    display: table-cell;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-outline__data-wrap{
        display: block;
    }
    .company-outline__data{
        display: block;
    }
    .company-outline__data:not(:last-child){
        margin-bottom: 7px;
    }
    .company-outline__data-term{
        display: block;
        padding: 0 0 2px;
    }
    .company-outline__data-desc{
        display: block;
    }
}
/* company-outline__gmap */
.company-outline__gmap{
    background: var(--bg-light-gray);
}
.company-outline__gmap:not(:last-child){
    margin-bottom: 25px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-outline__gmap{
        width: 100%;
        aspect-ratio: 4 / 3;
    }
    .company-outline__gmap iframe{
        width: 100%;
        height: 100%;
    }
}
/* company-outline__list */
.company-outline__list{
    display: flex;
    flex-wrap: wrap;
    gap: .2em 1em;
}
.company-outline__list-item{
    flex: 0 1 auto;
}
/* company-outline__pics */
.company-outline__pics{
    display: flex;
    margin-top: 20px;
}
.company-outline__pics-item img{
    max-width: 100%;
    height: auto;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-outline__pics{
        margin-top: 15px;
    }
}
/* company-history */
.company-history{
    display: flex;
    width: var(--under-width);
    margin: 120px auto 40px;
}
.company-history .section-title{
    flex: 0 0 auto;
    margin: 0 80px;
}
.company-history-list{
    flex: 1 1 auto;
    position: relative;
    padding-left: 52px;
}
.company-history-list::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: calc(100% + 40px);
    border-radius: 0 0 50% 50%;
    background: linear-gradient(to bottom,var(--main-black),var(--border-gray));
    content: "";
}
.company-history-list-item{
    display: flex;
}
.company-history-list-item:not(:last-child){
    margin-bottom: 20px;
}
.company-history-list-item-head{
    flex: 0 0 135px;
    font-weight: normal!important;
}
.company-history-list-item-body{
    flex: 1 1 auto;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .company-history{
        margin: 80px auto 20px;
    }
    .company-history .section-title{
        margin: 0 var(--inner-sidespace--sp) 0 0;
    }
    .company-history-list{
        padding-left: calc(var(--inner-sidespace--sp) + 2px);
    }
    .company-history-list-item{
        display: block;
    }
    .company-history-list-item:not(:last-child){
        margin-bottom: 15px;
    }
    .company-history-list-item-head{
        font-weight: 500;
        margin-bottom: 3px;
    }
}

/*-------------
recruit
-------------*/
.recruit-lead{
    width: 650px;
    margin: 0 auto var(--section-bottom);
    padding: 45px 0;
    background: var(--bg-gray);
    color: #fff;
}
.recruit-lead-title{
    margin-bottom: 29px;
    font-size: var(--font-size_large);
    line-height: calc(1em + 8px);
    text-align: center;
}
.recruit-lead__text{
    text-align: center;
    line-height: calc(1em + 11px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .recruit-lead{
        width: var(--inner-width--sp);
        padding: 20px calc(var(--inner-sidespace--sp) + 5px) 25px;
    }
    .recruit-lead-title{
        margin-bottom: 14px;
    }
    .recruit-lead__text{
        text-align: left;
        line-height: calc(1em + 9px);
    }
}
/* recruit-req */
.recruit-req{
    width: var(--under-width);
    margin: 0 auto;
}
.recruit-req-table{
    width: 100%;
    border-top: solid 1px var(--border-gray);
}
.recruit-req-table__row{
    border-bottom: solid 1px var(--border-gray);
}
.recruit-req-table__row > th{
    min-width: 200px;
    padding: 19px 0 21px 30px;
    color: var(--text-light-gray);
    font-weight: normal;
    white-space: nowrap;
}
.recruit-req-table__row > td{
    padding: 19px 0 21px 20px;
}
.recruit-req-table__row > td p:not(:last-child){
    margin-bottom: 10px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .recruit-req{
        display: block;
    }
    .recruit-req-table__row{
        display: block;
    }
    .recruit-req-table__row > th{
        display: block;
        width: 100%;
        min-width: 0;
        padding: 20px 0 7px;
        font-weight: 500;
        white-space: normal;
    }
    .recruit-req-table__row > td{
        display: block;
        width: 100%;
        padding: 0 0 20px;
    }
}
/* recruit-contact-btn */
.recruit-contact-btn{
    width: 300px;
    margin: 40px auto 0;
}
.recruit-contact-btn-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    background: var(--main-green);
    color: #fff;
    font-weight: 500;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .recruit-contact-btn-inner:hover{
        background: var(--main-black);
    }
}
.recruit-contact-btn-inner::after{
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 5px;
    height: 9px;
    background: url(../images/link-arrow.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .recruit-contact-btn{
        width: 100%;
        margin-top: 20px;
    }
    .recruit-contact-btn--back{
        width: max(50%,180px);
        margin-top: 11px;
    }
    .recruit-contact-btn--back-inner{
        height: 54px;
    }
}

/*-------------
contact
-------------*/
.contact-lead{
    width: var(--under-width);
    margin: 0 auto 15px;
}
.contact-form-container{
    width: var(--under-width);
    margin: 0 auto;
}
.contact-form-table{
    --input-wid: 400px;
    width: 100%;
    border-top: solid 1px var(--border-gray);
}
.contact-form-table__row{
    border-bottom: solid 1px var(--border-gray);
}
.contact-form-table__row > th{
    width: 250px;
    padding: 19px 0 21px 30px;
    color: var(--text-light-gray);
    font-weight: normal;
    line-height: calc(1em + 6px);
    white-space: nowrap;
}
@media screen and (min-width:769px){
    .contact-form-table__in-head{
        display: flex;
        align-items: center;
        min-height: 40px;
    }   
}
.contact-form-table__row > td{
    padding: 19px 30px 21px 20px;
}
.contact-form-table__row > td p{
    margin-bottom: -2px;
    line-height: calc(1em + 6px);
}
.contact-form-table__row > td p:not(:first-child){
    margin-top: 7px;
}
.contact-form__list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}
.contact-form__list-item label{
    display: flex;
    align-items: center;
    gap: 5px;
}
.contact-form__list-item label input{
    width: 1em;
    height: 1em;
    margin-top: 1px;
}
.contact-form-table input:is([type="text"],[type="tel"],[type="email"]){
    width: var(--input-wid);
    height: 40px;
    padding: 5px 10px;
    border: solid 1px var(--border-gray);
    font-size: max(1.6rem,16px);
}
.contact-form-table input[type="email"]{
    width: 100%;
}
.contact-form__in-name{
    display: flex;
    align-items: center;
    width: var(--input-wid);
}
.contact-form__in-name input[type="text"]{
    width: calc(50% - calc(1em + 20px));
    margin-left: 8px;
}
.contact-form__in-name input[type="text"]:not(:last-child){
    margin-right: auto;
}
.contact-form__in-tel{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    width: var(--input-wid);
}
.contact-form__in-tel input[type="text"]{
    width: calc((100% - (1em + 20px)) / 3);
}
.contact-form-table textarea{
    width: 100%;
    min-height: 200px;
    padding: 10px;
    border: solid 1px var(--border-gray);
    font-size: max(1.6rem,16px);
    resize: vertical;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .recruit-req{
        display: block;
    }
    .contact-form-table{
        --input-wid: 100%;
    }
    .contact-form-table__row{
        display: block;
    }
    .contact-form-table__row > th{
        display: block;
        width: 100%;
        padding: 20px 0 7px;
        font-weight: 500;
        white-space: normal;
    }
    .contact-form-table__row > td{
        display: block;
        width: 100%;
        padding: 0 0 20px;
    }
    .contact-form__list{
        display: block;
        margin-top: 10px;
    }
    .contact-form__list-item:not(:last-child){
        margin-bottom: 10px;
    }
    .contact-form__in-name input[type="text"]{
        width: calc(50% - calc(1em + 15px));
    }
    .contact-form-table textarea{
        min-height: 150px;
    }
}
/* contact-form-btns */
.contact-form-btns{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}
.contact-form-btn{
    flex: 0 0 auto;
    width: 300px;
}
.contact-form-btn-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    background: var(--main-black);
    color: #fff;
    font-weight: 500;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .contact-form-btn-inner:hover{
        background: var(--main-green);
    }
}
.contact-form-btn-inner::after{
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 5px;
    height: 9px;
    background: url(../images/link-arrow.svg) no-repeat center / contain;
    content: "";
}
.contact-form-btn--back{
    flex: 0 0 auto;
    width: 200px;
}
.contact-form-btn--back-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    background: #ccc;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .contact-form-btn--back-inner:hover{
        background: #999;
    }
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .contact-form-btns{
        display: block;
        margin-top: 20px;
    }
    .contact-form-btn{
        width: 100%;
    }
    .contact-form-btn--back{
        width: max(50%,180px);
        margin-top: 11px;
    }
    .contact-form-btn--back-inner{
        height: 54px;
    }
}

/*-------------
mailend
-------------*/
.mailend-message{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--under-width);
    margin: 0 auto;
    padding: 45px 50px 55px;
    background: var(--bg-light-gray);
}
.mailend-msg__btn{
    width: 300px;
    margin: 35px auto 0;
}
.mailend-msg__btn__link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-bottom: 2px;
    background: var(--bg-dark-gray);
    color: #fff;
    transition: background .3s ease;
}
@media screen and (min-width:769px){
    .mailend-msg__btn__link:hover{
        background: var(--main-black);
    }
}
.mailend-msg__btn__link::after{
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 5px;
    height: 9px;
    background: url(../images/link-arrow.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .mailend-message{
        display: block;
        padding: 20px calc(var(--inner-sidespace--sp) + 5px) 25px;
    }
    .mailend-msg__btn{
        width: 100%;
        margin-top: 30px;
    }
}

/*-------------
privacy
-------------*/
.privacy-container{
    width: var(--under-width);
    margin: 0 auto;
}
.privacy-sect:not(:last-child){
	margin-bottom: 57px;
}
.privacy-sect-title{
	margin-bottom: 20px;
	padding-bottom: 7px;
	border-bottom: solid 1px var(--border-gray);
	font-size: var(--font-size_medium);
	line-height: calc(1em + 6px);
}
.privacy-sect-title-inner{
	display: inline-block;
	position: relative;
}
.privacy-sect-title-inner::before{
	display: inline-block;
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--main-green);
	content: "";
}
.privacy-sect__text{
	line-height: calc(1em + 10px);
}
.privacy-sect__text:not(:last-child){
	margin-bottom: 10px;
}
.privacy-sect__text.is--note{
	position: relative;
	padding-left: 1.2em;
}
.privacy-sect__text.is--note::before{
	position: absolute;
	top: 0;
	left: 0;
	color: var(--text-red);
	font-weight: bold;
	content: "※";
}
.privacy-sect__list{
	margin-top: 20px;
}
.privacy-sect__list-item{
	position: relative;
	padding-left: calc(1em + 6px);
	line-height: calc(1em + 10px);
}
.privacy-sect__list-item::before{
	position: absolute;
	top: calc(.5em + 2px);
	left: calc(.5em - 4px);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main-green);
	content: "";
}
.privacy-sect__list-item:not(:last-child){
	margin-bottom: 6px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .privacy-sect:not(:last-child){
        margin-bottom: 37px;
    }
    .privacy-sect-title{
        margin-bottom: 14px;
    }
    .privacy-sect__list{
        margin-top: 15px;
    }
}
/*product修正20260416*/
 .chart-wrapper * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }
 .chart-wrapper {
     width: 1000px;
     min-width: 1000px;
     margin: 0 auto;
     padding: 0;
     overflow-x: auto;
 }
 /* ── Header row ── */
 .chart-header-row {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
 }
 .chart-header-cell {
     padding: 12px 10px 16px;
     text-align: center;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-flow: column;
 }
 .chart-header-cell .main-title {
     font-size: 18px;
     font-weight: 700;
     color: #333;
     display: block;
     margin-bottom: 4px;
 }
 .chart-header-cell .sub-title {
     font-size: 13px;
     color: #777;
     display: block;
     line-height: 1.5;
     letter-spacing: -0.2rem;
 }
 .chart-header-cell::before{
    content: "";
    background: #00a9a5;
    width: calc(100% - 10px);
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
 }
 .chart-header-cell::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #00a9a5;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
 }
 .chart-header-cell.no-arrow::after {
     display: none;
 }
 /* ── Body ── */
 .chart-body-wrapper {
     position: relative;
 }
 .chart-columns-layer {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     position: absolute;
     inset: 0;
     pointer-events: none;
 }
 .chart-columns-layer div:nth-child(1) ,
 .chart-header-cell:nth-child(1){
     background: #f7f7f7;
 }
 .chart-columns-layer div:nth-child(2),
  .chart-header-cell:nth-child(2) {
     background: #f0f0f0;
 }
 .chart-columns-layer div:nth-child(3),
  .chart-header-cell:nth-child(3) {
     background: #e9e9e9;
 }
 .chart-columns-layer div:nth-child(4),
  .chart-header-cell:nth-child(4) {
     background: #e2e2e2;
 }
 .chart-columns-layer div:nth-child(5),
  .chart-header-cell:nth-child(5) {
     background: #EFCE07;
 }
 /* 左4列のバー群 + 右1列のカード群を横並びにする */
 .chart-rows-layer {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: row;
     padding: 10px 0;
 }
 /* 左側：4列分のバー群 */
 .chart-left {
     flex: 4;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }
 /* 右側：1列分のカード群 */
 .chart-right {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 8px;
     padding-left: 0;
 }
 .chart-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
 }
 .chart-bar {
    margin: 0 10px;
 }
.chart-bar a{
    width: 100%;
    height: 100%;
    background: #00a9a5;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    padding: 10px;
    min-height: 42px;
    gap: 5px;
    transition: all ease .3s;
}
.chart-bar a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
 .chart-card {
     margin: 0 10px;
     flex: 0 0 95px;
 }
  .chart-card a{
    width: 100%;
    height: 100%;
    background: #00a9a5;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all ease .3s;
 }
.chart-card a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
.chart-card a.link{
    position: relative;
}
.chart-card a.link::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
}
.chart-bar a:hover,
.chart-card a:hover{
    opacity: 0.7;
    transition: all ease .3s;
 }
 .chart-card .card-label {
     font-size: 11px;
     font-weight: 400;
     margin-top: 4px;
     opacity: 0.9;
 }
 .chart-gap {
     height: 8px;
 }
 /* column spans (4列グリッド内) */
 .cs-1-4 {
     grid-column: 1 / span 4;
 }
 .cs-1-3 {
     grid-column: 1 / span 3;
 }
 .cs-1-2 {
     grid-column: 1 / span 2;
 }
 .cs-1-1 {
     grid-column: 1 / span 1;
 }
 .cs-2-3 {
     grid-column: 2 / span 3;
 }
 .cs-2-2 {
     grid-column: 2 / span 2;
 }
 .cs-2-1 {
     grid-column: 2 / span 1;
 }
 .cs-4 {
     grid-column: 4 / span 4;
 }
 .chart-bar-lebel a{
    flex-flow: column;
 }
 .chart-bar-lebel .card-label {
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}
@media screen and (max-width:768px){
    .chart-wrapper{
        width: 800px;
        min-width: 800px;
    }
    .chart-header-cell .main-title {
        font-size: 15px;
    }
    .chart-header-cell .sub-title{
        font-size: 11px;
    }
    .chart-bar a{
        font-size: 14px;
    }
    .chart-card a{
        font-size: 14px;
    }
    .chart-bar-lebel .card-label {
        font-size: 11px;
    }
}
/*-------------
aseptic
-------------*/
.aseptic-lead{
    width: var(--under-width);
    margin: 0 auto 30px;
    padding: 14px 0 16px;
    background: var(--bg-gray);
}
.aseptic-pho{
    width: 1000px;
    margin: 0 auto var(--section-bottom);
}
.aseptic-lead-title{
    color: #fff;
    font-size: var(--font-size_medium);
    font-weight: normal;
    line-height: calc(1em + 9px);
    text-align: center;
}
.aseptic-lead__text{
    text-align: center;
    line-height: calc(1em + 12px);
    margin-bottom: 20px;
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .aseptic-lead{
        margin-bottom: 20px;
        padding: 10px 10px 12px;
        line-height: calc(1em + 8px);
    }
    .aseptic-pho{
        width: 100%;
        margin: 0 auto 25px;
    }
    .aseptic-lead__text{
        width: var(--inner-width--sp);
        text-align: left;
        line-height: calc(1em + 9px);
        margin: 0 auto 20px;
    }
}
.aseptic-sect:not(:last-child){
    margin-bottom: 100px;
}
.aseptic-sect .section-head--und-line{
    margin-bottom: calc(var(--section-bottom) / 2);
    padding: calc(var(--section-bottom) / 4 + 4px) 0 calc(var(--section-bottom) / 4);
    background: var(--bg-light-green);
}
.aseptic-sect .section-title{
    margin-bottom: 0;   
}
.aseptic-mid-sect{
    width: var(--under-width);
    margin: 0 auto;
}
.aseptic-mid-sect:not(:last-child){
    margin-bottom: 45px;
}
.aseptic-mid-sect-title{
    margin-bottom: 12px;
    font-size: var(--font-size_medium);
    font-weight: 500;
    line-height: calc(1em + 8px);
}
.aseptic-mid-sect__pic{
    float: right;
    margin: 6px 0 10px 18px;
}
.aseptic__text{
    line-height: calc(1em + 10px);
}
@media screen and (max-width:768px){
    /*--- sp ---*/
    .aseptic-sect:not(:last-child){
        margin-bottom: 80px;
    }
    .aseptic-mid-sect:not(:last-child){
        margin-bottom: 26px;
    }
    .aseptic-mid-sect-title{
        margin-bottom: 8px;
    }
    .aseptic-mid-sect__pic{
        width: 40%;
        margin: 5px 0 .5em 1.04em;
    }
    .aseptic__text{
        line-height: calc(1em + 9px);
    }
    .aseptic__text:not(:last-child){
        margin-bottom: 9px;
    }
}
/*aseptic-sec-list*/
.aseptic-sec-list {
    counter-reset: dl-number;
    width: var(--inner-width);
    margin: 0 auto 70px;
}
.aseptic-sec-list__item {
    counter-increment: dl-number;
    position: relative;
    padding-left: 105px;
}
.aseptic-sec-list__item:not(:last-child){
    margin-bottom: 40px;
}
.aseptic-sec-list__item-title{
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 3.0rem;
    margin-bottom: 10px;
}
.aseptic-sec-list__item-title::before {
    color: #fff;
    font-weight: bold;
    font-size: 2.5rem;
    content: counter(dl-number, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 0;
    font-weight: bold;
    background: var(--main-green);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aseptic-sec-list__item-text{
    font-size: 1.6rem;
    font-weight: normal;
    line-height: calc(1em + 12px);
}
/* sp */
@media screen and (max-width:768px){
    .aseptic-sec-list {
        counter-reset: dl-number;
        margin-bottom: 40px;
    }
    .aseptic-sec-list__item {
        padding-left: 0;
    }
    .aseptic-sec-list__item-title{
        display: flex;
        gap: 10px;
        font-size: 2.1rem;
        line-height: calc(1em + 8px);
        align-items: center;
        margin-bottom: 15px;
    }
    .aseptic-sec-list__item-title::before {
        font-weight: 600;
        font-size: 2.1rem;
        position: static;
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }
    .aseptic-sec-list__item-text{
        font-size: 1.4rem;
    }
}
/*aseptic-sec-category*/
.aseptic-sec-category-item{
    display: flex;
    border: solid 2px var(--main-green);
    box-sizing: border-box;
}
.aseptic-sec-category-item:not(:last-child){
    margin-bottom: 15px;
}
.aseptic-sec-category-item-title{
    color: #fff;
    min-width: 210px;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    background: var(--main-green);
}
.aseptic-sec-category-item-text{
    display: flex;
    align-items: center;
    padding: 15px 10px;
    box-sizing: border-box;
}
/* sp */
@media screen and (max-width:768px){
    .aseptic-sec-category-item{
        display: flex;
        flex-flow: column;
    }
    .aseptic-sec-category-item-title{
        width: 100%;
        min-width: inherit;
        font-size: 1.8rem;
        font-weight: bold;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:768px){
    .accordion-btn--sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn--sp.is--ready{
        cursor: pointer;
    }
}
/* .accordion-btn:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:768px){
    .accordion-btn--sp:not(.accordion--open):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content--sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
} */
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}
/*qa*/
.aseptic-sec-qa{
    width: var(--inner-width);
    margin: 0 auto;
}
.aseptic-sec-qa:not(:last-child){
    margin-bottom: 30px;
}
.aseptic-sec-qa-title{
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--main-green);
    border-bottom: solid 2px var(--main-green);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.qa-list{
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.qa-list__item{
  padding: 15px;
  box-sizing: border-box;
  background: var(--bg-light-green);
}
.qa-list__item:not(:last-child){
  margin-bottom: 10px;
}
.qa-list__item-title{
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-right: 20px;
}
.qa-list__item-title:before{
  content: "Q";
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--main-green);
}
.qa-list__item-title::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #000000;
  border-left: solid 2px #000000;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0;
  transform:translateY(-50%) rotate(-135deg);
  transition: all ease .3s;
}
.qa-list__item-title.accordion--open{
  margin-bottom: 20px;
}
.qa-list__item-title.accordion--open::after{
  transition: all ease .3s;
  transform:translateY(-50%) rotate(45deg);
}
.is--open .qa-list__item-text{
  border-top: solid 1px #fff;
}
.qa-list__item-text{
  padding-top: 20px;
  box-sizing: border-box;
  padding-bottom: 10px;
}
.qa-list__item-text{
  display: flex;
  gap: 20px;
}
.qa-list__item-text p{
  font-size: 1.6rem;
  line-height: calc(1em + 11px);
}
.qa-list__item-text:before{
  content: "A";
  font-size: 3.0rem;
  font-weight: 600;
  color: var(--text-red);
  line-height: 1;
}
/*sp*/
@media only screen and (max-width: 768px) {
  .qa-list {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .qa-list__item {
    padding: 10px;
    box-sizing: border-box;
  }
  .qa-list__item-title {
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    padding-right: 25px;
  }
  .qa-list__item-title:before {
    font-size: 2.4rem;
    line-height: 1;
  }
  .qa-list__item-title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #000000;
    border-left: solid 2px #000000;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%) rotate(-135deg);
    transition: all ease .3s;
  }
  .qa-list__item-text:before {
    content: "A";
    font-size: 2.4rem;
  }
  .qa-list__item-text {
    display: flex;
    gap: 15px;
  }
  .qa-list__item-text p {
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
  }
}
/*------------------
footer-contact
--------------------*/
.aseptic-footer{
    width: 100%;
    padding: 50px 0;
    box-sizing: border-box;
    background: var(--bg-light-green);
}
.footer-contact{
    width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 70px 70px;
    box-sizing: border-box;
    display: flex;
    gap: 60px;
}
.footer-contact__title{
    width: 300px;
}
.footer-contact__title-main {
    font-size: 1.8rem;
    box-sizing: border-box;
    font-family: var(--font-title);
    font-feature-settings: "palt";
    font-weight: bold;
    color: var(--main-green);
    margin: 0 auto;
}
.footer-contact__title-main-inner::before {
    font-family: var(--font-serif);
    color: var(--main-green);
    content: attr(data-pagetitle-en);
    font-size: 6.0rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}
.footer-contact__title-info{
    padding-top: 15px;
}
.footer-contact__title-text{
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.footer-contact__title-name{
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
    margin-bottom: 10px;
}
.footer-contact__title-name a{
    text-decoration: underline;
}
.footer-contact__title-name-text{
    margin-bottom: 30px;
    font-size: 1.4rem;
    line-height: calc(1em + 10px);
}
.footer-contact__title-name-text a{
    text-decoration: underline;
}
.footer-contact__title-btn{
    width: 240px;
    height: 50px;
}
.footer-contact__title-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 2px;
    background: var(--main-black);
    color: #fff;
    font-weight: 500;
    transition: background .3s ease;
}
.footer-contact__title-btn a::after {
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 5px;
    height: 9px;
    background: url(../images/link-arrow.svg) no-repeat center / contain;
    content: "";
}
@media screen and (min-width: 769px) {
    .footer-contact__title-btn a:hover {
        background: var(--main-green);
    }
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .footer-link{
        margin-bottom: 15px;
    }
    .aseptic-footer{
        width: 100%;
        padding: 50px 0;
        box-sizing: border-box;
        background: var(--bg-light-green);
    }
    .footer-contact {
        width: var(--inner-width);
        margin: 0 auto;
        background: #fff;
        padding: 55px 20px;
        box-sizing: border-box;
        display: flex;
        flex-flow: column;
        gap: 30px;
    }
    .footer-contact__title-main-inner::before {
        font-size: 4.8rem;
        font-weight: 600;
    }
    .footer-contact__title-info {
        padding-top: 0;
    }
}
/* =========================
header submenu
========================= */
.header-nav-list-item--has-child {
    position: relative;
}
.header-nav-list-item--has-child button {
    appearance: none;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    padding: 4px 10px 12px;
}
/* 矢印 */
.header-nav-list-item__arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform .3s;
}
/* PC dropdown */
.header-submenu {
    background: #fff;
}
.header-submenu-item__link {
    display: block;
}
/* =========================
PC
========================= */
@media screen and (min-width: 769px) {
    .header-nav-list-item--has-child .header-nav-list-item__link.sp{
        display: none!important;
    }
    .header-submenu {
        position: absolute;
        top: 100%;
        left: 0;

        min-width: 220px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);

        transition: .3s;
        z-index: 10;

        box-shadow: 0 5px 15px rgba(0,0,0,.1);
    }
    .header-nav-list-item--has-child:hover .header-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .header-nav-list-item--has-child._submenu-hide{
        pointer-events: none;
    }
    .header-submenu-item__link {
        padding: 15px 20px;
    }

    .header-submenu-item__link:hover {
        background: #f5f5f5;
    }
}
/* =========================
SP accordion
========================= */
@media screen and (max-width: 768px) {
    .header-nav-list-item--has-child .header-nav-list-item__link.pc{
        display: none!important;
    }
    .header-nav-list-item--has-child .header-nav-list-item__link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0 18px;
    }
    /* 既存accordion open時 */
    .header-nav-list-item--has-child .accordion--open .header-nav-list-item__arrow {
        transform: rotate(225deg);
    }
    .header-submenu-item__link {
        padding: 8px 20px 8px 20px;
        position: relative;
    }
    /* L字マーク */
    .header-submenu-item__link::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 4px;
        width: 10px;
        height: 10px;
        border-left: 1px solid var(--main-green);
        border-bottom: 1px solid  var(--main-green);
        transform: translateY(-65%);
    }
    /* PC用のabsolute解除 */
    .header-submenu {
        position: static;
        min-width: auto;
        box-shadow: none;
        padding-bottom: 15px;
    }
}
