@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;700&family=Poppins:wght@300;600&family=Roboto:ital,wght@1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-size: 100%;
	vertical-align: baseline;
	font-family: "Noto Sans JP","メイリオ","ms pgothic", sans-serif;
	color: #222;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style: none;
}

table{
    border-collapse: collapse; 
    border-spacing: 0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline: none;
}

body{
	line-height: 150%;
	-webkit-text-size-adjust: 100%;
}

a{
	text-decoration: none;
}

img{
	max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

.trim img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

p,
a,
li{
	font-size: 3.5vw;
	line-height: 170%;
}

p a,
li a{
	font-size: inherit;
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a{
	letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h7{
    font-family: "Noto Serif JP";
	line-height: 150%;
}

.tab,
.pc{
	display: none;
}

.photo{
	line-height: 0;
}

.inner{
    padding-left: 3vw;
    padding-right: 3vw;
}

.red_text{
    color: #980808;
}

.red_text02{
    color: #D90000;
}

.under_l{
    text-decoration: underline;
}

.link_text{
    color: #2F60B4;
}

.link_text:hover{
    text-decoration: underline;
}

#wrap{
    padding: 70px 0 0;
	position: relative;
    overflow: hidden;
}

#wrap #bg_cover{
	transition: all ease-in .3s;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	font-size: 0;
    opacity: 0;
    visibility: hidden;
}

#wrap.open #bg_cover{
    opacity: 1;
    visibility: visible;
	background: rgba(0,0,0,0.8);
}


/* header
   ================================================================== */
header{
	position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: rgba(255,255,255,1);
    transition: border .5s cubic-bezier(.67,.09,.06,.97),background-color .5s cubic-bezier(.67,.09,.06,.97);
}

.index header{
	background: rgba(255,255,255,0);
}

.scroll_move.index header,
.scroll_move header{
	background: rgba(255,255,255,.9);
}

header > .inner{
	padding: 0 3vw;
    box-sizing: border-box;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 30;
}

header .site_logo{
    line-height: 0;
    width: 135px;
    z-index: 1;
    transition: .3s;
}

.site_logo a{
    display: inline-block;
    line-height: 0;
}


/* Navi
   ================================================================== */
.ham_btn{
    position: fixed;
    right: 0;
    top: 0;
    font-size: 26px;
    color: #222;
    display: block;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    width: 70px;
    height: 70px;
    box-sizing: border-box;
    padding: 24px 20px;
	transition: ease-out 0.3s;
    background: rgba(255,255,255,0);
}

.ham_btn .inner{
    padding: 10px 0 0;
    width: 30px;
    height: 23px;
    display: block;
    position: relative;
    transition: ease-out 0.8s;
    box-sizing: border-box;
}

.ham_btn .inner .bar,
.ham_btn .inner .bar:before,
.ham_btn .inner .bar:after{
    transition: ease-out 0.3s;
    text-indent: -9999px;
    height: 2px;
    width: 30px;
    background: #222;
    display: block;
}

.ham_btn .inner .bar:before{
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
}

.ham_btn .inner .bar:after{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
}

.ham_btn.open{
    transform: rotate(0deg);
}

.ham_btn.open .bar{
    background: transparent !important;
}

.ham_btn.open .bar:before{
    transform: rotate(45deg);
    top: 11px;
    background: #222;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    bottom: 10px;
    background: #222;
}

body.open{
    position: fixed;
    width: 100%;
}

header::before{
    content: "";
    background: #fff;
    width: 100vw;
    height: 70px;
    position: absolute;
    top: 0;
    left: -100vw;
    z-index: 21;
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    transition-delay: .3s;
}

.open header::before{
    left: 0;
    transition-delay: .3s;
}

.index.open header .site_logo{
    opacity: 1;
    visibility: visible;
}

.slide_menu{
    padding: 90px 0 0;
    display: flex;
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: #000;
    box-sizing: border-box;
    z-index: 20;
    transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    transition-delay: .2s;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
}

.slide_menu.open{
    left: 0;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.slide_menu > .inbox{
    margin: 0 0 0;
    padding: 0 0 0;
}

.slide_nav > ul{
    padding: 0 0 0 6vw;
}

.slide_nav ul li{
    margin: 4vw 0 0;
    padding: 0;
}

.slide_nav ul li ul{
    margin-left: 6vw;
}

.slidetoggle_menu dt,
.slide_nav ul li a{
    padding: 0;
    display: inline-block;
    transition: all ease-out 0.3s;
    font-size: 4.2vw;
    letter-spacing: 0.1em;
    font-family: "Noto Serif JP";
    font-weight: 400;
    color: #fff;
    z-index: 2;
    line-height: 120%;
    box-sizing: border-box;
}

.slidetoggle_menu dt{
	padding-right: 8vw;
	position: relative;
}

.slidetoggle_menu dt::after{
	content: "";
    background-image: url("../images/common/icon_plus.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
	width: 3vw;
	height: 3vw;
	position: absolute;
	right: 0;
	top: .5vw;
    bottom: 0;
    margin: auto;
}

.slidetoggle_menu dt.active::after{
	background-image: url("../images/common/icon_minus.svg");
}

.gnav{
    display: none;
}

/* ナビ下層の出現 */
@keyframes nav_menu1 {
    0% {transform: translate(0, 0);opacity: 1;}
    100%{transform: translate(10%, 0);opacity: 0;}
}

@keyframes nav_menu {
    0% {transform: translate(-5%, 0);opacity: 0;}
    100%{transform: translate(0, 0);opacity: 1;}
}

/* footer
   ================================================================== */
footer{
    margin: 0 0 0;
	padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.footer_contact{
    position: relative;
    background-image: url("../images/webp/common/footer_bg.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer_contact::before{
    content: "";
    background: rgba(66,57,55,.45);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.footer_contact .flex{
    padding: 10vw 2vw;
    position: relative;
    z-index: 1;
}

.footer_contact h2{
    font-size: 8vw;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display';
    text-align: center;
}

.footer_contact p{
    color: #fff;
}

.footer_contact .sub{
    margin: 5vw 0 0;
    font-size: 4vw;
    font-weight: 700;
    text-align: center;
}

.footer_contact .text{
    margin: 3vw 0 0;
    text-align: center;
}

.footer_contact .contact_list{
    margin: 8vw 0 0;
}

.footer_contact .contact_list li:nth-child(2){
    margin: 8vw 0 0;
}

footer .bg{
    padding: 10vw 0 0;
    position: relative;
    border-bottom: 1px solid #eee;
}

footer .footer_nav_block{
    padding: 0 0 0;
    position: relative;
}

footer .footer_nav{
	margin: 0;
    line-height: 0;
}

footer .footer_nav ul{
	margin: 0;
}

footer .footer_nav ul li{
	margin: 0;
}

footer .footer_nav ul li ul{
	margin: 0 0 0 2vw;
}

footer .footer_nav ul li div,
footer .footer_nav ul li a{
	padding: 2vw 0 2vw 8vw;
	display: block;
	font-size: 4vw;
    font-family: "Noto Serif JP";
    line-height: 150%;
    font-weight: 700;
}

footer .footer_nav ul li ul li a::before{
    content: "∟";
    margin: 0 2vw 0 0;
	font-size: 3.2vw;
    font-family: "Noto Serif JP";
    vertical-align: bottom;
}

.footer_company{
	padding: 8vw 0 0;
}

.footer_company .site_logo{
    margin: 0;
    width: 40vw;
}

.footer_company .flex{
	margin: 7vw 0 0;
}

.footer_company .flex li,
.footer_company .flex .border_box{
	margin: 7vw 0 0;
}

.footer_company .flex .title{
	font-size: 3.5vw;
    font-family: "Noto Sans JP";
}

.footer_company .flex .text{
    margin: 2vw 0 0;
	font-size: 3.5vw;
}

.footer_company .flex .tel{
    margin: 2vw 0 0;
	font-size: 3.5vw;
}

.footer_company .flex .tel a{
	font-size: inherit;
    display: inline-block;
    font-family: inherit;
}

.footer_company .flex .border_box{
	padding: 4vw;
    border: 1px solid #eee;
    display: inline-block;
    box-sizing: border-box;
}

.footer_company .sns_list{
    margin: 4vw 0 0;
}

.sns_list{
    display: flex;
    justify-content: center;
}

.sns_list li{
    margin-right: 3vw;
    line-height: 0;
    width: 10vw;
}

.sns_list li a{
    display: inline-block;
    line-height: 0;
}

.sns_list li a img{
    width: 100%;
}

footer .bottom_box{
	padding: 10vw 3vw 6vw;
}

footer address{
	font-size: 3vw;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-align: center;
}


/* tel_box
   ================================================================== */
.tel_box a{
	display: flex;
    justify-content: center;
}

.tel_box span{
	display: block;
    line-height: 1;
    box-sizing: border-box;
    letter-spacing: 0.1em;
}

.tel_box .left{
    padding: 3vw 0 0;
    font-size: 5vw;
	font-family: "Noto Serif JP";
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.tel_box .right{
    padding: 0 0 0 2vw;
}

.tel_box .right .siz_l{
    font-size: 9vw;
	font-family: "Noto Serif JP";
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}

.tel_box .right .txt{
    margin: 2vw 0 0;
    font-size: 3.2vw;
    color: #fff;
}


/* page_scroll
   ================================================================== */
#page_scroll {
	margin: 0 0 0;
    position: relative;
    right: 0;
    bottom: 0;
}

#page_scroll a{
    margin: 0 3vw 0 auto;
    padding: 0 0 0;
    width: 20vw;
	display: flex;
    justify-content: center;
	height: auto;
	transition: ease-in 0.3s;
}

#page_scroll a span{
    padding: 0 0 6vw;
    box-sizing: border-box;
    width: 100%;
	display: block;
	font-size: 3vw;
    color: #222;
    font-weight: 700;
	text-align: left;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}

#page_scroll a span::before{
    content: "";
    background: #ccc;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
}

#page_scroll a span::after{
    content: "";
    background: #980808;
    width: 1px;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 50%;
    animation: page_scroll 1.2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}


@keyframes page_scroll {
	0% { top: 100%; }
	100% { top: -30px; }
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}


/* bg_photo
   ================================================================== */	
.bg_photo > img{
	display: none;
}

.bg_photo{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}


/* under_kv
   ================================================================== */
.under_kv{
	margin: 0 0 0;
	position: relative;
}

.under_kv .inner{
    padding-top: 5vw;
	position: relative;
}

.under_kv .inner::before{
    content: "";
    background: #F9F7F8;
    width: 100%;
    height: 15vw;
    position: absolute;
    top: 0;
    right: 80%;
}

.under_kv .z_box{
    position: relative;
    z-index: 1;
}

.under_kv h2 > span{
    display: block;
    line-height: 150%;
}

.under_kv h2 .eng{
    font-size: 10vw;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-family: 'Playfair Display';
}

.under_kv h2 .jpn{
    font-size: 3.8vw;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-family: "Noto Serif JP";
}

.under_kv .photo_box{
    margin: 8vw 0 0 -3vw;
}

.under_kv .photo_box .bg_photo{
    height: 40vw;
}

.under_kv .photo_box .text_box{
    margin: -15vw 0 0 auto;
    padding: 0 8vw;
    width: 60vw;
    height: 15vw;
    display: flex;
    align-items: center;
    background: #fff;
    box-sizing: border-box;
}

.under_kv .photo_box .text_box p{
    font-size: 5vw;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-family: "Noto Serif JP";
}


/* block_title
   ================================================================== */
.block_title{
	margin: 0 0 0;
    padding: 0 0 3vw;
	position: relative;
    font-size: 5vw;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-family: "Noto Serif JP";
}

.block_title::before{
    content: "";
    background: #980808;
    width: 15vw;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}


/* design_table
   ================================================================== */
.design_table{
	width: 100%;
	box-sizing: border-box;
}

.design_table th,
.design_table td{
    padding: 4vw;
    font-size: 3.5vw;
    letter-spacing: 0.2em;
	line-height: 180%;
	width: 100%;
	display: block;
	font-weight: normal;
	border-bottom: none;
	box-sizing: border-box;
	background: #fff;
}

.design_table th{
    background: #F6F6F6;
}

.design_table tr:nth-child(2n+2){
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.design_table tr:first-child{
	border-top: 1px solid #ddd;
}

.design_table tr:last-child{
	border-bottom: 1px solid #ddd;
}

.design_table th{
	font-weight: 700;
}

.design_table td{
	border-top: 1px solid #ddd;
}

.design_table td p + p{
    margin: 2vw 0 0;
}

.design_table td a{
    font-size: inherit;
}

.design_table td a.link_text{
    color: #2980B9;
}


/* check_list_block
   ================================================================== */
.check_list_block .ttl{
    margin: 0 0 3vw;
    padding: 4vw 2vw 4vw 4vw;
    font-size: 3.7vw;
    font-weight: 700;
    font-family: "Noto Sans JP";
    background: #F9F7F8;
}


/* check_list
   ================================================================== */
.check_list > li{
    padding: 4vw 3vw;
    border-bottom: 1px dashed #DAD3CF;
}

.check_list li > span{
    padding-left: 9vw;
    font-size: 3.7vw;
    line-height: 170%;
    font-weight: 400;
    letter-spacing: 0;
    display: block;
    position: relative;
}

.check_list li > span::before{
    content: "";
    background-image: url("../images/common/icon_check.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 4.5vw;
    height: 4.5vw;
    position: absolute;
    top: 1vw;
    left: 0;
}


/* number_list
   ================================================================== */
.number_list > li{
    margin: 8vw 0 0;
    padding: 7vw 4vw 4vw;
    border: 1px solid #eee;
    position: relative;
}

.number_list > li:first-child{
    margin: 0;
}

.number_list .num{
    font-size: 10vw;
    font-weight: 700;
    font-family: "Noto Sans JP";
    letter-spacing: 0;
    color: #ddd;
    position: absolute;
    top: -8vw;
    left: 4vw;
}

.number_list .ttl{
    margin: 0 0 2vw;
    font-size: 3.6vw;
}


/* dot_border_box
   ================================================================== */
.dot_border_box{
    margin: 10vw auto 0;
    padding: 4vw;
    border: 1px dashed #ccc;
    box-sizing: border-box;
    text-align: center;
}

.dot_border_box .siz_l{
    font-size: 4.2vw;
    font-weight: 700;
}

.dot_border_box p + p{
    margin: 3vw 0 0;
}

.dot_border_box .siz_l + .siz_l{
    margin: 0 0 0;
}

.dot_border_box .siz_ll{
    font-size: 8vw;
    font-weight: 900;
    color: inherit;
}


/* anime_btn
   ================================================================== */	
.anime_btn{
	text-align: center;
	line-height: 0;
}

.anime_btn a{
	padding: 4vw 2vw;
	min-width: 60vw;
    border: 1px solid #fff;
	position: relative;
	display: inline-block;
	font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
	box-sizing: border-box;
    text-align: center;
}

.anime_btn.color2 a{
	border-color: #423937;
    background: #423937;
	color: #fff;
}


@media screen and (min-width : 500px){

	
	p,
	a,
	li{
		font-size: 1.5vw;
	}
    
    a.over{
    	transition: all ease-out 0.3s;
    }
    	
    a.over:hover{
    	opacity: 0.6;
    }

	.sp{
		display: none;
	}

	.tab{
		display: inherit;
	}

    .inner{
        padding-left: 2vw;
        padding-right: 2vw;
    }

    #wrap{
        padding: 70px 0 0;
    }


    /* header
       ================================================================== */
    header > .inner{
    	padding: 0 2vw;
        height: 70px;
    }
    
    header .site_logo{
        width: 135px;
    }


    /* Navi
       ================================================================== */
    header::before{
        width: 50vw;
        height: 100vh;
        top: -100vh;
        left: 0;
    }
    
    .open header::before{
        top: 0;
    }

    .ham_btn.open .bar:before{
        background: #fff;
    }
    
    .ham_btn.open .bar:after{
        background: #fff;
    }

    .ham_btn.open:hover .bar:before,
    .ham_btn.open:hover .bar:after{
        background: #949494;
    }
    
    .slide_menu{
        padding: 0;
        bottom: auto;
        top: -100vh;
        left: 50vw;
        width: 50vw;
        height: 100vh;
        align-items: center;
    }
    
    .slide_menu.open{
        top: 0;
        left: 50vw;
    }

    .slide_menu > .inbox{
        margin: 0 0 0;
        padding: 0 0 2vh;
    }
    
    .slide_nav > ul{
        padding: 10vw 0 10vw 5vw;
        overflow: hidden;
        width: auto;
    }

    .slide_nav ul li{
        margin: 3vw 0 0;
        padding: 0;
    }

    .slide_nav ul li ul{
        margin-left: 2vw;
    }
    
    .slidetoggle_menu dt,
    .slide_nav ul li a{
        padding: 0;
        font-size: 1.8vw;
    }
        
    .slidetoggle_menu dt{
    	padding-right: 3vw;
    }
    
    .slidetoggle_menu dt::after{
        top: .5vw;
    	width: .9vw;
    	height: .9vw;
    }
    
    .slidetoggle_menu dt::after,
    .slidetoggle_menu dt,
    .slide_nav ul li a{
        transition: .3s;
        cursor: pointer;
    }
    
    .slidetoggle_menu dt:hover::after{
        opacity: .5;
    }
    
    .slidetoggle_menu dt:hover,
    .slide_nav ul li a:hover{
        color: #949494;
    }


    /* footer
       ================================================================== */
    footer{
        margin: 0 0 0;
    	padding: 0 0 0;
    }

    .footer_contact{
        background-image: url("../images/webp/common/footer_bg.webp");
    }
    
    .footer_contact .flex{
        padding: 0;
        height: 40.0vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer_contact h2{
        font-size: 3.5vw;
    }
    
    .footer_contact .sub{
        margin: 2.3vw 0 0;
        font-size: 2.0vw;
    }
    
    .footer_contact .text{
        margin: 1.8vw 0 0;
    }
    
    .footer_contact .contact_list{
        margin: 4.9vw 0 0;
        display: flex;
        justify-content: center;
    }
    
    .footer_contact .contact_list li:nth-child(2){
        margin: 0 0 0 6.8vw;
    }
    
    footer .bg{
        padding: 7vw 0 0;
        min-height: 36vw;
        position: relative;
        box-sizing: border-box;
    }
    
    footer .footer_nav_block{
        margin: 0 auto;
        padding: 0;
        width: 90vw;
        box-sizing: border-box;
    }
    
    footer .footer_nav{
    	margin: 0 auto;
        width: 100%;
    }
    
    footer .footer_nav ul{
        display: flex;
        justify-content: space-between;
    }
    
    footer .footer_nav ul li{
    	margin: 0;
        position: relative;
    }
    
    footer .footer_nav ul li div,
    footer .footer_nav ul li a{
    	padding: 0;
    	font-size: 1.5vw;
        transition: .3s;
    }

    footer .footer_nav ul li ul li a::before{
        margin: 0 1vw 0 0;
    	font-size: .9vw;
    }
    
    footer .footer_nav ul li.nav_menu:hover div,
    footer .footer_nav ul li a:hover{
    	color: #980808;
    }
    
    footer .footer_nav ul li ul{
        margin: 0 0 0;
        display: block;
        position: absolute;
        left: 0;
        top: 100%;
    }
    
    footer .footer_nav ul li ul li{
        margin: 2vw 0 0;
    }
    
    footer .footer_nav ul li ul li a{
        white-space: nowrap;
    }
    
    footer .footer_nav ul li ul li a span{
        padding-left: 1.8vw;
        background-size: .6vw;
    	font-size: 1.4vw;
    }

    .footer_company{
    	padding: 3.8vw 0 0;
    }
    
    .footer_company .site_logo{
        margin: 0;
        width: 18.0vw;
    }
    
    .footer_company .flex{
    	margin: 3.6vw 0 0;
        display: flex;
    }
    
    .footer_company .flex ul{
        display: flex;
    }
    
    .footer_company .flex li,
    .footer_company .flex .border_box{
    	margin: 0 4.5vw 0 0;
        min-width: 25.6vw;
    }
    
    .footer_company .flex .title{
    	font-size: 1.5vw;
    }
    
    .footer_company .flex .text{
        margin: .8vw 0 0;
    	font-size: 1.5vw;
    }
    
    .footer_company .flex .tel{
        margin: 1.0vw 0 0;
    	font-size: 1.5vw;
    }
    
    .footer_company .flex .border_box{
        margin-right: 0;
    	padding: 1.5vw 2.2vw;
    }

    .footer_company .sns_list{
        margin: 2vw 0 0;
    }
    
    .sns_list li{
        margin-right: 1vw;
        width: 4vw;
    }
    
    footer .bottom_box{
    	padding: 9vw 0 5vw;
    }
    
    footer address{
        text-align: left;
    	font-size: 1.3vw;
    }


    /* tel_box
       ================================================================== */
    .tel_box .left{
        padding: 1.0vw 0 0;
        font-size: 2.0vw;
    }
    
    .tel_box .right{
        padding: 0 0 0 1.2vw;
    }
    
    .tel_box .right .siz_l{
        font-size: 3.5vw;
    }
    
    .tel_box .right .txt{
        margin: 1.5vw 0 0;
        font-size: 1.4vw;
    }


    /* page_scroll
       ================================================================== */
    #page_scroll {
    	margin: 0 0 0;
        position: absolute;
        right: 1vw;
        bottom: 0;
        text-align: right;
        line-height: 0;
    }
    
    #page_scroll a{
        margin: 0;
        padding: 0;
        width: auto;
        display: inline-flex;
    }
    
    #page_scroll a span{
        margin-left: 0;
        padding: 0 1vw 3vw 5vw;
        width: 4.5vw;
    	font-size: 1.3vw;
        letter-spacing: 0.3em;
	    text-align: left;
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        position: relative;
        overflow: hidden;
    }

    #page_scroll a span::before{
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    #page_scroll a span::after{
        content: "";
        width: 1px;
        height: 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        animation: page_scroll 1.5s infinite cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    #page_scroll a:hover span::after{
        animation: page_scroll .6s infinite cubic-bezier(0.77, 0, 0.175, 1);
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


    /* under_kv
       ================================================================== */
    .under_kv{
    	margin: 0 0 0;
    }
    
    .under_kv .inner{
        padding-top: 5.5vw;
    }
    
    .under_kv .inner::before{
        width: 2000%;
        height: 13.0vw;
        right: 88%;
    }
    
    .under_kv h2 .eng{
        font-size: 9.0vw;
    }
    
    .under_kv h2 .jpn{
        font-size: 1.8vw;
    }
    
    .under_kv .photo_box{
        margin: 5.0vw 0 0 -2vw;
        padding: 1px 0 0;
        position: relative;
        height: 30.0vw;
    }
    
    .under_kv .photo_box .bg_photo{
        width: 100%;
        height: 30.0vw;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .under_kv .photo_box .text_box{
        margin: 0;
        padding: 0 5.0vw;
        width: 55.0vw;
        height: 10.0vw;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    .under_kv .photo_box .text_box p{
        font-size: 3.0vw;
    }


    /* block_title
       ================================================================== */
    .block_title{
        padding: 0 0 2.2vw;
        font-size: 3.0vw;
    }
    
    .block_title::before{
        width: 10.0vw;
        height: 2px;
    }


	/* design_table
	   ================================================================== */
	.design_table{
		width: 100%;
		box-sizing: border-box;
	}
	
	.design_table th,
	.design_table td{
        padding: 1.6vw 3vw;
        font-size: 1.5vw;
		width: auto;
		display: table-cell;
		vertical-align: middle;
		box-sizing: border-box;
	}
	
	.design_table th{
		width: 21%;
	}
	
	.design_table .title_top th{
		padding-top: 1.6vw;
		vertical-align: top;
	}

    .design_table td p + p{
        margin: 1.0vw 0 0;
    }

	.design_table td a:hover{
		text-decoration: underline;
	}


    /* check_list_block
       ================================================================== */
    .check_list_block{
        margin: 0 auto;
        width: 90vw;
        box-sizing: border-box;
    }

    .check_list_block .ttl{
        margin: 0 0 1.5vw;
        padding: 1.4vw 2.0vw;
        font-size: 1.8vw;
        box-sizing: border-box;
    }


    /* check_list
       ================================================================== */
    .check_list > li{
        padding: 1.5vw 1.5vw;
    }
    
    .check_list li > span{
        padding-left: 3.5vw;
        font-size: 1.7vw;
    }
    
    .check_list li > span::before{
        width: 2.0vw;
        height: 2.0vw;
        top: .5vw;
    }


    /* number_list
       ================================================================== */
    .number_list > li{
        margin: 4.0vw 0 0;
        padding: 2.6vw 2.5vw 1.8vw;
    }
    
    .number_list .num{
        font-size: 3.5vw;
        top: -3.0vw;
        left: 2.5vw;
    }

    .number_list .ttl{
        margin: 0 0 1.0vw;
        font-size: 1.6vw;
    }


    /* dot_border_box
       ================================================================== */
    .dot_border_box{
        margin: 5.5vw auto 0;
        padding: 3.2vw 2vw 3.6vw;
        width: 90vw;
        text-align: center;
    }

    .dot_border_box .siz_l{
        font-size: 2.7vw;
    }
    
    .dot_border_box p + p{
        margin: 1.5vw 0 0;
    }

    .dot_border_box .siz_ll{
        font-size: 4.0vw;
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a{
		padding: 2.2vw 2.5vw;
		min-width: 30vw;
		font-size: 1.6vw;
		transition: .5s;
	}
	
	.anime_btn a:hover{
		background: #fff;
		color: #333;
	}
	
	.anime_btn.color2 a:hover{
		color: #423937;
	}
    
    
}
@media screen and (min-width : 1040px){

	
    a{
    	text-decoration: none;
    }

	a.disabled{
		pointer-events: none;
	}
    
    .inner{
        padding-left: 20px;
        padding-right: 20px;
    	max-width: 1040px;
    	margin: auto;
		box-sizing: border-box;
    }
	
	p,
	a,
	li{
		font-size: 15px;
	}
 
	.tab{
		display: none;
	}

	.pc{
		display: inherit;
	}

    #wrap{
        padding: 125px 0 0;
    	position: relative;
    }


    /* header
       ================================================================== */    
    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    header > .inner{
    	padding: 0 150px 0 50px;
        max-width: 100%;
        display: flex;
        align-items: center;
        height: 125px;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 180px;
        position: absolute;
        top: 32px;
        left: 30px;
    }
   
	
    /* Navi
       ================================================================== */
    .ham_btn{
        position: fixed;
        right: 20px;
        top: 29px;
        padding: 24px 14px
    }
    
    .ham_btn .inner{
        width: 33px;
    }

    .ham_btn .inner .bar,
    .ham_btn .inner .bar:before,
    .ham_btn .inner .bar:after{
        height: 2px;
        width: 33px;
    }

    .ham_btn .inner .bar:before{
        top: 3px;
    }
    
    .ham_btn .inner .bar:after{
        bottom: 4px;
    }

    .ham_btn.open .bar:before{
        top: 11px;
    }
    
    .ham_btn.open .bar:after{
        bottom: 10px;
    }
    
    header::after{
        width: 224px;
        height: 195px;
        top: 43vh;
        left: 13vw;
    }
    
    .slide_nav > ul{
        padding: 50px 0 50px 116px;
        overflow: hidden;
        width: auto;
    }

    .slide_nav ul li{
        margin: 20px 0 0;
    }

    .slide_nav ul li ul{
        margin-left: 25px;
    }
    
    .slidetoggle_menu dt,
    .slide_nav ul li a{
        font-size: 18px;
    }
        
    .slidetoggle_menu dt{
    	padding-right: 30px;
    }
    
    .slidetoggle_menu dt::after{
        top: 4px;
    	width: 9px;
    	height: 9px;
    }
    
    .gnav{
        margin: 0 0 0 auto;
        padding: 0;
        width: auto;
        box-sizing: border-box;
        position: relative;
        right: auto;
        overflow: inherit;
        background: none;
        display: flex;
        align-items: center;
    }
    
    .gnav > ul{
    	margin: auto;
        padding: 0 0 0;
    	font-size: 0;
        overflow: inherit;
    }
    
    .gnav > ul > li{
        margin: 0 0 0 50px;
        padding: 15px 0;
    	text-align: center;
		width: auto;
		display: inline-block;
        transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    }
    
    .open .gnav > ul > li:not(.inv){
        opacity: 0;
    }
    
    .gnav > ul > li.inv{
        margin-top: 25px;
        padding: 0 0 25px;
    }
    
    .gnav > ul > li.nav_menu div,
    .gnav > ul > li > a{
    	padding: 2px 0;
    	display: flex;
        align-items: center;
        justify-content: center;
    	text-align: center;
        line-height: 1;
        border: none;
        height: auto;
        position: relative;
        overflow: hidden;
    	font-size: 15px;
        font-family: "Noto Serif JP";
        letter-spacing: 0.1em;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
    }
    
    .gnav > ul > li.inv > div{
        padding: 9px 13px;
        border: 1px solid #fff;
        background: #fff;
        border-radius: 50px;
    }
    
    .gnav > ul > li.inv > div > span{
        letter-spacing: 0.05em;
    }
    
    .gnav > ul > li.nav_menu{
    	display: inline-block;
		position: relative;
		cursor: context-menu;
    }
    
    .gnav > ul > li.nav_menu:hover div,
    .gnav > ul > li > a:hover{
    	color: #980808;
    }
    
    .gnav > ul > li > ul{
    	position: absolute;
		min-width: 250px;
		transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
		top: 100%;
		left: -30px;
		opacity: 0;
		visibility: hidden;
		z-index: 10;
    }
    
    .gnav > ul > li.nav_menu:hover > ul{
		opacity: 1;
		visibility: visible;
    }
    
    .gnav > ul > li > ul > li{
        margin: 0 0 0;
        border-bottom: 1px solid #fff;
		transform: translate(0,0);
        transform-origin: right center;
    	animation: nav_menu1 .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
        animation-fill-mode: forwards;
    }
    
    .gnav > ul > li.nav_menu:hover > ul > li{
        transform: translate(0,0);
    	animation: nav_menu .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
        animation-fill-mode: forwards;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(2){
        animation-delay: .05s;
        transition-delay: .05s;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(3){
        animation-delay: .1s;
        transition-delay: .1s;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(4){
        animation-delay: .15s;
        transition-delay: .15s;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(5){
        animation-delay: .2s;
        transition-delay: .2s;
    }
    
    .gnav > ul > li > ul > li a{
		padding: 0 35px 0 25px;
    	display: flex;
		white-space: nowrap;
		height: 60px;
		align-items: center;
    	font-size: 15px;
		font-weight: 700;
        font-family: "Noto Serif JP";
		color: #fff;
		letter-spacing: 0;
		background: #423937;
		transition: .3s;
        position: relative;
    }
    
    .gnav > ul > li > ul > li a::after{
		content: "";
        background: #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 100%;
        left: 0;
        transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
        transform: scaleX(0);
    }
    
    .gnav > ul > li > ul > li:last-child a{
		border-bottom: none;
    }
    
    .gnav > ul > li > ul > li a:hover{
		background: #980808;
    }
    
    .gnav > ul > li > ul > li a:hover::after{
		transform: scaleX(1);
    }
    
    .ham_btn{
        position: fixed;
        right: 40px;
        top: 29px;
    }

    .ham_btn .inner{
        transition: ease-out 0.8s;
    }
    
    .ham_btn:hover .inner .bar{
        width: 20px;
    }
    
    .ham_btn:hover .inner .bar:after{
        width: 10px;
    }
    
    .ham_btn.open .inner .bar,
    .ham_btn.open .inner .bar:after{
        width: 33px !important;
    }


    /* footer
       ================================================================== */
    footer{
        margin: 0 0 0;
    	padding: 0 0 0;
    }

    .footer_contact{
        background-image: url("../images/webp/common/footer_bg.webp");
    }
    
    .footer_contact .flex{
        padding: 0;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer_contact h2{
        font-size: 35px;
    }
    
    .footer_contact .sub{
        margin: 23px 0 0;
        font-size: 20px;
    }
    
    .footer_contact .text{
        margin: 18px 0 0;
    }
    
    .footer_contact .contact_list{
        margin: 49px 0 0;
        display: flex;
        justify-content: center;
    }
    
    .footer_contact .contact_list li:nth-child(2){
        margin: 0 0 0 68px;
    }
    
    footer .bg{
        padding: 70px 0 0;
        min-height: 360px;
        box-sizing: border-box;
        position: relative;
    }
    
    footer .footer_nav_block{
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    footer .footer_nav{
    	margin: 0 auto;
        width: 900px;
    }
    
    footer .footer_nav ul li{
    	margin: 0;
    }
    
    footer .footer_nav ul li div,
    footer .footer_nav ul li a{
    	font-size: 15px;
    }

    footer .footer_nav ul li ul li a::before{
        margin: 0 10px 0 0;
    	font-size: 9px;
    }
    
    footer .footer_nav ul li ul{
        margin: 0 0 0;
    }
    
    footer .footer_nav ul li ul li{
        margin: 20px 0 0;
    }
    
    footer .footer_nav ul li ul li a span{
        padding-left: 18px;
        background-size: 6px;
    	font-size: 14px;
    }
    
    footer .footer_nav > ul .nav_menu{
    	position: relative;
    }
    
    footer .footer_nav > ul > li > ul{
    	position: absolute;
		min-width: 200px;
		transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
		top: 100%;
		left: 0;
		z-index: 10;
    }

    .footer_company{
    	padding: 38px 0 0;
    }
    
    .footer_company .site_logo{
        margin: 0;
        width: 180px;
    }
    
    .footer_company .flex{
    	margin: 36px 0 0;
        display: flex;
    }
    
    .footer_company .flex ul{
        display: flex;
    }
    
    .footer_company .flex li,
    .footer_company .flex .border_box{
    	margin: 0 45px 0 0;
        min-width: 256px;
    }
    
    .footer_company .flex .title{
    	font-size: 15px;
    }
    
    .footer_company .flex .text{
        margin: 8px 0 0;
    	font-size: 15px;
    }
    
    .footer_company .flex .tel{
        margin: 10px 0 0;
    	font-size: 15px;
    }
    
    .footer_company .flex .border_box{
        margin-right: 0;
    	padding: 15px 22px;
    }

    .footer_company .sns_list{
        margin: 20px 0 0;
    }
    
    .sns_list li{
        margin-right: 10px;
        width: 40px;
    }
    
    footer .bottom_box{
    	padding: 80px 0 50px;
    }
    
    footer address{
    	font-size: 13px;
    }


    /* tel_box
       ================================================================== */
    .tel_box .left{
        padding: 10px 0 0;
        font-size: 20px;
    }
    
    .tel_box .right{
        padding: 0 0 0 12px;
    }
    
    .tel_box .right .siz_l{
        font-size: 35px;
    }
    
    .tel_box .right .txt{
        margin: 10px 0 0;
        font-size: 14px;
    }


    /* page_scroll
       ================================================================== */
    #page_scroll {
        position: absolute;
    	margin: 0 0 0;
        right: 10px;
        bottom: 0;
    }
    
    #page_scroll a span{
        margin-left: 0;
        padding: 0 10px 0 20px;
        width: 50px;
        height: 140px;
    	font-size: 13px;
        letter-spacing: 0.1em;
        text-align: left;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


    /* under_kv
       ================================================================== */
    .under_kv{
    	margin: 0 0 0;
    }
    
    .under_kv .inner{
        padding-top: 55px;
    }
    
    .under_kv .inner::before{
        width: 2000%;
        height: 120px;
        right: 88%;
    }
    
    .under_kv h2 .eng{
        font-size: 90px;
    }
    
    .under_kv h2 .jpn{
        font-size: 18px;
    }
    
    .under_kv .photo_box{
        margin: 50px 0 0;
        padding: 1px 0 0;
        position: relative;
        height: 300px;
    }
    
    .under_kv .photo_box .bg_photo{
        width: 100vw;
        max-width: 1183px;
        height: 300px;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .under_kv .photo_box .text_box{
        margin: 0;
        padding: 0 50px;
        width: 550px;
        height: 100px;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    .under_kv .photo_box .text_box p{
        font-size: 30px;
    }


    /* block_title
       ================================================================== */
    .block_title{
        padding: 0 0 22px;
        font-size: 30px;
    }
    
    .block_title::before{
        width: 100px;
        height: 2px;
    }
    
    
	/* design_table
	   ================================================================== */
	.design_table th,
	.design_table td{
		padding: 16px 30px;
        font-size: 15px;
	}
	
	.design_table th{
		width: 21%;
	}
	
	.design_table td{
		
	}
	
	.design_table .title_top th{
		padding-top: 16px;
	}

    .design_table td p + p{
        margin: 10px 0 0;
    }


    /* check_list_block
       ================================================================== */
    .check_list_block{
        margin: 0 auto;
        width: 900px;
    }

    .check_list_block .ttl{
        margin: 0 0 15px;
        padding: 14px 20px;
        font-size: 18px;
    }


    /* check_list
       ================================================================== */
    .check_list > li{
        padding: 15px 15px;
    }
    
    .check_list li > span{
        padding-left: 35px;
        font-size: 17px;
    }
    
    .check_list li > span::before{
        width: 20px;
        height: 20px;
        top: 3px;
    }


    /* number_list
       ================================================================== */
    .number_list > li{
        margin: 40px 0 0;
        padding: 26px 25px 18px;
    }
    
    .number_list .num{
        font-size: 35px;
        top: -30px;
        left: 25px;
    }

    .number_list .ttl{
        margin: 0 0 10px;
        font-size: 16px;
    }


    /* dot_border_box
       ================================================================== */
    .dot_border_box{
        margin: 55px auto 0;
        padding: 32px 20px 36px;
        width: 900px;
    }

    .dot_border_box .siz_l{
        font-size: 27px;
    }
    
    .dot_border_box p + p{
        margin: 15px 0 0;
    }

    .dot_border_box .siz_ll{
        font-size: 40px;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
		padding: 0 25px;
		min-width: 300px;
		position: relative;
        transition: .5s;
        box-sizing: border-box;
		height: 60px;
		z-index: 1;
		line-height: 56px;
		overflow: hidden;
		font-size: 16px;
	}
	
	
}
@media screen and (min-width : 1025px){

	
	/* attachment
	   ================================================================== */
	.attachment{
		background-attachment: fixed;
	}

	
}
