@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;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

.serif{
	font-family: 'Noto Serif JP';
}

.oswald{
	font-family: 'Oswald';
}

.playfair{
	font-family: 'Playfair Display', serif;
}

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;
}

.grecaptcha-badge{
	z-index: 10;
}

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.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
h7{
	line-height: 150%;
}

.tab,
.pc{
	display: none;
}

.photo{
	line-height: 0;
}

.inner{
    padding-left: 3vw;
    padding-right: 3vw;
}

.white{
    color: #fff;
}

.under_l{
    text-decoration: underline;
}

.link_text{
    color: #2F60B4;
}

.link_text:hover{
    text-decoration: underline;
}

#wrap{
    padding: 0 0 0;
	position: relative;
}


/* header
   ================================================================== */
header{
	position: absolute;
    z-index: 10;
    width: 100%;
    background: rgba(255,255,255,0);
    transition: border .5s cubic-bezier(.67,.09,.06,.97),background-color .5s cubic-bezier(.67,.09,.06,.97);
}

header > .inner{
	padding: 0 3vw;
    box-sizing: border-box;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}

header .site_logo{
    line-height: 0;
    width: 160px;
    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;
    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(0,149,218,0);
}

.ham_btn.open,
.scroll_move .ham_btn{
    background: rgba(0,149,218,.9);
}

.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: #fff;
    display: block;
}

.ham_btn .inner .bar:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

.ham_btn .inner .bar:after{
    content: "";
    position: absolute;
    bottom: 1px;
    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;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    bottom: 10px;
}

body.open{
    position: fixed;
    width: 100%;
}

header::before{
    content: "";
    background: #fff;
    width: 100%;
    height: 70px;
    position: fixed;
    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;
}
    
header::after{
    content: "";
    background-image: url("../images/common/logo_b.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 160px;
    height: 54px;
    position: fixed;
    top: 7px;
    left: 10px;
    z-index: 50;
    opacity: 0;
    transform: scale(1,0);
    animation: navilogo_off 0s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
}

.open header::after{
    animation: navilogo_on .8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
    animation-delay: .5s;
}

.slide_menu{
    padding: 70px 0 0;
    display: flex;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.9);
    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{
    right: 0;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.slide_menu > .inbox{
    margin: 0 0 0;
    padding: 0 0 0;
}

.slide_menu .slide_nav{
    padding: 0 0 70px;
}

.slide_nav > ul{
    padding: 10vw 0 0 10vw;
    overflow: hidden;
    width: 100%;
}    

.slide_nav > ul > li{
    margin: 6vw 0 0;
    padding: 0 1vw;
}

.slide_nav > ul > li > div{
    overflow: hidden;
}

.slide_nav > ul > li > div span,
.slide_nav > ul > li a{
    padding: 0;
    display: inline-block;
    transition: all ease-out 0.3s;
    z-index: 2;
    box-sizing: border-box;
    font-size: 4.5vw;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #fff;
    line-height: 120%;
}

.slide_nav .nav_menu ul{
    margin: 0 0 0 2vw;
}

.slide_nav .nav_menu ul li{
    margin: 4vw 0 0;
}

.slide_nav > ul > li > div span,
.slide_nav .nav_menu ul li a{
    display: inline-block;
    z-index: 2;
    box-sizing: border-box;
}

.slide_nav .nav_menu ul li a{
    font-weight: 400;
    color: #A6ADB6;
}

.slide_nav .nav_menu ul li a:before{
    content: "ー";
    margin: 0 2vw 0 0;
    color: #A6ADB6;
    font-family: "Noto Sans JP";
    vertical-align: bottom;
}

.slide_nav li > div span,
.slide_nav li{
    overflow: hidden;
    line-height: 1;
}

.slide_nav .nav_menu ul li a,
.slide_nav > ul > li > div span,
.slide_nav > ul > li > a{
    transition: transform .3s cubic-bezier(1, 0.01, 0.67, 0.56);
    transform: translateY(100px);
}

.slide_menu.open .slide_nav .nav_menu ul li a,
.slide_menu.open .slide_nav > ul > li > div span,
.slide_menu.open .slide_nav > ul > li > a{
    transform: translateY(0);
    transition: transform 1s cubic-bezier(1, 0.01, 0.67, 0.56),color .3s,background .3s;
}

/* inv */
.gnav > ul > li.inv,
.slide_nav > ul > li.inv{
    padding: 0;
}

.slide_nav > ul > li.inv + li.inv{
    margin-top: 4vw;
}

.gnav > ul > li.inv a,
.slide_nav > ul > li.inv a{
	width: 40vw;
	background: #CA124E;
    border: 1px solid #CA124E;
	position: relative;
    text-align: center;
    border-radius: 50px;
	padding: 2vw 2vw;
	display: flex;
    justify-content: center;
    align-items: center;
	box-sizing: border-box;
	font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
}

.gnav > ul > li.inv.color2 a,
.slide_nav > ul > li.inv.color2 a{
	background: #0062B2;
	border-color: #0062B2;
}

.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;}
}

/* ナビ時のロゴ */
@keyframes navilogo_off {
    0% {
        transform: scale(1,1);
        opacity: 1;
    }
    50% {
        transform: scale(1,1);
        opacity: 0;
    }
    100% {
        transform: scale(1,0);
        opacity: 0;
    }
}

@keyframes navilogo_on {
    0% {
        transform: scale(1,0);
        opacity: 0;
    }
    50%{
        transform: scale(1,1);
        opacity: 0;
    }
    100% {
        transform: scale(1,1);
        opacity: 1;
    }
}


/* footer
   ================================================================== */
footer{
    margin: 0 0 0;
	padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.cv{
    padding: 15vw 0;
    border-top: 1px solid #eee;
}

.cv .logo{
    margin: 0 0 0;
    width: 50vw;
    line-height: 0;
}

.cv .block_title{
    margin: 8vw 0 0;
}

.cv .tel_style{
    margin: 4vw 0 0;
}

.cv .circle_btn{
    margin: 8vw 0 0;
}

.footer_bg{
    height: 35vw;
    background-image: url("/wp-content/themes/building/img/footer_bg.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

footer .bg{
    padding: 10vw 0 0;
    position: relative;
    background: #212A37;
}

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;
	flex-shrink: 0;
}

footer .footer_nav ul li div,
footer .footer_nav ul li a{
	padding: 2vw 0 2vw 8vw;
	display: block;
	font-size: 4vw;
    line-height: 150%;
    font-weight: 700;
    color: #fff;
}

footer .footer_nav ul li ul li a{
    font-weight: 400;
    color: #A6ADB6;
}

footer .footer_nav ul li ul li a::before{
    content: "ー";
    margin: 0 2vw 0 0;
	font-size: 3.2vw;
    color: #A6ADB6;
    font-family: "Noto Sans JP";
    vertical-align: bottom;
}

.footer_company{
    margin: 8vw 0 0;
	padding: 8vw 0;
    border-top: 1px solid #424953;
    position: relative;
}

.footer_company .site_logo{
    margin: 0;
	width: 50vw;
    line-height: 0;
}

.footer_company .text_box{
	padding: 8vw 0 0;
}

.footer_company .text_box h1{
	font-size: 4.5vw;
    color: #fff;
}

.footer_company .text_box p{
    margin: 1vw 0 0;
	font-size: 3.5vw;
    color: #fff;
}

.footer_company .text_box p a{
	font-size: inherit;
    color: inherit;
}

.footer_company .sns_list{
    margin: 3vw 0 0;
}

footer .bottom_box .inner{
	padding: 10vw 3vw;
}

footer address{
	font-size: 3vw;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.1em;
}


/* page_scroll
   ================================================================== */
#page_scroll {
	margin: 0 0 0;
    position: absolute;
    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;
    font-weight: 700;
    color: #fff;
	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: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
}

#page_scroll a span::after{
    content: "";
    background: #2980B9;
    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;
}


/* tel_style
   ================================================================== */
.tel_style a{
    display: flex;
    align-items: baseline;
}

.tel_style a span{
    display: block;
    line-height: 150%;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0095DA;
    font-family: 'Oswald';
}

.tel_style .siz_s{
    font-size: 6vw;
}

.tel_style .siz_l{
    padding: 0 0 0 1vw;
    font-size: 9vw;
}

.tel_style p{
    margin: 0 0 0;
    font-size: 3.4vw;
}


/* block_title
   ================================================================== */
.block_title{
    margin: 0 0 0;
}

.block_title.border{
    padding: 6vw 0 0;
    border-top: 1px solid #ddd;
    position: relative;
}

.block_title.border::before{
    content: "";
    width: 25vw;
    height: 1px;
    background: #0095DA;
    position: absolute;
    top: -1px;
    left: 0;
}

.block_title > span{
    display: block;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0095DA;
}

.block_title.white > span{
    color: #fff;
}

.block_title .eng{
    font-size: 7vw;
    font-family: 'Oswald';
}

.block_title .jpn{
    margin: 4vw 0 0;
    font-size: 3.6vw;
}
    
.block_title .jpn_only{
    font-size: 6vw;
    line-height: 150%;
    font-weight: 900;
}


/* com_table
   ================================================================== */
.com_table{
    width: 100%;
    box-sizing: border-box;
}

.com_table th,
.com_table td{
    padding: 4vw 3vw;
    font-size: 3.5vw;
    line-height: 150%;
    letter-spacing: 0.1em;
    font-weight: 400;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.com_table th{
    padding-left: 2vw;
    padding-right: 2vw;
    width: 35%;
    text-align: center;
    vertical-align: middle;
    background: #F9F9F9;
}


/* common_table
   ================================================================== */	
.common_table{
	margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.common_table th,
.common_table td{
	padding: 3vw 4vw;
    font-size: 3.5vw;
    line-height: 170%;
    letter-spacing: 0.1em;
    font-family: "Noto Sans JP";
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.common_table th{
    border-top: 1px solid #ddd;
	background: #F6F6F6;
    font-weight: 700;
}

.common_table td{
	background: #fff;
    overflow: hidden;
}

.common_table td a{
	display: inline-block;
    font-size: inherit;
    line-height: inherit;
}

.common_table td .box + .box{
	margin: 3vw 0 0;
}


/* view_more_btn
   ================================================================== */	
.view_more_btn .inlink,
.view_more_btn a{
    padding: 0 0 0 8vw;
	display: inline-block;
    overflow: hidden;
}

.view_more_btn .inlink span,
.view_more_btn a span{
	padding: 0 0 0 2vw;
    font-size: 4vw;
    line-height: 1;
    color: #222;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.view_more_btn .inlink span::before,
.view_more_btn a span::before{
	content: "";
    background: #707070;
    width: 2000%;
    height: 1px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 100%;
}

.view_more_btn.white span{
    color: #fff;
}

.view_more_btn.white span::before{
    background: #fff;
}


/* pdf_btn
   ================================================================== */	
.pdf_btn{
	text-align: center;
	line-height: 0;
}

.pdf_btn a{
    width: 100%;
    height: 17vw;
    font-size: 3.6vw;
    font-weight: 500;
	display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D90000;
    position: relative;
    box-sizing: border-box;
}

.pdf_btn a::before{
    content: "";
    background-image: url("/wp-content/themes/building/img/icon_pdf.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 6vw;
    height: 8vw;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5vw;
}


/* circle_btn
   ================================================================== */	
.circle_btn a{
    min-width: 50vw;
    display: inline-block;
}

.circle_btn .hv_box{
    width: 16vw;
    height: 16vw;
	position: relative;
    display: flex;
    align-items: center;
}

.circle_btn .hv_box::before{
	content: "";
    width: 1.2vw;
    height: 1.2vw;
    background: #0095DA;
    border-radius: 100%;
    position: absolute;
    margin: auto;
    top: calc(50% - .6vw);
    left: calc(50% - 0vw);
}

.circle_btn .circle{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.circle_btn .circle::before{
	content: "";
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 2px solid #0095DA;
    border-radius: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.circle_btn .circle::after{
	content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 80%;
}

.circle_btn .txt{
    margin: 0 0 0 90%;
    font-size: 3.5vw;
    letter-spacing: 0.1em;
    color: #0095DA;
    white-space: nowrap;
    font-weight: 500;
	display: block;
    position: relative;
    z-index: 1;
}

.circle_btn.white .hv_box::before{
    background: #fff;
}

.circle_btn.white .circle::before{
	border-color: #fff;
}

.circle_btn.bg1 .circle::after{
    background: #212A37;
}

.circle_btn.bg2 .circle::after{
    background: #0D131C;
}

.circle_btn.white .txt{
    color: #fff;
}


/* anime_btn
   ================================================================== */	
.anime_btn{
	text-align: center;
	line-height: 0;
}

.anime_btn a{
	padding: 4vw 2vw;
	width: 70vw;
	background: #0095DA;
	position: relative;
	display: inline-block;
    text-align: center;
	font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
}


/* check_list
   ================================================================== */
.check_list > li{
    padding: 4vw 0 4vw 3vw;
    border-bottom: 1px dashed #8290A4;
}

.check_list li > span{
    padding-left: 9vw;
    font-size: 3.8vw;
    line-height: 170%;
    font-weight: 500;
    color: #000;
    display: block;
    position: relative;
}

.check_list.white li > span{
    color: #fff;
}

.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: 5vw;
    height: 5vw;
    position: absolute;
    top: 1vw;
    left: 0;
}

.check_list.circle li > span::before{
    background-image: url("../images/common/icon_circle.svg");
}


@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: 0 0 0;
    }


    /* header
       ================================================================== */
    header > .inner{
    	padding: 0 2vw;
        height: 70px;
        z-index: 1;
    }
    
    header .site_logo{
        width: 170px;
    }


    /* Navi
       ================================================================== */
    header::before{
        width: 50vw;
        height: 100vh;
        top: -100vh;
        left: 0;
    }
    
    .open header::before{
        top: 0;
    }
    
    header::after{
        content: "";
        background-image: url("img/logo_b.svg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100%;
        width: 22.4vw;
        height: 20vw;
        position: fixed;
        top: calc(50% - 10vw);
        left: calc((50%) - 25% - 11.2vw);
        z-index: 50;
        opacity: 0;
        transform: scale(1,0);
        animation: navilogo_off 0s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
    }
    
    .open header::after{
        animation: navilogo_on .8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
        animation-delay: .5s;
    }

    .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: #FFFFBF;
    }
    
    .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_menu .slide_nav{
        padding: 0 0 0;
    }
    
    .slide_nav > ul{
        padding-top: 0;
        overflow: hidden;
        width: auto;
    }

    .slide_nav > ul > li{
        margin: 1vw 0 0;
        padding: 0 0 1px;
    }

    .slide_nav .nav_menu > div > span,
    .slide_nav .nav_menu ul li a,
    .slide_nav > ul > li > a{
        padding: 1vw 0;
        font-size: 1.8vw;
        transition: .5s;
        position: relative;
    }

    .slide_nav .nav_menu ul{
        margin: 0 0 0;
    }
    
    .slide_nav .nav_menu ul li{
        margin: 0 0 0;
        padding: 0 0 1px;
    }

    .slide_nav .nav_menu ul li a::before{
        margin: 0 1vw 0 0;
        color: inherit;
    }

    .slide_nav .nav_menu ul li a:hover{
        color: #fff;
    }
    
    .slide_nav .nav_menu > div > span::after,
    .slide_nav .nav_menu li:not(.inv) a::after,
    .slide_nav > ul > li:not(.inv) > a::after{
        content: "";
        background: #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        transform: scale(0);
        transition: transform 0.3s ease;
        transform-origin: right center;
    }
    
    .slide_nav .nav_menu:hover > div > span::after,
    .slide_nav .nav_menu li:not(.inv) a:hover::after,
    .slide_nav > ul > li:not(.inv) > a:hover::after{
        transform: scale(1);
        transform-origin: left center;
    }

    /* inv */
    .slide_nav > ul > li.inv{
        margin-right: 1vw;
        display: inline-block;
    }
    
    .slide_nav > ul > li.inv + li.inv{
        margin-top: 4vw;
    }
    
    .gnav > ul > li.inv a,
    .slide_nav > ul > li.inv a{
    	width: 12vw;
        height: 3.5vw;
    	padding: 0;
    	font-size: 1.4vw;
    }
    
    .gnav > ul > li.inv a{
        transition: color .3s,background .3s;
        opacity: 1 !important;
    }

    .gnav > ul > li.inv a:hover,
    .slide_nav > ul > li.inv a:hover{
    	color: #CA124E !important;
        background: #fff;
    }
    
    .gnav > ul > li.inv.color2 a:hover,
    .slide_nav > ul > li.inv.color2 a:hover{
    	color: #0062B2 !important;
    }


    /* footer
       ================================================================== */
    footer{
        margin: 0 0 0;
    	padding: 0 0 0;
    }

    .cv{
        padding: 7.2vw 0;
    }
    
    .cv .logo{
        margin: 0 0 0;
        width: 19.5vw;
    }
    
    .cv .block_title{
        margin: 3.5vw 0 0;
    }
    
    .cv .tel_style{
        margin: 2.0vw 0 0;
    }
    
    .cv .circle_btn{
        margin: 2.5vw 0 0;
    }

    .footer_bg{
        height: 40vw;
    }
    
    footer .bg{
        padding: 7vw 0 0;
    }
    
    footer .footer_nav_block{
        padding: 0 0 0;
    }
    
    footer .footer_nav{
    	margin: 0 auto;
        width: 90%;
    }
    
    footer .footer_nav ul{
        display: flex;
        justify-content: space-between;
    }
    
    footer .footer_nav ul li{
    	margin: 0;
    }
    
    footer .footer_nav ul li div,
    footer .footer_nav ul li a{
    	padding: .5vw 0;
    	font-size: 1.5vw;
        position: relative;
    }
    
    footer .footer_nav ul li div::after,
    footer .footer_nav ul li a::after{
        content: "";
        background: #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        transform: scale(0);
        transition: transform 0.3s ease;
        transform-origin: right center;
    }
    
    footer .footer_nav ul li.nav_menu:hover div::after,
    footer .footer_nav ul li a:hover::after{
        transform: scale(1);
        transform-origin: left center;
    }
    
    footer .footer_nav ul li ul{
        margin: 1vw 0 0;
        display: block;
    }
    
    footer .footer_nav ul li ul li{
        margin: 0 0 0;
    }
    
    footer .footer_nav ul li ul li a{
        padding-left: 0;
        transition: .3s;
    	font-size: 1.4vw;
    }

    footer .footer_nav ul li ul li a::before{
        margin: 0 1vw 0 0;
    	font-size: 1.4vw;
        color: inherit;
    }

    footer .footer_nav ul li ul li a:hover{
        color: #fff;
    }
    
    .footer_company{
        margin: 6.5vw 0 0;
    	padding: 6vw 0 7.5vw;
    }
    
    .footer_company .site_logo{
    	width: 19.5vw;
    }
    
    .footer_company .text_box{
    	padding: 1.0vw 0 0;
    }
    
    .footer_company .text_box p{
        margin: 1.5vw 0 0;
    	font-size: 1.4vw;
    }
    
    footer .bottom_box .inner{
    	padding: 4vw 3vw;
    }
    
    footer address{
    	font-size: 1.2vw;
    }


    /* page_scroll
       ================================================================== */
    #page_scroll {
    	margin: 0 0 0;
        position: absolute;
        right: 2vw;
        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;
    }


    /* tel_style
       ================================================================== */
    .tel_style a{
        display: inline-flex;
    }
    
    .tel_style .siz_s{
        font-size: 2.5vw;
    }
    
    .tel_style .siz_l{
        padding: 0 0 0 .8vw;
        font-size: 3.8vw;
    }

    .tel_style p{
        margin: 0 0 0;
        font-size: 1.4vw;
    }
    
    
    /* block_title
       ================================================================== */
    .block_title.border{
        padding: 4.5vw 0 0;
    }
    
    .block_title.border.only{
        padding: 3.5vw 0 0;
    }
    
    .block_title.border::before{
        width: 20.0vw;
    }
    
    .block_title .eng{
        font-size: 4vw;
    }
    
    .block_title .jpn{
        margin: 1.3vw 0 0;
        font-size: 1.5vw;
    }
    
    .block_title .jpn_only{
        font-size: 2.8vw;
        line-height: 5.5vw;
    }


    /* com_table
       ================================================================== */
    .com_table th,
    .com_table td{
        padding: 1.1vw 3.0vw;
        font-size: 1.5vw;
        line-height: 2.7vw;
    }
    
    .com_table th{
        padding-left: 1.0vw;
        padding-right: 1.0vw;
        width: 20.0vw;
    }
   

    /* common_table
       ================================================================== */	
    .common_table{
        border-bottom: none;
    }
    
    .common_table th,
    .common_table td{
    	padding: 1.5vw 3.0vw;
        font-size: 1.5vw;
        line-height: 3.0vw;
        width: auto;
        display: table-cell;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    
    .common_table th{
        width: 21.0vw;
    }

    .common_table td .box + .box{
    	margin: 1.5vw 0 0;
    }


    /* view_more_btn
       ================================================================== */	
    .view_more_btn .inlink,
    .view_more_btn a{
        padding: 0 0 0 4.0vw;
    }
    
    .view_more_btn .inlink span,
    .view_more_btn a span{
    	padding: 0 0 0 2.0vw;
        font-size: 1.3vw;
    }
    
    .view_more_btn .inlink span::after,
    .view_more_btn a span::after{
        content: "";
        background: #0095DA;
        width: 4.0vw;
        height: 1px;
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        right: 100%;
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 1s ease;
    }
    
    a:hover .view_more_btn .inlink span::after,
    .view_more_btn a:hover span::after{
        transform: scaleX(1);
    }
    
    .view_more_btn .inlink span::after,
    .view_more_btn a span::after{
        background: #3498DB;
    }


    /* pdf_btn
       ================================================================== */	
    .pdf_btn a{
        width: 40.0vw;
        height: 8.0vw;
        font-size: 1.6vw;
        transition: .3s ease
    }
    
    .pdf_btn a:hover{
        border-width: 3px;
        color: #D90000;
    }
    
    .pdf_btn a::before{
        width: 2.2vw;
        height: 2.9vw;
        right: 2.7vw;
    }


    /* circle_btn
       ================================================================== */	
    .circle_btn a{
        padding: 1vw 0;
        min-width: 20vw;
        box-sizing: border-box;
    }
    
    .circle_btn .hv_box{
        width: 9.0vw;
        height: 9.0vw;
    }
    
    .circle_btn .hv_box::before{
        width: .6vw;
        height: .6vw;
        top: calc(50% - .3vw);
        left: calc(50% - 0vw);
    }
    
    .circle_btn .circle::before{
        width: 9.0vw;
        height: 9.0vw;
        transition: .3s ease;
        transform-origin: center center;
    }
    
    .circle_btn .circle::after{
        left: 80%;
        transition: .3s ease;
        transform-origin: left center;
    }
    
    .circle_btn .txt{
        margin: 0 0 0 90%;
        font-size: 1.4vw;
        transition: .3s ease;
    }

    .circle_btn a:hover .circle::before{
        transform: scale(1.1);
    }

    .circle_btn a:hover .circle::after{
        transform: scale(.4) translateX(20px);
    }

    .circle_btn a:hover .txt{
        transform: translateX(10px);
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a{
	    padding: 0;
	    width: 20vw;
        height: 6vw;
	    background: #0095DA;
	    border: 1px solid #0095DA;
	    display: inline-flex;
        justify-content: center;
        align-items: center;
	    font-size: 1.6vw;
        transition: .3s ease;
	}
    
	.anime_btn a:hover{
	    color: #0095DA;
	    background: #fff;
	}
    

    /* check_list
       ================================================================== */
    .check_list > li{
        padding: 1.5vw 0 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;
    }

    
}
@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: 0 0 0;
    	position: relative;
    }


    /* header
       ================================================================== */    
    header{
        z-index: 10;
    }

    header > .inner{
    	padding: 0 110px 0 28px;
        max-width: 100%;
        display: flex;
        align-items: center;
        height: 100px;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 243px;
        position: absolute;
        top: 32px;
        left: 30px;
    }
   
	
    /* Navi
       ================================================================== */
    .ham_btn{
        padding: 37px 30px;
        position: fixed;
        right: 0;
        top: 0;
        width: 100px;
        height: 100px;
    }

    .ham_btn.open:hover{
        background: rgba(0,149,218,.3);
    }

    .ham_btn .inner{
        padding: 13px 0 0;
        width: 40px;
        height: 27px;
        transition: ease-out 0.8s;
    }
    
    .ham_btn .inner .bar, .ham_btn .inner .bar:before, .ham_btn .inner .bar:after{
        width: 40px;
    }
    
    .ham_btn .inner .bar:before{
        top: 0;
    }
    
    .ham_btn.open .inner .bar:before{
        top: 14px;
    }
    
    .ham_btn .inner .bar:after{
        bottom: 0;
    }
    
    .ham_btn.open .inner .bar:after{
        bottom: 10px;
    }
    
    .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: 40px !important;
    }
    
    header::after{
        width: 224px;
        height: 200px;
        top: calc(50% - 100px);
        left: calc((50%) - 25% - 112px);
    }
    
    .slide_nav > ul{
        padding: 50px 0 50px 105px;
        overflow: hidden;
        width: auto;
    }

    .slide_nav .nav_menu ul li,
    .slide_nav > ul > li{
        margin: 20px 0 0;
    }

    .slide_nav .nav_menu > div > span,
    .slide_nav .nav_menu ul li a,
    .slide_nav > ul > li > a{
        padding: 10px 0;
        font-size: 18px;
    }

    .slide_nav .nav_menu ul{
        margin: 0 0 0;
    }

    .slide_nav .nav_menu ul li{
        margin: 10px 0 0;
    }

    .slide_nav .nav_menu ul li a::before{
        margin: 0 10px 0 0;
    }

    /* inv */
    .slide_nav > ul > li.inv{
        margin-right: 10px;
    }
    
    .slide_nav > ul > li.inv + li.inv{
        margin-top: 30px;
    }
    
    .gnav > ul > li.inv a,
    .slide_nav > ul > li.inv a{
    	width: 120px;
        height: 35px;
    	padding: 0;
    	font-size: 14px;
    }


    /* footer
       ================================================================== */
    footer{
        margin: 0 0 0;
    	padding: 0 0 0;
    }

    .cv{
        padding: 72px 0;
    }
    
    .cv .logo{
        margin: 0 0 0;
        width: 195px;
    }
    
    .cv .block_title{
        margin: 35px 0 0;
    }
    
    .cv .tel_style{
        margin: 20px 0 0;
    }
    
    .cv .circle_btn{
        margin: 25px 0 0;
    }

    .footer_bg{
        height: 400px;
    }
    
    footer .bg{
        padding: 65px 0 0;
        box-sizing: border-box;
    }
    
    footer .footer_nav_block{
        padding: 0 0 0;
    }
    
    footer .footer_nav{
    	margin: 0 auto;
        width: 100%;
        max-width: 1000px;
    }
    
    footer .footer_nav ul{
        display: flex;
        justify-content: flex-start;
    }
    
    footer .footer_nav ul li{
    	margin: 0 55px 0 0;
    }
    
    footer .footer_nav ul li:last-child{
    	margin-right: 0;
    }
    
    footer .footer_nav ul li div,
    footer .footer_nav ul li a{
        padding: 5px 0;
    	font-size: 14px;
    }

    footer .footer_nav ul li ul li a::before{
        margin: 0 10px 0 0;
    	font-size: 9px;
    }
    
    footer .footer_nav ul li ul{
        margin: 10px 0 0;
    }
    
    footer .footer_nav ul li ul li{
        margin: 10px 0 0;
    }
    
    footer .footer_nav ul li ul li a{
        padding: 5px 0;
        display: flex;
    	font-size: 14px;
    }
    
    footer .footer_nav > ul .nav_menu{
    	position: relative;
    }
    
    .footer_company{
        margin: 95px 0 0;
    	padding: 60px 0 75px;
    }
    
    .footer_company .site_logo{
    	width: 195px;
    }
    
    .footer_company .text_box{
    	padding: 10px 0 0;
    }
    
    .footer_company .text_box p{
        margin: 15px 0 0;
    	font-size: 14px;
    }
    
    footer .bottom_box .inner{
    	padding: 40px 20px;
    }
    
    footer address{
    	font-size: 12px;
    }


    /* page_scroll
       ================================================================== */
    #page_scroll {
    	margin: 0 0 0;
        position: absolute;
        right: 20px;
        bottom: 0;
    }
    
    #page_scroll a span{
        margin-left: 0;
        padding: 5px 5px 0 20px;
        width: 50px;
        height: 140px;
    	font-size: 13px;
        letter-spacing: 0.1em;
        text-align: left;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


    /* tel_style
       ================================================================== */
    .tel_style .siz_s{
        font-size: 25px;
    }
    
    .tel_style .siz_l{
        padding: 0 0 0 8px;
        font-size: 38px;
    }

    .tel_style p{
        margin: 0 0 0;
        font-size: 14px;
    }
    
    
    /* block_title
       ================================================================== */
    .block_title.border{
        padding: 45px 0 0;
    }
        
    .block_title.border.only{
        padding: 35px 0 0;
    }

    .block_title.border::before{
        width: 200px;
    }
    
    .block_title .eng{
        font-size: 40px;
    }
    
    .block_title .jpn{
        margin: 13px 0 0;
        font-size: 15px;
    }
    
    .block_title .jpn_only{
        font-size: 30px;
        line-height: 55px;
    }


    /* com_table
       ================================================================== */
    .com_table th,
    .com_table td{
        padding: 11px 30px;
        font-size: 15px;
        line-height: 27px;
    }
    
    .com_table th{
        padding-left: 10px;
        padding-right: 10px;
        width: 200px;
    }
  

    /* common_table
       ================================================================== */	
    .common_table{
        border-bottom: none;
    }
    
    .common_table th,
    .common_table td{
    	padding: 15px 30px;
        font-size: 15px;
        line-height: 30px;
        width: auto;
        display: table-cell;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    
    .common_table th{
        width: 210px;
    }

    .common_table td .box + .box{
    	margin: 15px 0 0;
    }


    /* view_more_btn
       ================================================================== */	
    .view_more_btn .inlink,
    .view_more_btn a{
        padding: 0 0 0 40px;
    }
    
    .view_more_btn .inlink span,
    .view_more_btn a span{
    	padding: 0 0 0 20px;
        font-size: 13px;
    }
    
    .view_more_btn .inlink span::after,
    .view_more_btn a span::after{
        width: 40px;
    }


    /* pdf_btn
       ================================================================== */	
    .pdf_btn a{
        width: 400px;
        height: 76px;
        font-size: 16px;
    }
    
    .pdf_btn a::before{
        width: 22px;
        height: 29px;
        right: 27px;
    }


    /* circle_btn
       ================================================================== */	
    .circle_btn a{
        padding: 10px 0;
        min-width: 200px;
    }
    
    .circle_btn .hv_box{
        width: 90px;
        height: 90px;
    }
    
    .circle_btn .hv_box::before{
        width: 6px;
        height: 6px;
        top: calc(50% - 3px);
        left: calc(50% - 0);
    }
    
    .circle_btn .circle::before{
        width: 90px;
        height: 90px;
    }
    
    .circle_btn .circle::after{
        left: 80%;
    }
    
    .circle_btn .txt{
        margin: 0 0 0 90%;
        font-size: 14px;
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a{
	    padding: 0;
	    width: 200px;
        height: 60px;
	    font-size: 16px;
	}
	

    /* 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: 5px;
    }

	
}
@media screen and (min-width : 1200px){
   
	
    /* Navi
       ================================================================== */
    .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 30px;
        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.inv + li.inv{
        margin-left: 10px;
    }
    
    .gnav > ul > li.nav_menu div,
    .gnav > ul > li > a{
    	padding: 10px 0;
    	display: flex;
        align-items: center;
        justify-content: center;
    	text-align: center;
        line-height: 1;
        border: none;
        height: auto;
        position: relative;
    	font-size: 14px;
        letter-spacing: 0.1em;
        color: #fff;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
    }
    
    .gnav > ul > li:not(.inv) > a::before{
        content: "";
        background: #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        transform: scale(0);
        transition: transform 0.3s ease;
        transform-origin: right center;
    }
    
    .gnav > ul > li:not(.inv) > a:hover::before{
        transform: scale(1);
        transform-origin: left center;
    }
    
    .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 > ul{
    	position: absolute;
		min-width: 230px;
		transition: .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
		top: calc(100% - 1px);
		left: -20px;
		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 1px;
		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: .1s;
        transition-delay: .1s;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(3){
        animation-delay: .2s;
        transition-delay: .2s;
    }
    
    .gnav > ul > li.nav_menu > ul > li:nth-child(4){
        animation-delay: .3s;
        transition-delay: .3s;
    }
    
    .gnav > ul > li > ul > li a{
		padding: 0 40px 0 23px;
    	display: flex;
		white-space: nowrap;
		height: 60px;
		align-items: center;
    	font-size: 14px;
        letter-spacing: 0.1em;
		font-weight: 700;
		color: #fff;
		background-color: rgba(0,0,0,.9);
        background-image: url("../images/common/icon_nav_arrow.svg");
        background-position: 93% center;
        background-repeat: no-repeat;
        background-size: auto;
		transition: .3s;
        position: relative;
    }
    
    .gnav > ul > li > ul > li a::after{
		content: "";
        background: #fff;
        width: 100%;
        height: 1px;
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        transition: transform .5s cubic-bezier(0.77, 0.38, 0.43, 0.85);
        transform: scaleX(0);
        transform-origin: right center;
    }
    
    .gnav > ul > li > ul > li:last-child a{
		border-bottom: none;
    }
    
    .gnav > ul > li > ul > li a:hover::after{
		transform: scaleX(1);
        transform-origin: left center;
    }

    
}
@media screen and (min-width : 1025px){

	
	/* attachment
	   ================================================================== */
	.attachment{
		background-attachment: fixed;
	}

	
}


/* 最新のsafari用 */
_::-webkit-full-page-media, _:future, :root .attachment {
	background-attachment: inherit;
}

/* 古いsafari用 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .attachment {
		background-attachment: inherit;
	}
}