@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------------------------------
　 　reset等
----------------------------------------------------------------------------------------------------------------------------------*/
*{
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	word-wrap:break-word;
    margin: 0;
    padding: 0;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {line-height:1;}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	cursor: pointer;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through;}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
/*--------------------------------------------------------------------------------------------------------------------------
　　基本スタイル
--------------------------------------------------------------------------------------------------------------------------*/
html {height: 100%;}
body {
	text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background: #fff;
	overflow-x: hidden;
    overscroll-behavior: none;
    -ms-overscroll-behavior: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
	 font-family: 'Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W4','メイリオ', 'Meiryo',sans-serif;
	font-size: 16px;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
 vertical-align: bottom;
}
ul,ol{
	list-style: none;
  letter-spacing: -0.5em;
}
li {letter-spacing: normal;}
a{
    text-decoration: none;
	display: inline-block;
    cursor: pointer;
}
/*--------------------------------------------------------------------------------------------------------------------------
　　共通
--------------------------------------------------------------------------------------------------------------------------*/
.wrapper{
    width: 100%;
    height: 100%;
    position: relative;
}
.page_wrapper{padding-top: 80px;}
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bold{font-weight: bold;}
.fixed {
    width: 100%;
    position: fixed;
    top:0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    height: 100%;
}
.a_center{text-align: center;}
.a_left{text-align: left;}

.relative{position: relative;}
.sp_on{display: none;}

.no_disp{display: none!important;}
@media print, screen and (max-width: 768px) {
.sp_on{display: inline-block!important;}
}
/*--------------------------------------------------------------------------------------------------------------------------
　　loading
--------------------------------------------------------------------------------------------------------------------------*/
.loading{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 20000;
}
.load_inner{
	width: 100%;
	height: 100vh;
	background: #442A8C;
	justify-content: center;
	align-items: center;
}
.load_anm{
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}
.ball{
    width:200px;
    height:60px;
	display: inline-block;
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}
@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}
@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.load_anm span{
	display: inline-block;
	margin-top: 30px;
    font-size: 125%;
    letter-spacing: 12px;
    color: #fff;
}
.loadborder{
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 30vh;
    overflow: hidden;
}
.load_logo{
    width: 100%;
    max-width: 292px;
    position: absolute;
    top: 29px;
    left: 50px;
}
@media print, screen and (max-width: 1150px) { 
.load_logo{ 
	max-width: 215px;
	left: 20px;
	top:31px;
	}
}
@media print, screen and (max-width: 768px) { 
.load_logo{max-width: 204px;}
}
/*--------------------------------------------------------------------------------------------------------------------------
　　header
--------------------------------------------------------------------------------------------------------------------------*/
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	padding: 0 40px;
	background: #fff;
	justify-content: space-between;
	align-items: center;
	z-index: 10000;
}
.logo{
	width: 100%;
	max-width: 292px;
}
.menu a{color: #000;}
.menu{
	width: calc(100% - 292px);
	justify-content: flex-end;
	align-items: flex-start;
}
.menu img{
	max-width: 200px;
	margin: 0 0 0 40px;
}
.menu_inner{
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}
.lan_menu{
	font-size: 88%;
	margin-bottom: 15px;
}
.lan_menu li{margin-right: 20px;}

.page_manu{font-size: 113%;}
.page_manu li{margin-right: 40px;}

.lan_menu li:last-child,
.page_manu li:last-child{margin-right: 0;}
@media print, screen and (max-width: 1300px) {
.page_manu li {margin-right: 20px;}
.menu img {margin: 0 0 0 30px;}
} 
@media print, screen and (max-width: 1150px) { 
.header{padding: 0 15px;}
.page_manu {font-size: 100%;}
.page_manu li {margin-right: 15px;}
.lan_menu {margin-bottom: 7px;}
.logo { max-width: 215px;}
.menu{width: calc(100% - 215px);}
}
@media print, screen and (max-width: 1000px) {
.menu{display: none;}
body.active .menu{
	width: 100%;
	max-width: 450px;
	position: fixed;
	top: 80px;
	right: 0;
	display: flex!important;
	justify-content: flex-start;
    flex-direction: column;
	z-index: 10001;
	background: #fff;
	padding: 22px 6%;
}
.menu_inner{
    justify-content: flex-start;
    align-items: flex-start;
}
.menu img{margin: 0;}
.page_manu {
	order: 1;
	font-size: 113%;
	}
.lan_menu{order: 2;}
.lan_menu li{margin-bottom: 20px;}
.page_manu li{
	width: 100%;
	margin-right: 0;
	margin-bottom:25px;
	}	
}
@media print, screen and (max-width: 768px) { 
.logo{max-width: 204px;}
.menu{width: calc(100% - 204px);}
}
/*--------------------------------------------------------------------------------------------------------------------------
　　footer
--------------------------------------------------------------------------------------------------------------------------*/
.footer{
	width: 100%;
	height: 200px;
	background: #000;
	color: #fff;
}
.footer_inner{
    width: 90%;
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
	padding: 40px 0 10px;
    flex-direction: column;
    justify-content: space-between;
	align-items: flex-start;
}
.f_left{
	width: 100%;
	justify-content: flex-start;
	align-items: center;
}
.f_lan_menu li{margin-bottom: 20px;}
.f_left a{color: #fff;}
.f_page_menu li{margin-right: 38px;}
.f_lan_menu li{margin-right: 20px;}
.f_lan_menu li:last-child,
.f_page_menu li:last-child{margin-right: 0;}
.f_page_menu a{font-size: 113%;}
.f_lan_menu a{font-size: 88%;}

.f_right{
	width: 100%;
	justify-content: flex-end;
	align-items: flex-end;
	flex-direction: column;
	font-size: 12px;
}
.f_right a{
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}
.f_brother{
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
}
.f_brother span{
	max-width:76px;
    display: inline-block;
    margin: 0px 0 0px 15px;
}
#page_top{
	width: 43px;
	height: 26px;
	background: url("../img/top_arrow.svg")no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	top: 20px;
	right: 10px;
}
@media print, screen and (max-width: 768px) { 
.footer{height: 400px;}
.footer_inner {padding: 65px 0 15px;}
.f_page_menu{
	align-items: flex-start;
	flex-direction: column;
	}
.f_page_menu li{
	margin-right:0;
	margin-bottom: 20px;
	}
.f_page_menu li:last-child{margin-bottom:0;}
.f_brother span {margin: 10px 0 0px 8px;}
}
@media print, screen and (max-width: 550px) { 
	#page_top{right: 10px;}
}
@media print, screen and (max-width: 400px) { 
.footer_inner{width: 93%;}
.f_brother span {
	max-width: 70px;
    margin: 10px 0 0px 7px;
}
}
/*----------------------------------------------------------------------------------------------------------------------------------
　 　toggle
----------------------------------------------------------------------------------------------------------------------------------*/
.toggle{display: none;}
@media print, screen and (max-width: 1000px) {
.toggle{
	display: inline-block;
	cursor: pointer;
	width: 30px;
	height: 25px;
}
.toggle span{
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #888888;
    transition: all .3s;
}
.toggle span:nth-of-type(1){top: 0px;}
.toggle span:nth-of-type(2){top: 11px;}
.toggle span:nth-of-type(3){bottom: 0;}
.toggle span:nth-of-type(3),
.toggle span:nth-of-type(1),
.toggle span:nth-of-type(2) {right: 0;}

/*----- active -------------*/
body.active .toggle span:nth-of-type(1){transform: rotate(45deg);}
body.active .toggle span:nth-of-type(2),
body.active .toggle span:nth-of-type(3){transform: rotate(-45deg);}
body.active .toggle span:nth-of-type(1) ,
body.active .toggle span:nth-of-type(2){top:11px;}
body.active .toggle span:nth-of-type(3){bottom:11px;}
}

/*----------------------------------------------------------------------------------------------------------------------------------
　 　scrolldown
----------------------------------------------------------------------------------------------------------------------------------*/
.scrolldown{
  position:absolute;
  left:50%;
  bottom:10px;
  height:50px;
    z-index: 4;
    text-shadow: 0px 0px 6px rgb(47,47,47,1);
}
.scrolldown span{
    position: absolute;
    left: -23px;
    top: -23px;
    color: #eee;
    font-size: 100%;
    letter-spacing: 0.05em;
}
.scrolldown::after{
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/*----------------------------------------------------------------------------------------------------------------------------------
　 　cookie
----------------------------------------------------------------------------------------------------------------------------------*/
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
}
.cookie_box{
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0,.7);
    padding: 20px;
	justify-content: space-between;
	align-items: center;
    z-index: 10000;
}
.cookie_box p{
	width:calc(100% - 230px);
	font-size: 88%;
	line-height: 160%;
}
.cookie_btn{
	color: #fff;
    background-color: #190099;
    align-items: center;
    justify-content: center;
	font-size: 100%;
    width: 200px;
    height: 50px;
}
@media print, screen and (max-width: 768px) { 
.cookie_box{padding: 20px 15px;}
	
.cookie_box p,
.cookie_btn{width: 100%;}
	
.cookie_box p{font-size: 82%;}
.cookie_btn{ 
	margin-top: 1rem;
	font-size: 88%;
	}
}