@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&family=Noto+Serif+JP:wght@400;500;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: "Zen Kaku Gothic New","メイリオ","ms pgothic", sans-serif;
	color: #111;
}

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%;
    font-weight: 500;
}

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%;
}

.oswald{
	font-family: 'Oswald';
}

.maru{
	font-family: 'Zen Maru Gothic';
}

.serif{
	font-family: 'Noto Serif JP';
}

.sans{
	font-family: 'Noto Sans JP';
}

.tab,
.pc{
	display: none;
}

.photo{
	line-height: 0;
}

.inner{
    padding-left: 3vw;
    padding-right: 3vw;
}

.blue{
    color: #004CAC;
}

.yellow_bg{
    background: linear-gradient(rgba(255,255,255,0) 0%,rgba(255,255,255,0) 60%,#FFFF44 60%,#FFFF44 100%);
}

.under_l{
    text-decoration: underline;
}

.link_text{
    color: #2F60B4;
}

.link_text:hover{
    text-decoration: underline;
}

#wrap{
    padding: 0 0 0;
	position: relative;
    overflow: hidden;
}


/* header
   ================================================================== */
header{
	position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0);
}

header > .inner{
	padding: 3vw 3vw;
    box-sizing: border-box;
}

header .site_logo{
    padding: 0 0 0;
    width: 50vw;
}

.site_logo{
    line-height: 0;
}

.site_logo a{
    display: inline-block;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.site_logo img{
    width: 100%;
}


/* language
   ================================================================== */
.language{
    position: fixed;
    z-index: 501;
    top: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
    overflow: inherit;
}

.language .show_down > span{
    padding: .5vw 3vw .5vw 5vw;
	text-align: center;
    line-height: 200%;
    border: none;
    height: auto;
    position: relative;
	font-size: 3.3vw;
    color: #fff;
    background: #000;
    border-radius: 0 0 0 10px;
    z-index: 1;
    letter-spacing: 0.05em;
    font-weight: 700;
    transition: .5s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}
    
/* show_down */
.language .show_down{
    position: relative;
}

.language .show_down > span{
    position: relative;
}

.language .show_down > span > .language_icon{
    display: none;
}

.language .show_down > span > .language_arrow{
    margin: 1.0vw 0 0 3vw;
    width: 2.0vw;
    transition: .3s;
}

.language .show_down > span.open > .language_arrow{
    transform: rotate(180deg);
}

.language .show_down > ul{
    padding: calc(2vw + 10px) 0 2vw;
    position: absolute;
    width: 100%;
    top: calc(100% - 10px);
    right: 0;
    text-align: left;
    background: rgba(255,255,255,1);
    overflow: hidden;
    display: none;
    border-radius: 0 0 0 10px;
}

.language .show_down > ul > li > a{
    padding: 2vw 3vw 2vw 6vw;
    font-size: 3.4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: left;
    color: #222;
    position: relative;
    display: block;
}

.language .show_down > ul > li > a::before{
    content: "";
    margin: auto;
    background: #111;
    width: 1vw;
    height: 1vw;
    position: absolute;
    top: 4.5vw;
    left: 3vw;
    transition: .5s;
    border-radius: 50px;
}


/* fix_btn
   ================================================================== */
.fix_btn{
	position: fixed;
    top: 10vw;
    right: 16vw;
    display: flex;
    align-items: center;
    z-index: 500;
}

.fix_btn > .sns_icon{
    margin-left: 2vw;
    width: 12vw;
}

.fix_btn > li.tab{
    display: none;
}

.fix_btn .sns_icon a{
    height: 12vw;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	transition: ease-out 0.3s;
    border-radius: 100%;
    background: rgba(255,255,255,0);
}


/* ham_btn
   ================================================================== */
.ham_btn{
    padding: 0;
    right: 2vw;
    top: 10vw;
    width: 12vw;
    height: 12vw;
    position: fixed;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
	transition: ease-out 0.3s;
    border-radius: 100%;
    background: #004CAC;
}

.ham_btn.open,
.scroll_move .ham_btn{
    background: #004CAC;
}

.ham_btn .inner{
    padding: 0;
    width: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    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: 1.2vw;
    width: 1.2vw;
    background: #fff;
    display: block;
    border-radius: 20px;
}

.ham_btn .inner .bar:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

.ham_btn .inner .bar:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
}

.ham_btn.open{
    transform: rotate(0deg);
}

.ham_btn.open .bar{
    background: transparent !important;
}

.ham_btn.open .bar:before,
.ham_btn.open .bar:after{
    width: 6vw;
    height: 1vw;
}

.ham_btn.open .bar:before{
    transform: rotate(45deg);
    top: 0.2vw;
    left: 0.5vw;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    bottom: 0;
    right: .5vw;
}

body.open{
    position: fixed;
    width: 100%;
}


/* slide_menu
   ================================================================== */
header::before{
    content: "";
    background: #F2F8FB;
    width: 100%;
    height: 25vw;
    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 .nav_logo{
    width: 50vw;
    height: 21vw;
    position: fixed;
    top: 2vw;
    left: 3vw;
    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;
}

header .nav_logo a{
    background-image: url("../images/common/logo.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
    height: 100%;
}

header .nav_logo a img{
    opacity: 0;
}

.open header .nav_logo{
    animation: navilogo_on .8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
    animation-delay: .5s;
}

.slide_menu{
    padding: 25vw 0 0;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,1);
    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;
    display: none;
}

.slide_menu.show{
    display: flex;
}

.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:not(.anime_btn) 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: 700;
    color: #111;
    line-height: 120%;
}

.slide_nav li{
    overflow: hidden;
    line-height: 1;
}

.slide_nav > ul > li > .sns_btn,
.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 > ul > li > .sns_btn,
.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;
}

/* ナビ下層の出現 */
@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;
    }
}


/* gnav
   ================================================================== */
.gnav{
    display: none;
}


/* footer_tag
   ================================================================== */
footer{
    margin: 15vw 0 0;
	padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #F2F8FB;
}

/* footer_photo */
.footer_photo{
    height: 60vw;
}

.footer_photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* pc_flex */
footer .pc_flex{
    margin: 0 0 0;
}

/* footer_company */
.footer_company{
	margin: -10vw 0 0;
    padding: 5vw 5vw 10vw;
    background: #fff;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.footer_company .site_logo{
    margin: 0;
	width: 50vw;
    line-height: 0;
}

.footer_company .site_logo a{
    width: 100%;
}

.footer_company .site_logo img{
    width: 100%;
}

.footer_company .site_logo .name{
    margin: 2vw 0 0;
    font-size: 3.4vw;
    line-height: 150%;
    font-weight: 700;
    color: #004CAC;
    display: block;
}

.footer_company .text_box{
	padding: 4vw 0 0;
}

.footer_company .footer_company_list > li + li{
    margin: 5vw 0 0;
}

.footer_company .text_box .ttl{
    font-size: 3.5vw;
    color: #172C62;
}

.footer_company .text_box .txt{
    margin: 1vw 0 0;
    font-size: 3.5vw;
    font-weight: 500;
}

.footer_company .text_box .tel{
    margin: 1vw 0 0;
}

.footer_company .text_box .tel a{
    display: flex;
    align-items: baseline;
}

.footer_company .text_box .tel a span{
    font-size: 8vw;
    display: block;
    line-height: 150%;
    letter-spacing: 0.045em;
    font-weight: 700;
    color: #004CAC;
}

.footer_company .text_box .tel a .siz_s{
    font-size: 5vw;
    letter-spacing: 0.05em;
}

.footer_company .text_box .time{
    margin: 0 0 0;
    font-size: 3.4vw;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer_company .sns_btn{
    margin: 5vw 0 0;
}

/* buttons */
.buttons{
    margin: 6vw 0 0;
    display: flex;
}

.buttons li + li{
    margin-left: 3vw;
}

/* footer_nav_block */
.footer_nav_block{
    padding: 0 0 0;
    position: relative;
}

.footer_nav{
	margin: 10vw -3vw 0;
    line-height: 0;
    border-top: 1px solid #ddd;
}

.footer_nav ul{
	margin: 0;
}

.footer_nav ul li{
	margin: 0;
}

.footer_nav ul li div span,
.footer_nav ul li a{
	padding: 4vw;
	display: block;
	font-size: 4vw;
    line-height: 150%;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.footer_nav ul li ul li a{
    padding-left: 10vw;
	font-size: 3.6vw;
    position: relative;
}

.footer_nav ul li ul li a:before{
    content: "";
    background: #222;
    width: 2vw;
    height: 2vw;
    top: 6vw;
    position: absolute;
    left: 6vw;
    border-radius: 50px;
}

/* bottom_box */
footer .bottom_box{
	padding: 10vw 0;
    background: #fff;
}

footer address{
	font-size: 2.6vw;
    color: #222;
    font-weight: 400;
    letter-spacing: 0.05em;
}


/* sns_btn
   ================================================================== */
.sns_btn{
    display: flex;
}

.sns_btn li{
    margin: 0 3vw 0 0;
}

.sns_btn li:not(.anime_btn){
    background: #fff;
    line-height: 0;
    border-radius: 100%;
}

.sns_btn li:last-child{
    margin-right: 0;
}

.sns_btn li:not(.anime_btn) a{
    width: 12vw;
    height: 12vw;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    border-radius: 100%;
}


/* page_top
   ================================================================== */
#page_top{
	position: fixed;
	bottom: 2vw;
	right: 2vw;
	width: 12vw;
    z-index: 4;
	line-height: 0;
	display: none;
}

#page_top a{
	display: block;
	height: auto;
	transition: ease-in 0.3s;
	line-height: 0;
}

#page_top img{
	width: 100%;
}

    
/* alternate
   ================================================================== */
.alternate{
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.alternate img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.alternate .fade_photo{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
	animation: fade_photo 10s linear infinite;
}

.alternate.delay1 .fade_photo{
    animation-delay: .5s;
}

.alternate.delay2 .fade_photo{
    animation-delay: 2s;
}

.alternate.delay3 .fade_photo{
    animation-delay: 3.5s;
}

@keyframes fade_photo {
    0% {opacity: 0;}
    40%{opacity: 0;}
    50%{opacity: 1;}
    90%{opacity: 1;}
    100%{opacity: 0;}
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}


/* anime_btn
   ================================================================== */	
.anime_btn{
	line-height: 0;
}

.anime_btn a{
	padding: 0 5vw;
	min-width: 30vw;
    height: 12vw;
	font-size: 3.4vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
	background: #F39C12;
    border: 1px solid #F39C12;
	position: relative;
	display: inline-flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
}

.anime_btn a > span{
	font-size: 3.6vw;
    font-weight: 500;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
	display: block;
}

/* icon_car */
.anime_btn.icon_car a > span{
    padding-left: 3vw;
	font-size: 3.5vw;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 150%;
	color: #fff;
	position: relative;
	display: block;
}

.anime_btn.icon_car a svg{
	width: 7vw;
}

/* google_map */
.anime_btn.google_map a{
    background: #34A852;
    border-color: #34A852;
}

/* google_eng */
.anime_btn.google_eng a{
    padding-bottom: .5vw;
}

/* blue */
.anime_btn.blue a{
    background: #004CAC;
    border-color: #004CAC;
}

/* web_blue */
.anime_btn.web_blue a{
    background: #1A73E8;
    border-color: #1A73E8;
}

/* f15 */
.anime_btn.f15 a > span{
	font-size: 3.5vw;
    font-weight: 500;
}

/* bold */
.anime_btn.bold a > span{
	font-weight: 700;
}

/* letter150 */
.anime_btn.letter150 a > span{
    letter-spacing: 0.15em;
}

/* minw140 */
.anime_btn.minw140 a{
	min-width: 30vw;
}

/* minw85 */
.anime_btn.minw85 a{
	min-width: 18vw;
}

/* h35 */
.anime_btn.h35 a{
	height: 10vw;
}

/* line_logo */
.anime_btn.line_logo a{
    padding-left: 19vw;
    background: #EDE400;
    border-color: #EDE400;
}

.anime_btn.line_logo a:before{
	content: "";
	background-image: url("../images/common/line_logo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
	width: 14vw;
	height: 14vw;
	position: absolute;
	top: -2vw;
	left: 2vw;
}

.anime_btn.line_logo a > span{
	color: #222;
}


/* btn_arrow_light
   ================================================================== */	
.btn_arrow_light a{
    padding: 0 13vw 0 6vw;
    min-width: 30vw;
    height: 12vw;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    background: #34A853;
    border: 1px solid #34A853;
    border-radius: 100px;
    position: relative;
}

.btn_arrow_light a span{
    font-size: 3.6vw;
    letter-spacing: 0.1em;
    line-height: 150%;
    font-weight: 500;
    color: #fff;
    display: block;
}

.btn_arrow_light a svg{
    margin: auto;
    width: 5vw;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5vw;
}


@media screen and (min-width : 500px){

	
	p,
	a,
	li{
		font-size: 1.5vw;
        line-height: 3.0vw;
	}
    
    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: 4.5vw 34.0vw 0 0;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 28.1vw;
        position: absolute;
        top: 3.0vw;
        left: 3.3vw;
    }
      

    /* language
       ================================================================== */
    .language .show_down > span{
        padding: 0 1.3vw .2vw 1.2vw;
        font-size: 1.4vw;
    }

    /* show_down */
    .language .show_down > span > .language_icon{
        margin: .2vw .9vw 0 0;
        width: 1.5vw;
        display: block;
    }

    .language .show_down > span > .language_arrow{
        margin: .6vw 0 0 1.3vw;
        width: .7vw;
    }

    .language .show_down > ul{
        padding: calc(.6vw + 10px) 0 .6vw;
    }

    .language .show_down > ul > li > a{
        padding: .4vw 1.6vw .4vw 3.8vw;
        font-size: 1.4vw;
    }

    .language .show_down > ul > li > a::before{
        width: .5vw;
        height: .5vw;
        top: 1.8vw;
        left: 2.5vw;
    }

    .language .show_down > ul > li > a,
    .language .show_down > ul > li > a::before{
        transition: .3s;
    }

    .language .show_down > ul > li > a:hover{
        color: #2F6CB1;
    }

    .language .show_down > ul > li > a:hover::before{
        background: #2F6CB1;
    }


    /* fix_btn
       ================================================================== */
    .fix_btn{
        top: 4.4vw;
        right: 6.5vw;
    }

    .fix_btn > .sns_icon{
        margin-left: 1.0vw;
        width: 4.0vw;
    }

    .fix_btn > li.tab{
        display: block;
    }

    .fix_btn .sns_icon a{
        height: 4.0vw;
        transition: .3s;
    }

    .fix_btn .sns_icon a:hover{
        transform: rotate(25deg);
    }


    /* ham_btn
       ================================================================== */
     .ham_btn{
        top: 4.9vw;
        right: 1.5vw;
        width: 4.0vw;
        height: 4.0vw;
    }

    .ham_btn .inner{
        padding: 0;
        width: 2.2vw;
        transition: ease-out 0.4s;
    }

    .ham_btn:hover .inner{
        transform: rotate(90deg);
    }
    
    .ham_btn .inner .bar,
    .ham_btn .inner .bar:before,
    .ham_btn .inner .bar:after{
        width: .4vw;
        height: .4vw;
    }
    
    .ham_btn.open .bar:before,
    .ham_btn.open .bar:after{
        width: 2.0vw;
        height: .3vw;
    }

    .ham_btn.open .bar:before{
        top: .1vw;
        left: .2vw;
    }

    .ham_btn.open .bar:after{
        bottom: 0;
        right: 0;
    }
   
    .ham_btn.open:hover{
        background: rgba(43,175,176,.3);
    }

    .ham_btn.open:hover .bar::before,
    .ham_btn.open:hover .bar::after{
        background: #fff;
    }
    
    
    /* slide_menu
       ================================================================== */
    header::before{
        width: 50vw;
        height: 100vh;
        top: -100vh;
        left: 0;
    }
    
    .open header::before{
        top: 0;
    }
    
    header .nav_logo{
        width: 29.0vw;
        height: 7.1vw;
        position: fixed;
        left: calc((50%) - 25% - (29.0vw / 2));
        top: calc(50% - (7.1vw / 2));
        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 .nav_logo{
        animation: navilogo_on .8s cubic-bezier(0.165, 0.84, 0.44, 1) 0s 1 normal both;
        animation-delay: .5s;
    }

    .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_menu .slide_nav .sns_btn{
        display: none !important;
    }
    
    .slide_nav > ul{
        padding-top: 0;
        overflow: hidden;
        width: auto;
    }

    .slide_nav > ul > li{
        margin: 1vw 0 0;
        padding: 0 0 1px;
    }

    .slide_nav > ul > li:not(.anime_btn) > a{
        padding: 1vw 0;
        font-size: 1.8vw;
        transition: .5s;
        position: relative;
    }

    .slide_nav ul li:not(.anime_btn) a:hover{
        color: #004CAC;
    }


    /* footer_tag
       ================================================================== */
    footer{
        margin: 12.0vw 0 0;
    }

    /* footer_photo */
    .footer_photo{
        height: 52.0vw;
    }

    /* pc_flex */
    footer .pc_flex{
        margin: 0 0 0;
        padding: 0 0 6.3vw;
        display: flex;
    }

    /* footer_company */
    .footer_company{
        margin: -12.3vw 0 0;
        padding: 5.0vw 2.0vw 4.5vw 5.0vw;
        width: 46.0vw;
        height: 44.0vw;
        box-sizing: border-box;
    }

    .footer_company .site_logo{
        width: 26.0vw;
    }

    .footer_company .site_logo .name{
        margin: 1.0vw 0 0;
        font-size: 1.4vw;
    }

    .footer_company .text_box{
        padding: 1.5vw 0 0;
    }

    .footer_company .footer_company_list > li + li{
        margin: 2.0vw 0 0;
    }

    .footer_company .text_box .ttl{
        font-size: 1.5vw;
    }

    .footer_company .text_box .txt{
        margin: 0 0 0;
        font-size: 1.5vw;
        line-height: 2.5vw;
    }

    .footer_company .text_box .tel{
        margin: .5vw 0 0;
    }

    .footer_company .text_box .tel a{
        display: inline-flex;
    }

    .footer_company .text_box .tel a span{
        font-size: 2.9vw;
    }

    .footer_company .text_box .tel a .siz_s{
        font-size: 1.7vw;
    }

    .footer_company .text_box .time{
        margin: .5vw 0 0;
        font-size: 1.4vw;
    }

    .footer_company .sns_btn{
        margin: 2.0vw 0 0;
    }

    /* buttons */
    .buttons{
        margin: 2.0vw 0 0;
        display: flex;
    }

    .buttons li + li{
        margin-left: 1.0vw;
    }

    /* footer_nav_block */
    .footer_nav_block{
        padding: 4.0vw 0 0 8.5vw;
        width: calc(100% - 46.0vw);
        box-sizing: border-box;
    }

    .footer_nav{
        margin: 0;
        display: flex;
        border: none;
    }

    .footer_nav ul{
        margin: 0;
    }

    .footer_nav ul + ul{
        margin: 0 0 0 8.5vw;
    }

    .footer_nav ul li{
        margin: 0;
    }

    .footer_nav ul li div span,
    .footer_nav ul li a{
        padding: 1.0vw 0;
        display: inline-block;
        font-size: 1.4vw;
        border-bottom: none;
        transition: .3s;
    }

    .footer_nav ul li ul li a{
        padding: .5vw 0 .5vw 1.6vw;
        font-size: 1.3vw;
    }

    .footer_nav ul li ul li a:before{
        width: .7vw;
        height: .7vw;
        top: 1.1vw;
        left: 0;
        transition: .3s;
    }

    .footer_nav ul li a:hover{
        color: #004CAC;
    }

    .footer_nav ul li a:hover:before{
        background: #004CAC;
    }

    /* bottom_box */
    footer .bottom_box{
        padding: 4.0vw 0;
    }

    footer address{
        font-size: 1.3vw;
    }


    /* sns_btn
       ================================================================== */
    .sns_btn li{
        margin: 0 1.0vw 0 0;
    }

    .sns_btn li:not(.anime_btn){
        width: 4.0vw;
    }

    .sns_btn li:not(.anime_btn) a{
        width: 4.0vw;
        height: 4.0vw;
    }


    /* page_top
       ================================================================== */
    #page_top{
        bottom: 2vw;
        right: 2.6vw;
        width: 5.5vw;
    }

    #page_top a:hover{
        opacity: .5;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
        padding: 0 2vw;
        min-width: 11.5vw;
        height: 5.0vw;
        font-size: 1.4vw;
	}

	.anime_btn a > span{
        font-size: 1.4vw;
	}

    /* icon_car */
    .anime_btn.icon_car a > span{
        padding-left: .8vw;
        font-size: 1.4vw;
    }

    .anime_btn.icon_car a svg{
        width: 2.4vw;
    }
    
	.anime_btn a,
	.anime_btn a > span,
	.anime_btn a path{
        transition: .3s;
	}

    /* hover */
	.anime_btn a:hover{
		background: #fff;
        color: #F39C12;
	}

	.anime_btn a:hover > span{
        color: #F39C12;
	}

	.anime_btn a:hover path{
        fill: #F39C12;
	}

    /* google_map */
    .anime_btn.google_map a:hover{
        background: #fff;
    }

    .anime_btn.google_map a:hover > span{
        color: #34A852;
    }

    /* google_eng */
    .anime_btn.google_eng a{
        padding-bottom: .5vw;
    }

    /* blue */
    .anime_btn.blue a:hover{
        background: #fff;
    }

    .anime_btn.blue a:hover > span{
        color: #004CAC;
    }

    /* web_blue */
    .anime_btn.web_blue a:hover{
        background: #fff;
    }

    .anime_btn.web_blue a:hover > span{
        color: #1A73E8;
    }

    /* f15 */
    .anime_btn.f15 a > span{
        font-size: 1.5vw;
    }

    /* minw140 */
    .anime_btn.minw140 a{
        min-width: 14.0vw;
    }

    /* minw85 */
    .anime_btn.minw85 a{
        min-width: 8.5vw;
    }

    /* h35 */
    .anime_btn.h35 a{
        height: 3.5vw;
    }

    /* line_logo */
    .anime_btn.line_logo a{
        padding-left: 6.5vw;
    }

    .anime_btn.line_logo a:before{
        width: 5.0vw;
        height: 4.5vw;
        top: -.6vw;
        left: 1.0vw;
    }

    .anime_btn.line_logo a:hover{
        background: #fff;
        border-color: #00B900;
    }

    .anime_btn.line_logo a:hover > span{
        color: #00B900;
    }


    /* btn_arrow_light
       ================================================================== */	
    .btn_arrow_light a{
        padding: 0 5.7vw 0 2.5vw;
        min-width: 17.0vw;
        height: 5.0vw;
        transition: .3s;
    }

    .btn_arrow_light a:hover{
        background: #fff;
    }

    .btn_arrow_light a span{
        font-size: 1.6vw;
        transition: .3s;
    }

    .btn_arrow_light a:hover span{
        color: #34A853;
    }

    .btn_arrow_light a svg{
        width: 1.7vw;
        right: 2.5vw;
    }

    .btn_arrow_light a svg path{
        transition: .3s;
    }

    .btn_arrow_light a:hover svg path{
        fill: #34A853;
    }

    
}
@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;
        line-height: 30px;
	}
 
	.tab{
		display: none;
	}

	.pc{
		display: inherit;
	}

    #wrap{
        padding: 0 0 0;
    	position: relative;
    }


    /* header
       ================================================================== */    
    header > .inner{
    	padding: 45px 340px 0 0;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 281px;
        position: absolute;
        top: 30px;
        left: 33px;
    }
   

    /* language
       ================================================================== */
    .language .show_down > span{
        padding: 0 13px 2px 12px;
        font-size: 14px;
    }

    /* show_down */
    .language .show_down > span > .language_icon{
        margin: 2px 9px 0 0;
        width: 15px;
        display: block;
    }

    .language .show_down > span > .language_arrow{
        margin: 6px 0 0 13px;
        width: 7px;
    }

    .language .show_down > ul{
        padding: calc(6px + 10px) 0 6px;
    }

    .language .show_down > ul > li > a{
        padding: 4px 16px 4px 38px;
        font-size: 14px;
    }

    .language .show_down > ul > li > a::before{
        width: 5px;
        height: 5px;
        top: 18px;
        left: 25px;
    }


    /* fix_btn
       ================================================================== */
    .fix_btn{
        top: 44px;
        right: 65px;
    }

    .fix_btn > .sns_icon{
        margin-left: 10px;
        width: 40px;
    }

    .fix_btn .sns_icon a{
        height: 40px;
    }

	
    /* ham_btn
       ================================================================== */
    .ham_btn{
        top: 49px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .ham_btn .inner{
        padding: 0;
        width: 22px;
    }
    
    .ham_btn .inner .bar,
    .ham_btn .inner .bar:before,
    .ham_btn .inner .bar:after{
        width: 4px;
        height: 4px;
    }
    
    .ham_btn.open .bar:before,
    .ham_btn.open .bar:after{
        width: 20px;
        height: 3px;
    }

    .ham_btn.open .bar:before{
        top: 1px;
        left: 1px;
    }

    .ham_btn.open .bar:after{
        bottom: 0;
        right: 1px;
    }
    

    /* slide_menu
       ================================================================== */
    header .nav_logo{
        width: 290px;
        height: 71px;
        left: calc((50%) - 25% - (290px / 2));
        top: calc(50% - (71px / 2));
    }
    
    .slide_menu{
        padding: 0;
    }
    
    .slide_nav > ul{
        padding: 50px 0 50px 105px;
        overflow: hidden;
        width: auto;
    }

    .slide_nav > ul > li{
        margin: 20px 0 0;
    }

    .slide_nav > ul > li:not(.anime_btn) > a{
        padding: 10px 0;
        font-size: 18px;
    }


    /* footer_tag
       ================================================================== */
    footer{
        margin: 120px 0 0;
    }

    /* footer_photo */
    .footer_photo{
        height: 520px;
    }

    /* pc_flex */
    footer .pc_flex{
        margin: 0 0 0;
        padding: 0 0 63px;
        display: flex;
    }

    /* footer_company */
    .footer_company{
        margin: -123px 0 0;
        padding: 50px 20px 45px 50px;
        width: 460px;
        height: 440px;
        box-sizing: border-box;
    }

    .footer_company .site_logo{
        width: 260px;
    }

    .footer_company .site_logo .name{
        margin: 10px 0 0;
        font-size: 14px;
    }

    .footer_company .text_box{
        padding: 15px 0 0;
    }

    .footer_company .footer_company_list > li + li{
        margin: 20px 0 0;
    }

    .footer_company .text_box .ttl{
        font-size: 15px;
    }

    .footer_company .text_box .txt{
        margin: 0 0 0;
        font-size: 15px;
        line-height: 25px;
    }

    .footer_company .text_box .tel{
        margin: 5px 0 0;
    }

    .footer_company .text_box .tel a{
        display: inline-flex;
    }

    .footer_company .text_box .tel a span{
        font-size: 29px;
    }

    .footer_company .text_box .tel a .siz_s{
        font-size: 17px;
    }

    .footer_company .text_box .time{
        margin: 5px 0 0;
        font-size: 14px;
    }

    .footer_company .sns_btn{
        margin: 20px 0 0;
    }

    /* buttons */
    .buttons{
        margin: 20px 0 0;
        display: flex;
    }

    .buttons li + li{
        margin-left: 10px;
    }

    /* footer_nav_block */
    .footer_nav_block{
        padding: 40px 0 0 85px;
        width: calc(100% - 460px);
        box-sizing: border-box;
    }

    .footer_nav{
        margin: 0;
        display: flex;
    }

    .footer_nav ul{
        margin: 0;
    }

    .footer_nav ul + ul{
        margin: 0 0 0 85px;
    }

    .footer_nav ul li{
        margin: 0;
    }

    .footer_nav ul li div span,
    .footer_nav ul li a{
        padding: 10px 0;
        display: inline-block;
        font-size: 14px;
        border-bottom: none;
    }

    .footer_nav ul li ul li a{
        padding: 5px 0 5px 16px;
        font-size: 13px;
    }

    .footer_nav ul li ul li a:before{
        width: 7px;
        height: 7px;
        top: 11px;
        left: 0;
    }

    /* bottom_box */
    footer .bottom_box{
        padding: 40px 0;
    }

    footer address{
        font-size: 13px;
    }


    /* sns_btn
       ================================================================== */
    .sns_btn li{
        margin: 0 10px 0 0;
    }

    .sns_btn li:not(.anime_btn){
        width: 40px;
    }

    .sns_btn li:not(.anime_btn) a{
        width: 40px;
        height: 40px;
    }


    /* page_top
       ================================================================== */
    #page_top{
        bottom: 20px;
        right: 26px;
        width: 55px;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
        padding: 0 22px;
        min-width: 115px;
        height: 50px;
        font-size: 14px;
	}

	.anime_btn a > span{
        font-size: 14px;
	}

    /* icon_car */
    .anime_btn.icon_car a > span{
        padding-left: 8px;
        font-size: 14px;
    }

    .anime_btn.icon_car a svg{
        width: 24px;
    }

    /* google_eng */
    .anime_btn.google_eng a{
        padding-bottom: 3px;
    }

    /* f15 */
    .anime_btn.f15 a > span{
        font-size: 15px;
    }

    /* minw140 */
    .anime_btn.minw140 a{
        min-width: 140px;
    }

    /* minw85 */
    .anime_btn.minw85 a{
        min-width: 85px;
    }

    /* h35 */
    .anime_btn.h35 a{
        height: 35px;
    }

    /* line_logo */
    .anime_btn.line_logo a{
        padding-left: 65px;
    }

    .anime_btn.line_logo a:before{
        width: 50px;
        height: 45px;
        top: -6px;
        left: 10px;
    }


    /* btn_arrow_light
       ================================================================== */	
    .btn_arrow_light a{
        padding: 0 57px 0 25px;
        min-width: 170px;
        height: 50px;
    }

    .btn_arrow_light a span{
        font-size: 16px;
    }

    .btn_arrow_light a svg{
        width: 17px;
        right: 25px;
    }

	
}
@media screen and (min-width : 1280px){
   
	
    /* gnav
       ================================================================== */
    .gnav{
        margin: 0 0 0 auto;
        padding: 0;
        width: auto;
        box-sizing: border-box;
        position: relative;
        right: auto;
        overflow: inherit;
        background: none;
        display: flex;
    }
    
    .gnav > ul{
    	margin: 0 10px 0 auto;
        padding: 0 30px 0 5px;
    	font-size: 0;
        background: #fff;
        border-radius: 50px;
        overflow: inherit;
    }
    
    .gnav > ul > li{
        margin: 0 0 0 25px;
        padding: 0;
    	text-align: center;
		width: auto;
		display: inline-block;
        transition: all cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
    }
    
    .gnav > ul > li:not(.anime_btn) > a{
    	padding: 18px 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: #111;
        font-weight: 700;
        transition: .5s ease;
        top: 0;
    }
        
    .gnav > ul > li:not(.anime_btn) > a:hover{
    	color: #004CAC;
    }

    
}
