@charset "utf-8";
/* CSS Document */
@font-face {     
    font-family: 'Local Noto Sans JP';     
    src: local('Noto Sans JP'), /* Windows用 */
        local('Noto Sans CJK JP Regular') /* Android用 */;}   
:root{--main-color: #6fbc1b;--sub-color:#f4f4f4;--accent-color:#ed9800;--base-color:#000;--formbtn-color:#f8f8ff;--formbtn-color2: #f1f1e6;}
body,html{height: 100%;width: 100%;font-size: 16px;font-weight: 450;	line-height: 22px;margin: 0;padding: 0;}
.mac body{font-size:15px}
body,html{font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;fontF-weight:400;color:#333;overflow-x:hidden}
body{position:absolute;top:0;left:0;-webkit-overflow-scrolling:touch;-webkit-text-size-adjust:100%;overflow-y:scroll}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,b,cite,code,del,dfn,em,img,ins,kbd,q,samp,strong,sub,sup,tt,var,ul,ol,li,dl,dt,dd,form,fieldset,legend,label,input,textarea,table,caption,tbody,tfoot,thead,tr,th,td,header,footer,nav,small,section{box-sizing:border-box;margin:0;padding:0}

header,footer,nav,small,section{display:block}

h1,h2,h3,h4,h5,h6{font-size:100%}

ul{list-style:none}
ol{list-style-type:decimal}
img{vertical-align:bottom;border:0;height:auto;max-width:100%}
sup{vertical-align:top}
sub{vertical-align:bottom}
em,strong,cite{font-style:normal}
article{margin:0 0 2%}
em,strong{font-weight:700}
a{color:var(--main-color);text-decoration:none;}
.clearfix:after{content:".";display:block;clear:both;height:0;visibility:hidden}
.clearfix{display:inline-block}
* html .clearfix{height:1%}
.clearfix{display:block}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*文字配置*/
.taL,
.taL_C{
	text-align: left !important;
}

.taR,
.taR_C{
	text-align: right !important;
}

.taC,
.taC_L{
	text-align: center !important;
}

/*文字の種類*/
.red{
	color: #FF0000;
}

.blue{
	color: #015DB2;
}

.bgblue{
	background-color: #334A7A;
}

.bgWhite{
	background-color: #fff !important;
}

.white{
	color: #ffffff;
}

.black{
	color: #121212;
}

.green{
	color: #6fbc1b;
}

.orange{
    color: #ed9800;
}

.bold{
	font-weight: bold !important;
}

.under{
	text-decoration: underline;
}

.border{
    border: 1px solid var(--base-color);
}

.colorbox{
    border: 1px solid var(--main-color);
    padding: 1em;
    background: var(--sub-color);
    width: fit-content;
    height: fit-content;
}

/*マージン*/
.marginAuto{
    margin: auto;
}

.marginAutoLR {
	margin-left: auto;
	margin-right: auto;
}

.marginTop5{
	margin-top: 5% !important;
}

.marginBottom5{
    margin-bottom: 5% !important;
}

.marginBottom10px{
    margin-bottom: 10px !important;
}

.marginTop3{
	margin-top: 3% !important;
}

.marginTop2{
	margin-top: 2% !important;
}

.marginTop30px{
    margin-top: 30px !important;
}

.marginBottom3{
    margin-bottom: 3% !important;
}

.marginBottom30px{
    margin-bottom: 30px !important;
}

.marginBottom50px{
    margin-bottom: 50px !important;
}

.marginBottom100px{
    margin-bottom: 100px !important;
}

/*いろんなサイズのボックス*/
.w25{
	width: 25%;
}

.w30{
	width: 30%;
}

.w40{
	width: 40%;
}

.w45{
	width: 45%;
}

.w50{
	width: 50%;
}

.w60{
	width: 60%;
}

.w70{
	width: 70%;
}

.w80{
	width: 80%;
}

.w90{
	width: 90%;
}

.w100{
	width: 100%;
}

.inlineBlock{
    display: inline-block;
}

.gridBox{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gridItem{
    display: flex;
    flex-direction: column; /* 画像と文字を縦に並べる */
}

.gridItem img{    /* 親の幅に合わせる */
    object-fit: cover; /* 画像をトリミングして枠に収める（歪まない） */
    display: block;
}

.flexBox{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* 折り返しを許可 */
    gap: 10px;
    --x: 3;
}

.flexItem{
    flex: 1 1 calc((100% / var(--x)) - 10px);
    min-width: 100px; /* これより小さくなったら折り返す */
}

/* list1 */
.list1,
.list2{
    position: relative;
}

.list1 li,
.list2 li{
    text-indent: -1.5em;
    padding-left: 1.5em;
    margin-bottom: 7px;
    line-height: 1.5em;
}

.list1 li::before{
    content: "●";
    padding-right: 0.5em;
    color: var(--main-color);
}

.list2 li::before{
    content: "●";
    padding-right: 0.5em;
}

.list3 li{
    margin-bottom: 5px;
    text-indent: -1em;
    padding-left: 1.5em;
}

/* table */
.tbl1{
    border: 1px solid var(--main-color);
    border-collapse: collapse;
}

.tbl1 th,
.tbl1 td{
    padding: 1em;
    border: 1px solid var(--main-color);
}

.tbl1 th{
    font-weight: normal;
    background: var(--sub-color);
}

.tbl1 h2{
    font-size: 1.5em;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}

.tbl2{/*右寄せ*/
    margin-right: 0;
    margin-left: auto;
    text-align: left;
}

.tbl2 td{
    padding: 3px;
}

/* container */
#container {
	margin: 0 auto;
    position: relative;
}

/* header */
#header{
	width: 100%;
    z-index: 100;
    text-align: center;
    padding: 15px 5% 10px;
    display: block;
    box-shadow: 0 3px var(--sub-color);
    background: #fff;
    transition: 0.5s;
}

#header.onlyPart{
    top: 0;    
    left: 0;
    right: 0;
    transition: 0.5s;
    position: fixed;
    padding: 5px 5%;
    box-shadow: 0 3px #0002;
}

.header_wrap{
    display: flex;
	max-width: 1550px;
    width: 100%;
    margin: auto;
    position: relative;
}

#header .left {
	width: 50%;
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.top_logo{
    display: inline-block;
    width: 40%;
    vertical-align: middle;
}

.top_logo img{
    width: 90%;
    max-width: 200px;
}

.onlyPart .top_logo img{
    transition: 0.5s;
}

.tel{
    text-align: left;
    display: block;
    text-decoration: none;
    color: var(--base-color);
    margin: auto;
    width: 60%;
}

.tel span{
    vertical-align: middle;
    font-size: clamp(16px, 2.7vw, 34px);
    line-height: 1em;
    font-weight: 700;
}

img.tel_mark{
    max-width: 42px;
    min-width: 30px;
    vertical-align: middle;
    width: 4vw;
}

#header .right {
	width: 50%;
    text-align: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top_form_button{
    max-width: 400px;
    width: 100%;
	text-align: right;
}

.top_button {
    border-radius: 50px;
    display: inline-block;
    padding: 10px;
    box-sizing: border-box;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    vertical-align: top;
    margin-left: 10px;
    min-width: 100px;
    width: 35%;
    font-size: clamp(13px, 1vw, 17px);
}

.ask_button {
	background-color: var(--accent-color);
}

.order_button {
	background-color: #ff6861;
}

#menuBtn{
    display: none;
    position: absolute;
    right: 2%;
    top: 0;
    max-height: 50px;
    max-width: 50px;
    width: 15%;
    aspect-ratio: 1;
    margin: auto;
    cursor: pointer;
    background: var(--main-color);
    border-radius: 50%;
}

#header .header_wrap .navicon{
    display: block;
    position: relative;
    width: 50%;
    height: 3px;
    margin-left: 25%;
    margin-top: 50%;
    transition: 0.5s;
    background: #fff;
    border-radius: 4px;
}

#header .header_wrap .navicon::before,
#header .header_wrap .navicon::after{
    left: 0;
    right: 0;
    display: block;
    height: 3px;
    background: #fff;
    content: "";
    border: none;
    position: absolute;
    transition: 0.5s;
    border-radius: 4px;
}

#header .header_wrap .navicon::before{
    top: 7px;
}

#header .header_wrap .navicon::after{
    bottom: 7px;
}

#container.openMenu .header_wrap .navicon{
    background: transparent;
    z-index: 100;
}

#container.openMenu .header_wrap .navicon::before{
    transform: rotate(45deg);
    top: 0;
}

#container.openMenu .header_wrap .navicon::after{
    transform: rotate(-45deg);
    bottom: 0;
}

#footer{
    background: var(--base-color);
}

.footer_wrap{
    width: 90%;
    margin: auto;
	max-width: 1400px;
    padding: 2em 0;
}

.footer_menu{
    flex: 1 1 20%;
    flex-basis: 150px;
    margin-bottom: 10px;
}

.footer_menu li{
    margin-bottom: 5px;
    padding-left: 1.5em;
    position: relative;
    padding-right: 1em;
}

.footer_menu li.mark::before{
    content: "＞";
    left: 0;
    position: absolute;
    color: #fff;
}

.footer_menu li > a,
.footer_menu li > p{
    color: #fff;
}

.footer_menu_parent{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copylight{
    text-align: center;
    font-size: 0.9em;
    color: #fff;
    padding-bottom: 5px;
    font-weight: 100;
}

#contents{
    width: 90%;
    margin: auto;
	max-width: 1600px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 45px;
}


#side_menu{
    width: 19%;
    min-width: 200px;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;    /* 上部の余白 */
    bottom: 20px; /* 下部の余白（ここが肝！） */
    left: 0;
    height: fit-content;
    align-self: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
}

#side_menu h3{
    letter-spacing: 3px;
    margin-bottom: 5px;
    color: var(--main-color);
}

#side_menu li a,
#side_menu li span{
    padding: 10px 1em;
    display: block;
    box-sizing: content-box;
    border: 1px solid var(--main-color);
    border-top: none;
}

#side_menu li:first-of-type a,
#side_menu li:first-of-type span{
    border-top: 1px solid var(--main-color);
}

#side_menu li a.url,
#side_menu li span{
    background: var(--main-color);
    color: #fff;
}

#side_menu li span.url{
    background: var(--sub-color);
    color: var(--main-color);
    border-top: none;
    border-bottom: 1px solid var(--main-color);
}

#side_menu ul li:last-child a.url{
    border-bottom: 1px solid #fff;
}

#side_menu ul li:last-child span.url{
    border-bottom: 1px solid var(--main-color);
}

#side_menu ul:last-child li a.url,
#side_menu ul:last-child li span{
    border-bottom: none;
}

#side_menu li a{
    border-top: none;
    color: var(--base-color);
}

#content_wrap{
    flex: 1;
}

#main{
    margin-top: 50px;
}

.top_title,
.sub_title,
.section_title{
    font-size: 1.75em;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    margin: 10px 0 30px;
    padding: 0 20px;
}

.sub_title{
    position: relative;
    font-size: 1.5em;
    border-bottom: 2px solid var(--base-color);
}

.sub_title > img{
    display: inline-block;
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    height: calc(100% - 30px);
}

.sub_title h3{
    display: inline-flex;
    align-items: center;
    align-content: center;
    width: 100%;
    padding: 0 50px;
    justify-content: center;
    gap: 10px;
}

.sub_title h3 img{
    height: 3em;
}

.sub_title2{
    font-size: 1.2em;
    padding-left: 1.5em;
    text-align: left;
    position: relative;
    width: 100%;
}

.sub_title2::before{
    content: "■";
    position: absolute;
    left: 0;
    color: var(--main-color);
}

.sub_title3{
    padding: 0.25em 1em;
    width: fit-content;
    border: 1px solid var(--base-color);
}

.section_title{
    color: #fff;
    background: var(--main-color);
    padding: 15px 0;
    font-size: 1.5em;
}

.section_title h3{
    line-height: 1em;
}

#main section{
    width: 95%;
    margin: auto;
}

.article{
    padding: 0 20px;
}

.video_parent video{
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
}

.iframe_parent{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.iframe_parent iframe{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.dialog{
    position: fixed;
    z-index: 100;
    inset: 0;
    background: #00000070;
    cursor: pointer;
    overflow: hidden;
}

.dialog_wrap{
    position: fixed;
    inset: 0 5%;
    max-width: fit-content;
    max-height: fit-content;
    background: #fff;
    margin: auto;
    padding: 5%;
    border: 2px solid #777;
    cursor: auto;
    box-sizing: content-box;
}

.dialog.close{
    height: 0;
    padding: 0;
    transition: 0.5s;
}

.dialog.close .dialog_wrap{
     display: none;   
}

.close_button{
    display: block;
    position: absolute;
    background: #000;
    color: #fff;
    width: max-content;
    padding: 3px;
}

.flow_parent{
    position: relative;
    height: max-content;
}

.flow_parent img.flow{
    left: 0;
    top: 0;
    display: block;
    min-width: 470px;
    max-width: 1200px;
    max-height: 1119px;
    width: 110%;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

}

.flow_parent a{
    position: absolute;
    display: block;
    content: "";
    text-indent: -9999px;
}

.flow_parent.flow1 a{
    width: 12%;
    height: 3%;
    top: 18%;
    left: 35%;
}

.flow_parent.flow2 a,
.flow_parent.flow3 a{
    width: 19%;
    height: 3%;
    top: 19%;
    left: 20%;
}

.flow_parent.flow2, .flow_parent.flow3{
    display: none;
}

.ask_box{
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    background: linear-gradient()
}

.ask_box .ask_item{
    border-radius: 5px;
    border: 1px solid #ccc;
    max-width: 400px;
    text-align: center;
	background: -webkit-linear-gradient(#fff 0%,#fefefe 70%, #efefef 80%,#e6e6e6);
	background: linear-gradient(#fff 0%,#fefefe 93%, #efefef 95%,#EFEFEF);
    box-shadow: 0px -1px 3px -1px #0005;
}

.ask_box h2{
    font-size: 1.25em;
    border-bottom: 2px solid #ccc;
    padding: 7px 0;
    margin: 0 1%;
}

.ask_box .ask_item_sub{
    height: 110px;
    align-items: center;
    align-content: center;
    padding: 1%;
}

.ask_box h3{
    padding: 7px 0;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    color: var(--base-color);
}

.ask_box .top_button{
    padding: 5px 0;
    margin: 5px;
    min-width: auto;
}

.aboutus td,
.aboutus th{
    line-height: 1.7em;
}

.aboutus a{
    color: var(--accent-color);
    text-decoration: underline;
}

.scrollMargin{
    scroll-margin-top: 80px;
}

.item_landscape{
    flex: 256 1 0%;
    aspect-ratio: 16 / 9;
    max-width: 533px;
    flex-shrink: 1;
}

.item_portrait{
    flex: 81 1 0%;
    aspect-ratio: 9 / 16;
    max-width: 168px;
    flex-shrink: 1;
}

.item_square{
    flex: 144 1 0%;
    aspect-ratio: 1 / 1;
    max-width: 300px;
    flex-shrink: 1;
}

@media only screen and (max-width:1200px){
    .ask_box p{
        font-size: 0.9em;
    }
    
    .ask_box h3{
        letter-spacing: normal;
    }
}
    
@media only screen and (max-width:1000px){
    
    .flow_parent img.flow{
        width: 100%;
        min-width: unset;
    }
    
    .flow_parent.flow1{
        display: none;
    }
    
    .flow_parent.flow2, .flow_parent.flow3{
        display: block;
    }
    
    .item_landscape,
    .item_square,
    .item_portrait{
        flex: unset;
        min-width: 200px;
    }
    
    .item_landscape{
        min-width: 350px;
    }
    
    
    .item_square{
        min-width: 250px;
    }
}

@media only screen and (max-width:800px){
    #header{
        padding: 10px 0 0;
    }
    
    #header.onlyPart{
        position: fixed;
        top: 0;
        padding: 0;
        left: 0;
        right: 0;
        transition: 0.5s;
    }
    
    #header.onlyPart .left,
    #header.onlyPart .right{
        height: 0;
        opacity: 0;
        overflow: hidden;
    }
    
    .header_wrap,
    #header .left{
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    #header .right{
        text-align: center;
        margin: auto;
        width: 100%;
    }
    
    .top_logo,
    .tel,
    .top_form_button{
        text-align: center;
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
    
    .top_logo{
        max-width: 200px;
        width: 70%;
    }
    
    .top_button {
        margin-top: 10px;
        padding: 10px 5px;
    }
    
    .ask_box .top_button{
        margin-top: none;
    }
    
    #header .header_wrap #menuBtn{
        display: block;
        right: 10px;
        top: 10px;
    }
    
    #container.openMenu #header.onlyPart #menuBtn{
        background: none;
    }
    
    #main{
        margin-top: 20px;
    }

    #main section{
        width: 100%;
    }
    
    .footer_menu_parent{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer_menu{
        flex-basis: auto;
    }
    
    #contents{
        width: calc(100% - 40px);
        gap: 20px;
    }
    
    #side_menu{
        height: 0;
        width: 100%;
        position: absolute;
        overflow: hidden;
        padding: 0;
        z-index: 1;
    }
    
    #container.openMenu #side_menu{
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        inset: 0;
        position: fixed;
        background: linear-gradient(var(--base-color), #000000bb);
    }
    
    
    #container.openMenu #side_menu h3{
        padding: 2em;
    }
    
    #container.openMenu .side_menu_wrap{
        overflow: hidden;
        padding-bottom: 50vh;
    }
    
    #container.openMenu .side_menu_wrap > *{
        flex-direction: column;
        text-align: left;
        font-size: 14pt;
        line-height: 1.5em;
        padding: 1em;
    }
    
    #side_menu li a.url,
    #side_menu li span{
        color: var(--main-color);
    }
    
    
    #side_menu li a.url,#side_menu li a, #side_menu li span{
        border: none;
        background: none;
    }
    
    #side_menu li:first-of-type a, #side_menu li:first-of-type span {
        border-top: none;
    }
    
    
    #container.openMenu #side_menu li{
        flex-basis: auto;
    }
    
    #side_menu li a{
        color: #fff;
    }
    
    #container.openMenu #side_menu li a{
        padding: 0.75em 1em;
        position: relative;
    }
    
    #container.openMenu #side_menu li a.url,     
    #container.openMenu #side_menu li span.url{
        border: none;
    }
    
    #container.openMenu li a::after{
        content: "";
        position: absolute;
        right: 1em;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        width: 10px;
        height: 10px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
    }
    
    
    .sub_title{
        font-size: 1.5em;
        padding: 0 0 0 10%;
    }
    
    .sub_title h3{
        padding: 0;
        white-space: nowrap;
    }
    
    .sub_title h3 img{
        height: 10vw;
    }
    
    .flow_parent.flow1{
        display: block;
    }

    .flow_parent.flow2, .flow_parent.flow3{
        display: none;
    }
    
    .scrollMargin{
        scroll-margin-top: 0px;
    }

}

@media only screen and (max-width:600px){
    body{
        font-size: 15px;
    }
    
    .tbl1,
    .tbl1 tbody,
    .tbl1 tr,
    .tbl1 td,
    .tbl1 th{
        display: block;
        width: 100%;
        border-bottom: none;
    }
    
    .tbl1{
        border: none;
    }
    
    .tbl1 tr:last-child{
        border-bottom: 1px solid var(--main-color);
    }
    
    .sub_title > img{
        height: calc(100% - 5px);
        top: auto;
        bottom: 5px;
    }
    
    .ask_box{
        flex-direction: column;
    }
    
    .ask_item{
        width: -webkit-fill-available;
    }
    
    .flow_parent.flow1{
        display: none;
    }

    .flow_parent.flow2, .flow_parent.flow3{
        display: block;
    }
    
    .item_landscape,
    .item_square,
    .item_portrait{
        max-width: none;
        min-width: unset;
        width: 100%;
    }
}

