@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..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: #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;
}


/* template
   ================================================================== */
p,
a,
li{
	font-size: 3.4vw;
	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;
}

.serif{
	font-family: 'Noto Serif JP';
}

.oswald{
	font-family: 'Oswald';
}

.under_l{
    text-decoration: underline;
}

.link_text{
    color: #2F60B4;
}

.link_text:hover{
    text-decoration: underline;
}

#wrap{
    padding: 0 0 0;
	position: relative;
    overflow: hidden;
}

@keyframes circle{
    0% {
        opacity: 0;
    }
    40%{
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}


/* contents_wrap
   ================================================================== */
.contents_wrap{
    margin: 0 0 0;
    padding: 0 0 0;
    position: relative;
    z-index: 1;
    background: #fff;
}


/* block_title
   ================================================================== */	
.block_title{
	text-align: center;
}

.block_title span{
	display: block;
    line-height: 150%;
    font-weight: 400;
}

.block_title .jpn{
	font-size: 6vw;
    color: #3D3D3D;
}

.block_title .eng{
	font-size: 3.5vw;
    font-family: 'Oswald';
    letter-spacing: 0.05em;
    color: #868585;
}


/* anime_btn
   ================================================================== */	
.anime_btn{
	text-align: center;
	line-height: 0;
}

.anime_btn a{
	padding: 0;
	width: 100%;
    height: 18vw;
	background: #004fa1;
	position: relative;
	display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.anime_btn a .block_title span{
	color: #fff;
}

.anime_btn a .block_title .jpn{
	font-size: 5vw;
}

.anime_btn a .block_title .eng{
	font-size: 3.4vw;
}


@media screen and (min-width : 500px){
    
    
    /* template
       ================================================================== */    
	p,
	a,
	li{
		font-size: 1.4vw;
	}
        
    a.over{
    	transition: all ease-out 0.3s;
    }
    	
    a.over:hover{
    	opacity: 0.6;
    }

    a.circle{
        overflow: hidden;
        position: relative;
    	transition: all ease-out 0.3s;
    }

    a.circle:before{
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        display: block;
        content: '';
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    a.circle:hover:before{
        animation: circle .75s;
    }

	.sp{
		display: none;
	}

	.tab{
		display: inherit;
	}

    .inner{
        padding-left: 2vw;
        padding-right: 2vw;
    }

    #wrap{
        padding: 0 0 0;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


    /* block_title
       ================================================================== */	
    .block_title .jpn{
        font-size: 3.6vw;
    }

    .block_title .eng{
        font-size: 2.0vw;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
		width: 29.3vw;
        height: 8.1vw;
	}
	
    .anime_btn a .block_title .jpn{
        font-size: 2.3vw;
    }

    .anime_btn a .block_title .eng{
        font-size: 1.6vw;
    }
    
    
}
@media screen and (min-width : 1250px){

	
    a{
    	text-decoration: none;
    }

	a.disabled{
		pointer-events: none;
	}
    
    .inner{
        padding-left: 0;
        padding-right: 0;
    	max-width: 1200px;
    	margin: auto;
		box-sizing: border-box;
    }
    
    
    /* template
       ================================================================== */    
	p,
	a,
	li{
		font-size: 16px;
	}
 
	.tab{
		display: none;
	}

	.pc{
		display: inherit;
	}

    #wrap{
        padding: 0 0 0;
    	position: relative;
    }


    /* contents_wrap
       ================================================================== */
    .contents_wrap{
        padding: 0 0 0;
    }


    /* block_title
       ================================================================== */	
    .block_title .jpn{
        font-size: 36px;
    }

    .block_title .eng{
        font-size: 20px;
    }


	/* anime_btn
	   ================================================================== */
	.anime_btn a{
		width: 293px;
        height: 81px;
	}
	
    .anime_btn a .block_title .jpn{
        font-size: 23px;
    }

    .anime_btn a .block_title .eng{
        font-size: 16px;
    }

	
}
