@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');

@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');


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.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: #2980B9;
}

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

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


/* header
   ================================================================== */
header{
	position: relative;
    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);
}

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

header .site_logo{
    margin: 0 0 0 -10px;
    line-height: 0;
    width: 60vw;
    max-width: 270px;
    z-index: 1;
    transition: .3s;
}

.site_logo a{
    display: inline-block;
    line-height: 0;
}

.header_cv{
    display: none;
}

.woman_rushing{
    width: 25vw;
    max-width: 124px;
    position: absolute;
    top: 3px;
    left: 62vw;
    line-height: 0;
}


/* Navi
   ================================================================== */
.ham_btn{
    position: fixed;
    right: 10px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    text-align: center;
    cursor: pointer;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 0;
	transition: ease-out 0.3s;
    background: #016AB4;
    border-radius: 100%;
}

.ham_btn .inner{
    padding: 0 0 0;
    width: 25px;
    height: 0;
    display: block;
    position: relative;
    transition: ease-out 0.8s;
    box-sizing: border-box;
}

.ham_btn .bar,
.ham_btn .bar:before,
.ham_btn .bar:after{
    margin: auto;
    transition: ease-out 0.3s;
    text-indent: -9999px;
    height: 4px;
    width: 4px;
    background: #fff;
    display: block;
    border-radius: 100%;
}

.ham_btn .bar:before,
.ham_btn .bar:after{
    position: absolute;
    top: 0;
}

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

.ham_btn .bar:after{
    content: "";
    position: absolute;
    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{
    height: 2px;
    width: 30px;
    border-radius: 10px;
}

.ham_btn.open .bar:before{
    transform: rotate(45deg);
    top: -1px;
    left: -2px;
}

.ham_btn.open .bar:after{
    transform: rotate(-45deg);
    top: -1px;
    right: -3px;;
}

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

.slide_menu{
    padding: 50px 0 0;
    position: fixed;
    top: 0;
    right: 0;
    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{
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

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

.slide_menu .logo{
    margin: 0 0 0 -5vw;
    line-height: 0;
    width: 60vw;
    animation: navi_logo_animation_off 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

@keyframes navi_logo_animation_off{
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

.slide_menu.open .logo{
    animation: navi_logo_animation_open 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

@keyframes navi_logo_animation_open{
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.slide_nav > ul{
    padding: 0 0 0;
    width: 100%;
}    

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

.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: 700;
    color: #000;
    line-height: 120%;
}

.slide_nav li{
    line-height: 1;
}

/* 閉じる時 */
.slide_nav > ul > li > a{
    animation: navi_animation_off 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

.slide_nav > ul > li:nth-child(2) > a{
    animation-delay: .05s;
}

.slide_nav > ul > li:nth-child(3) > a{
    animation-delay: .1s;
}

.slide_nav > ul > li:nth-child(4) > a{
    animation-delay: .15s;
}

.slide_nav > ul > li:nth-child(5) > a{
    animation-delay: .2s;
}

.slide_nav > ul > li:nth-child(6) > a{
    animation-delay: .25s;
}

.slide_nav > ul > li:nth-child(7) > a{
    animation-delay: .3s;
}

.slide_nav > ul > li:nth-child(8) > a{
    animation-delay: .35s;
}

@keyframes navi_animation_off{
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* 開く時 */
.slide_menu.open .slide_nav > ul > li > a{
    animation: navi_animation_open 1s cubic-bezier(0,.58,.42,1) 0s 1 normal both;
}

.slide_menu.open .slide_nav > ul > li:nth-child(2) > a{
    animation-delay: .1s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(3) > a{
    animation-delay: .15s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(4) > a{
    animation-delay: .2s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(5) > a{
    animation-delay: .25s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(6) > a{
    animation-delay: .3s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(7) > a{
    animation-delay: .35s;
}

.slide_menu.open .slide_nav > ul > li:nth-child(8) > a{
    animation-delay: .4s;
}

@keyframes navi_animation_open{
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* gnav
   ================================================================== */
header .gnav{
    display: none;
}

.gnav{
    background: #D80000;
}

.gnav ul li a{
    padding: 4vw 3vw;
    font-size: 3.5vw;
    font-weight: 500;
    color: #fff;
    display: block;
}

footer .gnav ul li a{
    border-bottom: 1px solid #fff;
}

footer .gnav ul li:last-child a{
    border-bottom: none;
}


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

footer address{
    padding: 6vw 0 25vw;
	font-size: 3.2vw;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}


/* page_top
   ================================================================== */
#page_top{
	position: fixed;
	bottom: 24vw;
	right: 0;
	width: 12vw;
    z-index: 10;
	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%;
}


/* sp_flex
   ================================================================== */
#sp_flex{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
    z-index: 20;
	line-height: 0;
}

#sp_flex a{
	display: block;
	height: auto;
	transition: ease-in 0.3s;
	line-height: 0;
}

#sp_flex img{
	width: 100%;
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 2;
    background: #fff;
}


/* cv_block
   ================================================================== */
.cv_block{
    margin: 0 0 0;
    padding: 0 0 0;
    background: #016AB4;
}

.cv_block .inner{
    padding: 2vw;
}

.cv_block .cv_banner{
    margin: -17vw -2vw 0 0;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.cv_block .cv_banner a{
    display: block;
    line-height: 0;
}

.cv_block .cv_banner a img{
    width: 100%;
}


/* grain_bg
   ================================================================== */
.grain_bg{
    background-image: url("../images/common/webp/grain_bg.webp");
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}


/* rough01_bg
   ================================================================== */
.rough01_bg{
    background-image: url("../images/common/webp/rough01_bg.webp");
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}


/* rough02_bg
   ================================================================== */
.rough02_bg{
    background-image: url("../images/common/webp/rough02_bg.webp");
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}


/* block_title
   ================================================================== */
.block_title{
    padding: 5vw 0 3vw 29vw;
    position: relative;
}

.block_title::before{
    content: "";
    background-image: url("../images/common/webp/icon_title.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 23vw;
    height: 23vw;
    position: absolute;
    top: 0;
    left: 0;
}

.block_title > span{
    display: block;
    line-height: 120%;
    letter-spacing: 0.1em;
}

.block_title.border_w > span{
    text-shadow:
    #fff 2px 0px,  #fff -2px 0px,
    #fff 0px -2px, #fff 0px 2px,
    #fff 2px 2px , #fff -2px 2px,
    #fff 2px -2px, #fff -2px -2px,
    #fff 1px 2px,  #fff -1px 2px,
    #fff 1px -2px, #fff -1px -2px,
    #fff 2px 1px,  #fff -2px 1px,
    #fff 2px -1px, #fff -2px -1px;
}

.block_title .jpn{
    font-size: 6.5vw;
    font-weight: 900;
}

.block_title .eng{
    margin: 2vw 0 0;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.block_title .bg_txt{
    margin: 3vw 0 0 -4vw;
}

.block_title .bg_txt > span{
    padding: 1vw 3vw;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #FFDA2D;
    border-radius: 100px;
    display: inline-block;
}


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

.anime_btn a{
    padding: 0 0 8px;
	display: inline-block;
}

.anime_btn a > span{
	padding: 4vw 2vw;
	width: 70vw;
	background: #D90000;
	position: relative;
	display: inline-block;
    text-align: center;
	font-size: 4.3vw;
    font-weight: 700;
    letter-spacing: 0.10em;
    line-height: 150%;
	color: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 0 rgba(0,0,0,.16);
}


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

	.sp{
		display: none;
	}

	.tab{
		display: inherit;
	}

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

    #wrap{
        padding: 0 0 0;
    }


    /* header
       ================================================================== */    
    header > .inner{
    	padding: 0 70px 0 2.8vw;
        display: flex;
        align-items: center;
        height: 12.0vw;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 29vw;
        max-width: 357px;
    }
   
    .header_cv{
        margin: 0 0 0 auto;
        display: flex;
        justify-content: flex-end;
    }
   
    .header_cv .time{
        margin: .2vw 0 0;
        width: 25.0vw;
    }
   
    .header_cv .time h2{
        margin: .2vw 0 0;
        font-size: 1.2vw;
        color: #000;
        line-height: 2.0vw;
        letter-spacing: 0.05em;
        font-weight: 400;
    }
   
    .header_cv .header_tel{
        margin: 0 0 0 1.5vw;
        width: 26.0vw;
    }


    /* Navi
       ================================================================== */
    .ham_btn{
        right: 10px;
        top: 10px;
    }
    
    .slide_menu{
        padding: 0;
        bottom: auto;
        height: 100vh;
        align-items: center;
    }

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

    .slide_menu .logo{
        margin: 10vw 0 0;
        width: 48.3vw;
    }

    .slide_menu .slide_nav{
        padding: 0 0 0;
    }
    
    .slide_nav > ul{
        padding-top: 5vw;
        overflow: hidden;
        width: auto;
    }

    .slide_nav > ul > li{
        margin: 2vw 0;
        padding: 0 0 1px;
    }
    
    .slide_nav > ul > li > a{
        padding: 1vw 0;
        font-size: 2.5vw;
        transition: .5s;
        position: relative;
    }
    
    .slide_nav > ul > li > a::before{
        content: "";
        background: #000;
        width: 100%;
        height: 1px;
        position: absolute;
        top: 100%;
        left: 0;
        transform: scale(0);
        transition: transform 0.3s ease;
        transform-origin: right center;
    }
    
    .slide_nav > ul > li > a:hover::before{
        transform: scale(1);
        transform-origin: left center;
    }


    /* gnav
       ================================================================== */
    header .gnav{
        display: block;
    }

    .gnav ul{
        margin: 0 auto;
        padding: 0 2.0vw;
        box-sizing: border-box;
        display: flex;
    }

    .gnav ul li{
        margin-right: 4.0vw;
    }

    .gnav ul li:last-child{
        margin-right: 0;
    }

    .gnav ul li a{
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 6.0vw;
        font-size: 1.5vw;
        position: relative;
    }
    
    .gnav ul li a::before{
        content: "";
        background: #FFE065;
        width: 100%;
        height: 3px;
        position: absolute;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transition: .3s;
    }
    
    .gnav ul li a:hover::before{
        transform: scaleX(1);
    }

    footer .gnav ul li a{
        border-bottom: none;
    }


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

    footer address{
        padding: .6vw 0;
        font-size: 1.2vw;
    }
	
    
    /* page_top
       ================================================================== */
    #page_top{
    	width: 5.5vw;
    }

    #page_top a:hover{
    	opacity: .5;
    }


    /* sp_flex
       ================================================================== */
    #sp_flex{
        display: none;
    }


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


    /* cv_block
       ================================================================== */
    .cv_block .inner{
        padding: 2.8vw 2.0vw 2.8vw;
    }

    .cv_block .cv_banner{
        margin: -13.4vw 0 0;
    }


    /* grain_bg
       ================================================================== */
    .grain_bg{
        background-size: 120vw;
    }


    /* rough01_bg
       ================================================================== */
    .rough01_bg{
        background-size: 120vw;
    }


    /* rough02_bg
       ================================================================== */
    .rough02_bg{
        background-size: 120vw;
    }


    /* block_title
       ================================================================== */
    .block_title{
        padding: 5.0vw 0 2.0vw 17.0vw;
    }

    .block_title.bg_in{
        padding-left: 19.5vw;
    }

    .block_title::before{
        width: 15.0vw;
        height: 14.4vw;
    }

    .block_title .jpn{
        font-size: 3.6vw;
    }

    .block_title .eng{
        margin: 1.0vw 0 0;
        font-size: 2.0vw;
    }

    .block_title .bg_txt{
        margin: 1.0vw 0 0 -2.0vw;
    }

    .block_title .bg_txt > span{
        padding: .5vw 2.0vw;
        font-size: 2.0vw;
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a{
	    
	}
    
	.anime_btn a > span{
	    padding: 0;
	    width: 38vw;
        height: 7vw;
	    border: 1px solid #D90000;
	    display: inline-flex;
        justify-content: center;
        align-items: center;
	    font-size: 2.3vw;
        transition: .3s ease;
	}
    
	.anime_btn a:hover > span{
	    color: #D90000;
	    background: #fff;
        box-shadow: none;
        transform: translateY(8px);
	}
    
    
}
@media screen and (min-width : 1070px){

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


    /* header
       ================================================================== */    
    header > .inner{
    	padding: 0 85px 0 28px;
        max-width: 100%;
        display: flex;
        align-items: center;
        height: 130px;
        transition: ease-out 0.3s;
    }
    
    header .site_logo{
        width: 357px;
        max-width: 357px;
        position: absolute;
        top: 18px;
        left: 27px;
    }
   
    .header_cv{
        margin: 0 0 0 auto;
        display: flex;
        justify-content: flex-end;
    }
   
    .header_cv .time{
        margin: 9px 0 0;
        width: 280px;
    }
   
    .header_cv .time h2{
        margin: 2px 0 0;
        font-size: 14px;
        color: #000;
        line-height: 20px;
        letter-spacing: 0.05em;
        font-weight: 400;
    }
   
    .header_cv .header_tel{
        margin: 0 0 0 15px;
        width: 350px;
    }

	
    /* Navi
       ================================================================== */
    .ham_btn{
        right: 30px;
        top: 40px;
    }

    .ham_btn:hover .bar,
    .ham_btn:hover .bar:before,
    .ham_btn:hover .bar:after{
        background: #FFE065;
    }

    .slide_menu{
        align-items: flex-start;
    }

    .slide_menu .inbox{
        margin: 0 auto;
        padding: 0 20px;
        width: 1040px;
    }

    .slide_menu .logo{
        margin: 135px 0 0;
        width: 483px;
    }
    
    .slide_nav > ul{
        padding: 45px 0 0;
        overflow: hidden;
        width: auto;
    }

    .slide_nav > ul > li{
        margin: 20px 0 0;
        padding: 0 0 3px;
    }

    .slide_nav > ul > li > a{
        padding: 10px 0;
        font-size: 25px;
    }


    /* gnav
       ================================================================== */
    header .gnav{
        display: block;
    }

    .gnav ul{
        margin: 0 auto;
        padding: 0 20px;
        max-width: 1040px;
        box-sizing: border-box;
        display: flex;
    }

    .gnav ul li{
        margin-right: 40px;
    }

    .gnav ul li:last-child{
        margin-right: 0;
    }

    .gnav ul li a{
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        font-size: 15px;
    }

    footer .gnav ul li a{
        border-bottom: none;
    }


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

    footer address{
        padding: 6px 0;
        font-size: 12px;
    }
	
    
    /* page_top
       ================================================================== */
    #page_top{
    	bottom: 80px;
		width: 55px;
    }


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


    /* cv_block
       ================================================================== */
    .cv_block .inner{
        padding: 28px 20px 28px;
    }

    .cv_block .cv_banner{
        margin: -134px 0 0;
    }


    /* grain_bg
       ================================================================== */
    .grain_bg{
        background-size: 1200px;
    }


    /* rough01_bg
       ================================================================== */
    .rough01_bg{
        background-size: 1366px;
    }


    /* rough02_bg
       ================================================================== */
    .rough02_bg{
        background-size: 1366px;
    }


    /* block_title
       ================================================================== */
    .block_title{
        padding: 50px 0 20px 170px;
    }

    .block_title.bg_in{
        padding-left: 195px;
    }

    .block_title::before{
        width: 150px;
        height: 144px;
    }

    .block_title .jpn{
        font-size: 36px;
    }

    .block_title .eng{
        margin: 10px 0 0;
        font-size: 20px;
    }

    .block_title .bg_txt{
        margin: 10px 0 0 -20px;
    }

    .block_title .bg_txt > span{
        padding: 5px 20px;
        font-size: 20px;
    }


	/* anime_btn
	   ================================================================== */	
	.anime_btn a > span{
	    width: 380px;
        height: 70px;
	    font-size: 23px;
	}
	
	
}
@media screen and (min-width : 1100px){
    

    /* header
       ================================================================== */    
    .header_cv .header_tel{
        margin: 0 0 0 25px;
    }

}
