@charset "UTF-8";


/*===================================================


	base.css

	reset
	独立スタイル
	フレーム
	loader
	header
	ハンバーガーメニュー
	スクロールダウン
	footer
	delighter
	swiper
	フォーム
	shutterView1
	shutterView2

====================================================*/


/*===================================================
	reset
====================================================*/
*{
	-webkit-touch-callout: none;
	user-select: none;
	outline:none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 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;
	vertical-align:baseline;
	background:transparent;
}
body {
	width: 100%;
	font-smoothing: antialiased;
	font-variant-numeric: tabular-nums;
	-webkit-font-smoothing: antialiased;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}
ul, ol {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	vertical-align:baseline;
	text-decoration: none;
	color: inherit;
}
input, select {
	vertical-align:middle;
}
img {
	vertical-align: bottom;
	line-height: 1.0;
}
button {
	line-height: 1.0;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
img{width:100%;}
.fas{display:inline;}

/*===================================================
	独立スタイル
====================================================*/

.pb0{padding-bottom: 0 !important;}
.pb5{padding-bottom: 5px !important;}
.pb10{padding-bottom: 10px !important;}
.pb15{padding-bottom: 15px !important;}
.pb20{padding-bottom: 20px !important;}
.pb30{padding-bottom: 30px !important;}
.pb40{padding-bottom: 40px !important;}

.mb0{margin-bottom: 0 !important;}
.mb5{margin-bottom: 5px !important;}
.mb10{margin-bottom: 10px !important;}
.mb15{margin-bottom: 15px !important;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px !important;}
.mb40{margin-bottom: 40px !important;}

.bold {font-weight: bold!important;}
.normal {font-weight: normal!important;}

.center {text-align: center!important;}
.left{text-align:left!important;}
.right{text-align:right!important;}

.red{color:#FF0000!important;}

.icon{padding: 0 5px 0 0;}

.pc{display:block;}
.sp{display:none;}




/*===================================================
	フレーム
====================================================*/
html, body {
    height: 100%;
    color: #000;
    font-family: 'Roboto',"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 0.12em;
    font-weight: 400;
	color: #000;
	line-height: 1.6em;
}
body {

}
.contentsBox{

}
.contentsBox .inBox{
	width: 1200px;
    margin: 0 auto;
    padding: 100px;
    box-sizing: border-box;
	position: relative;
}




/*===================================================
	共通
====================================================*/
.attentionList{

}
.attentionList li{
	font-size: 11px;
    line-height: 1.5em;
    text-indent: -18px;
    padding: 0 0 0 18px;
    margin: 0 0 5px;
}
.attentionList li:last-child{

}
/*===================================================
	loader
====================================================*/
.loader{
	position:fixed;
	height:100%;
	width:100%;
	background:#DDD;
    z-index:9999;
}




/*===================================================
	header
====================================================*/
header{
    display: flex;
    padding: 20px;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}
header h1{
	width: 150px;
}
header .navigation{
	display:block;
}
header .headerNav{
	display: flex;
    align-items: center;
}
header .headerNav li{
	padding: 0 0 0 40px;
    position: relative;
}
header .headerNav li:after{
	content: "／";
    position: absolute;
    right: -26px;
    font-size: 80%;
    opacity: 0.5;
}
header .headerNav li:last-child:after{
	content:none;
}
header .headerNav li a{
    font-weight: 400;
    font-size: 14px;
    position: relative;
    display: inline-block;
}
.hamBox {
    display: none;
}



/*===================================================
	header:ハンバーガーメニュー
====================================================*/
.hamBtn {
    display:none;
}

/*===================================================
	スクロールダウン
====================================================*/
.scrollarrow {
	width: 1px;
    height: 60px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    z-index: 1;
    background: #000;
    animation: scrollarrow 3s cubic-bezier(.19,1,.22,1) 0.5s infinite;
}
@keyframes scrollarrow{
	0% {clip-path: inset(0 0 100% 0);}
	25% {clip-path: inset(0 0 0 0);}
	75% {clip-path: inset(0 0 0 0);}
	100% {clip-path: inset(100% 0 0 0);}
}





/*===================================================
	footer
====================================================*/
footer{
    background: #000;
    padding: 80px;
}
footer .credit{
	color: #FFF;
    text-align: center;
    font-size: 10px;
}
/*===================================================
	delighter
====================================================*/
.delighter .inBox{
	transition:0.5s ease;
	opacity:0;
	transform:translateY(60px);
}
.delighter.started .inBox{
	opacity:1;
	transform:translateY(0);
}




/*===================================================
	swiper
====================================================*/
.swiper-wrapper {
	height: auto;
}




/*===================================================
	フォーム
====================================================*/


/*===== 基本スタイル統一 ========*/
.formReset input[type="text"],
.formReset input[type="tel"],
.formReset input[type="email"],
.formReset input[type="password"],
.formReset input[type="checkbox"],
.formReset input[type="date"],
.formReset input[type="radio"],
.formReset select,
.formReset button,
.formReset textarea {
    font-family: "Noto Sans Japanese","メイリオ", meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 100%;
    -webkit-appearance: none;
    line-height: 1.6em;
    letter-spacing: 0.05em;
}


/*===== テキスト ========*/
.formReset input[type="text"],
.formReset input[type="tel"],
.formReset input[type="email"],
.formReset input[type="password"],
.formReset input[type="date"],
.formReset select,
.formReset textarea{
    border: none;
	background: #eee;
    border-radius: 5px;
    padding: 15px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}


/*===== チェックボックス・ラジオボタン ========*/
.formReset input[type="checkbox"],
.formReset input[type="radio"]{
	opacity: 0;
    line-height: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}
.formReset input[type="checkbox"] + label,
.formReset input[type="radio"] + label{
	position:relative;
	padding:0 0 0 20px;
	cursor:pointer;
}
.formReset input[type="checkbox"] + label::before,
.formReset input[type="radio"] + label::before{
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    box-sizing: border-box;
}
.formReset input[type="checkbox"] + label::after,
.formReset input[type="radio"] + label::after{
    transition: 0.3s ease;
    content: "";
    width: 16px;
    height: 16px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    border-radius: 100px;
    box-sizing: border-box;
}
.formReset input[type="checkbox"]:checked + label::after,
.formReset input[type="radio"]:checked + label::after{
    transform: translateY(-50%) scale(0.5);
}

/*===== セレクトボックス ========*/
.formReset .formSelectbox{
	position:relative;
}
.formReset .formSelectbox:after{
    position: absolute;
    top: 50%;
    right: 5%;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000000;
    transform: translateY(-75%) rotate(135deg);
    z-index: 0;
}
.formReset select{
    border: none;
    background: #eee;
    border-radius: 5px;
    padding: 15px;
    display: block;
    width: 100%;
}


/*===== button ========*/
.formReset button{
	background: #000;
    color: #FFF;
    display: block;
    width: 400px;
    line-height: 1em;
    padding: 20px;
    font-size: 18px;
    text-align: center;
    margin: 0 auto 0;
}




/*===================================================
	shutterView1
====================================================*/


.shutterView1{
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.shutterView1:before{
	content: "　";
    position: absolute;
    background: #000;
    width: 0;
    height: 100%;
    left: 0;
    display: inline-block;
    z-index: 10;
}
.shutterView1 .shutIn{
	opacity:0;
}

.started .shutterView1:before{
	animation:viewingOut 1s ease forwards;
}
.started .shutterView1 .shutIn{
	animation:viewingIn 1s ease forwards;
}
@keyframes viewingIn{
	0%{width:0%;}
	48%{opacity:0;}
	52%{opacity:1;}
	100%{opacity:1;}
}
@keyframes viewingOut{
	0%{width:0%;opacity:1;}
	48%{width:100%;left: 0;}
	52%{width:100%;left: 0;}
	99%{left: 100%;opacity:1;}
	100%{left: 100%;opacity:0;}
}

/*===================================================
	shutterView2
====================================================*/


.shutterView2{
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.shutterView2 .shutIn{
    transform: translateY(100%);
    transition: 0.5s ease;
    display: inline-block;
}

.started .shutterView2 .shutIn{
	transform:translateY(0);
}

/*===================================================
	colorBox
====================================================*/
.groupHidde{
	display:none;
}




/*===================================================
	ホバーアクション
====================================================*/
.hovAct1 a{
	position:relative;
	overflow: hidden;
}
.hovAct1 a:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #aaa;
    position: absolute;
    left: 0;
    top: 0;
    z-index:0;
	transform: translateX(-100%);
	transform-origin: left;
	transition:0.3s;
}
.hovAct1 a:before{
    content: "";
    width: 100%;
    height: 100%;
    background: #aaa;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
	transform: translateX(100%);
    transition: 0s;
    transition-delay: 0.3s;
}
.hovAct1 a span{
    z-index:1;
    position:relative;
}
.hovAct1 a:hover:after{
	transform-origin: right;
	transform: translateX(0);
	transition:0;
}
.hovAct1 a:hover:before{
	transition:0.3s;
	transform-origin: right;
	transform: translateX(0);
}
/*===================================================

	レスポンシブPC

====================================================*/
@media screen and (min-width: 960px){
.sp{display:none;}

}




/*===================================================

	レスポンシブSP

====================================================*/
@media screen and (max-width: 960px){
.pc{display: none!important;}


/*===================================================
	レスポンシブSP：フレーム
====================================================*/
.contentsBox .inBox {
    width: 100%;
	padding: 10%;
}

/*===================================================
	レスポンシブSP：header
====================================================*/
header .headerNav {
    display: none;
}
/*===================================================
	レスポンシブSP：header:ハンバーガーメニュー
====================================================*/
.hamBtn {
	display: block;
    position: fixed;
    right: 0;
    top: 0;
    background: #FFF;
    padding: 10px;
    box-sizing: border-box;
	z-index: 12;
}
.hamBtn .hamMenu {
    width: 25px;
    height: 20px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 9999;
    position: relative;
}
.hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all .3s ease;
}
.hamBtn span:nth-of-type(1) {
    top: 0;
}
.hamBtn span:nth-of-type(2) {
    top: calc(50% - 1px);
}
.hamBtn span:nth-of-type(3) {
    bottom: 0;
}
.hamBtn span {
    transition: opacity 0.3s 0.5s, transform 0.3s 0.2s, top 0.3s 0.5s, bottom 0.3s 0.5s;
}
.hamBtn.open span {
    transition: opacity 0.3s 0.2s, transform 0.3s 0.5s, top 0.3s 0.2s, bottom 0.3s 0.2s;
}
.hamBtn.open span:nth-of-type(1) {
	top: calc(50% - 1px);
    transform: rotate(-45deg);
}
.hamBtn.open span:nth-of-type(2) {
	opacity: 0;
}
.hamBtn.open span:nth-of-type(3) {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
}
.hamBox{
    display: block;
    position: fixed;
    z-index: 11;
    height: 100%;
    width: 100%;
    background: #FFF;
    padding: 10%;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: 0.3s ease-in;
}
.hamBox.active{
    transform: translateX(0);
}
/*===================================================
	レスポンシブSP：フォーム
====================================================*/

/*===== button ========*/
.formReset button{

    width: 100%;
}

}

