@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');
@font-face {
	font-family: "american-typewriter";
	font-weight: 400;
	src: url("fonts/american-typewriter.woff2") format("woff2"),
		 url("fonts/american-typewriter.woff") format("woff");
}
@font-face {
	font-family: "mplus-1m";
	font-weight: 700;
	src: url("fonts/mplus-1m.woff2") format("woff2"),
		 url("fonts/mplus-1m.woff") format("woff");
}
html,
body{
	text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	margin:0;
	padding:0;
	color:#000;
	/*font-family: yu-gothic-pr6n, sans-serif;*/
	font-family: "mplus-1m";
	font-weight: bold;
	font-size:14px;
	line-height:1;
	letter-spacing: 0.025em;
}
a{
	color: #3b2d2d;
}
@media (min-width: 751px) {
	a{
		transition: all 0.4s ease;
	}
	a:hover{
		opacity: 0.6;
	}
}
@media (max-width: 750px) {
	html,body{
		font-size:13px;
		width: 100%;
		overflow-x: hidden;
	}
	img{
		width:100%;
		height: auto;
	}
}

/********************************************
common
********************************************/
.w1200{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.w1140{
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}
.cep{
	display: flex;
	justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;
}

.font__american-typewriter{
	font-family: 'american-typewriter', sans-serif;
	font-weight: 400;
}
.font__noto{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.icon{
    background-repeat: no-repeat;
    background-position: center left;
}

#wrapper{
	background: #FFF;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
@media (min-width: 751px) {
	.pchidden{
		display:none!important;
	}
}
@media (max-width: 750px) {
	.sphidden{
		display: none!important;
	}
	#wrapper{
		padding:0;
		width: 100%;
	}
}


/********************************************
btn
********************************************/
.btn{
	width: 468px;
	margin: 0 auto 0;
}
.btn a{
	display: flex;
	justify-content:center;
	align-items: center;
	width: 100%;
	height: 120px;
	font-size: 36px;
	letter-spacing: 0.025em;
	line-height: 1;
	text-align: center;
	color: #FFF;
	background: #fa04ac;
}
@media (max-width: 750px) {
	.btn{
		width: 180px;
	}
	.btn a{
		height: 38px;
		font-size: 18px;
	}
}


/********************************************
whitespace link
********************************************/
.moreLink,
.moreLink a{
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    font-size: 0;
    text-indent: -9999px;
}

/********************************************
header
********************************************/
#head{
	z-index: 100;
	background: #FFF;
	height: 60px;
	width: 100%;
}
.head__inner{
	z-index: 100;
	background:rgba(255,255,255,0.95);
	height: 60px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.head__title{
	text-align: center;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.05em;
	font-weight: 300;
}
.head__title h1{
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 137px;
	height: 31px;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.head__title h1 a{
	font-size: 0;
	text-indent: -9999px;
	display: block;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
@media (max-width: 750px) {
	#head{
		width: 100%;
		height: 48px;
	}
	.head__inner{
		height: 48px;
	}
	.head__title{
		text-align: left;
		font-size: 16px;
	}
	.head__title h1{
		margin: 0;
		width: 108px;
		height: 24px;
		top: 14px;
		left: 4%;
		transform: translate(0);
	}
	.head__title h1 a{
		background-image: url(../images/header_logo_sp.png);
	}
}


#head__menu{
	position: fixed;
    left: -20%;
    top: 60px;
    width: 20%;
    height: calc( 100% - 60px );
    background: rgba(255,255,255,0.95);
	transition: all 0.6s ease;
}
.open #head__menu{
    left: 0%;
}
#head__menu .head__menu__inner {
	width: 100%;
    height: 100%;
}

#head__menu ul a{
	font-size:14px ;
	font-weight: bold;
}
#head__menu .head__menu__inner ul{
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	align-content: center;
    width: 100%;
    height: 100%;
}
#head__menu .head__menu__inner ul li{
	width: 100%;
	margin: 20px 0;
	text-align: center;
}



#menu__btn{
    position: absolute;
    top: 16px;
    left: 1%;
    width: 35px;
    height: 27px;
	z-index: 110;
	cursor: pointer;
	transition : all 0.3s ease;
}
#menu__btn span{
	display: block;
    width: 100%;
    height: 4px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 200;
    margin-top: -2px;
    transition: all 0.3s ease;
}
#menu__btn:before,
#menu__btn:after{
	content: "";
	display: block;
	width:100%;
	height: 4px;
	background: #000;
	position: absolute;
	top:0;
	left:0;
	z-index: 200;
	transition : all 0.3s ease;
}
#menu__btn:after{
	top: auto;
	bottom: 0;
}
.open #menu__btn span{
	width: 0;
	left: 50%;
}
.open #menu__btn:before{
	transform:translateY(-50%) rotate(-45deg);
	margin-top: 12px;
}
.open #menu__btn:after{
	transform:translateY(-50%) rotate(45deg);
	margin-bottom: 12px;
}
.open #sp__menu__btn span{
	width: 0;
	height: 0;
}
.open #sp__menu__btn::before{
	transform: rotate(45deg);
	top: 10px;
}
.open #sp__menu__btn::after{
	transform: rotate(-45deg);
	bottom: 10px;
}
@media (min-width: 751px) {
	
}

@media (max-width: 750px) {
	#menu__btn{
		width: 26px;
		height: 20px;
		left: auto;
		right: 4%;
	}
	#menu__btn span{
		height: 3px;
		margin-top: -2px;
	}
	#menu__btn:before,
	#menu__btn:after{
		height: 3px;
	}
	.open #menu__btn:before{
		margin-top: 8px;
	}
	.open #menu__btn:after{
		margin-bottom: 8px;
	}

	#head__menu{
		width: 40%;
		top: 48px;
		height: calc( 100% - 48px );
		left: auto;
		right: -40%;
	}
	.open #head__menu{
		left: auto;
		right: 0;
	}
}


/********************************************
footer
********************************************/
.foot__inq{
	margin-bottom: 250px;
	padding-top: 120px;
}
.foot__inq .inq__btn{
	width: 47.5%;
	height: 60px;
}
.foot__inq .inq__btn a{
	background: #dc6f6c;
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.foot__inq .inq__btn.white a{
	border:1px #dc6f6c solid;
	background: #FFF;
}
@media (max-width: 750px) {
	.foot__inq{
		margin-bottom: 75px;
    	padding: 45px 5% 0;
	}
	.foot__inq .inq__btn{
		width: 100%;
	}
	.foot__inq .inq__btn a{
		padding: 0px 12%;
	}
}


/********************************************
footer
********************************************/
#foot{
	background: #FFF;
	z-index: 1;
	position: relative;
}
.foot__box{
	width: 100%;
	max-width: 1630px;
	margin: 0 auto;
	position: relative;
	color: #333;
	font-weight: 500;
}
#foot .cep{
	align-items: flex-start;
}
#foot .w1630{
	padding: 0 90px 180px 70px;
	border-bottom: 1px #000 solid;
}


.foot__text dt{
	font-size:24px;
	margin-bottom: 15px;
	font-weight: bold;
}
.foot__text dd{
	font-size: 16px;
	line-height: 1.875;
}

.foot__menu li{
	font-size: 24px;
	line-height: 1;
	margin-bottom: 30px;
}

#foot address{
	text-align: center;
	font-style: normal;
	font-size: 18px;
	padding: 25px 0 25px;
	font-weight: bold;
}

@media (max-width: 750px) {
	#foot{
		padding:0;
	}
	#foot .w1630{
		padding: 0 2% 100px
	}
	#foot .cep{
		justify-content: flex-end;
	}
	.foot__text{
		width: 100%;
		text-align: center;
	}
	.foot__text dl dt{
		font-size: 20px;
	}
	.foot__text dl dd{
		font-size: 12px;
		margin-bottom: 70px;
	}

	.foot__menu{
		margin-right: 6%;
	}
	.foot__menu li{
		font-size: 16px;
		margin-bottom: 20px;
	}
	#foot address{
		font-size: 10px;
		padding: 15px 0 20px
	}
}

/********************************************
totop
********************************************/
.fixed__arrow.more{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    transform: rotate(-90deg);
    transform-origin :40% -20% 0;
}
.fixed__arrow.more a{
    align-items: center;
    color: #27a4d1;
    font-size: 12px;
}
.fixed__arrow.more .arrow{
    background-color:#27a4d1 ;
	background-image: url(../images/arrow.png);
	margin-left:20px;
}
@media (max-width: 750px) {
	.fixed__arrow.more{
		bottom: 10px;
		right: 15px;
	}
	.fixed__arrow.more a{
		font-size: 11px;
	}
	.fixed__arrow.more .arrow{
		background-color:#27a4d1 ;
		background-image: url(../images/arrow.png);
		margin-left:10px;
	}
}

/********************************************
TOP moview
********************************************/
.top__moivew{
	width: 100%;
	height: 47.79vw;
}
.moivew__area{
	position: fixed;
	z-index: 0;
	width: 100%;
	height: 100%;
}
.top__moivew video{
	width: 100%;
	height: 100%;
	display: block;
}
@media (max-width: 750px) {
	.top__moivew{
		height: 157.46vw;
	}
}

/********************************************
TOP main banner
********************************************/
#top__main{
	padding-bottom: 150px;
	background: #FFF;
	position: relative;
	z-index: 1;
}
.top__main__banner{
	width: 100%;
	height: 1080px;
	position: relative;
	background-image: url(../images/top_main_image.jpg);
	background-position: center;
	background-repeat: no-repeat;
}
.top__main__banner p{
	position: absolute;
	width: 98%;
	left: 1%;
	bottom: 18px;
}
.top__main__banner p img{
	width: 100%;
}
@media (max-width: 750px) {
	#top__main{
		padding-bottom: 33px;
	}
	.top__main__banner{
		background-image: url(../images/top_main_image_sp.jpg);
		background-size: cover;
		height: 160vw;
	}
	
}

/********************************************
top slide
********************************************/
.top__slide{
	padding-bottom: 150px;
	background: #FFF;
	position: relative;
	z-index: 1;
}
.top__slide img{
	width: 100%;
	height: auto;
}
.top__slide .slider__box{
	padding: 0 2.5px;
}
.top__slide .slider{
	margin-bottom: 130px;
}
@media (max-width: 750px) {
	.top__slide{
		padding-bottom: 75px;
	}
	.top__slide .slider{
		margin-bottom: 35px;
	}
}

/********************************************
top fav item
********************************************/
.top__fav__item{
	background: #FFF;
	position: relative;
	z-index: 1;
}
.fav__image__box{
	padding:65px 5% 85px;
	text-align: center;
	background-image: url(../images/back_strip.gif);
}
.top__fav__item img{
	max-width: 1386px;
	width: 100%;
	height: auto;
}
.fav__image__box.back__aqua{
	background-image: url(../images/back_aqua.gif);
}
@media (max-width: 750px) {
	.fav__image__box{
		padding:90px 6% 90px;
		background-size: 2px auto;
	}
	.fav__image__box.back__aqua{
		background-size: 200px auto;
	}
}

.fav__items{
	padding:155px 0 280px;
	text-align: center;
}
.fav__items .fav__title{
	font-size: 31px;
	text-align: center;
	font-weight: bold;
}
.fav__items .fav__title span{
	display: block;
	font-size: 18px;
}
.fav__items__list{
	display: flex;
	justify-content: space-between;
	max-width: 1680px;
	margin: 30px auto 0;
}
.fav__items__list dl{
	width: 24%;
}
.fav__items__list dl dt{
	border: 3px #100d0d solid;
	border-radius: 4px;
	margin-bottom: 25px;
	position: relative;
}
.fav__items__list dl dt .back{
	position: absolute;
	top: 0;
	left: 0;
}
.fav__items__list dl dt img{
	width: 100%;
}

.fav__items__list dl dd{
	position: relative;
}
.fav__items__list dl dd .back{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}
.fav__items__list dl .front{
	animation:show_1 infinite 6s linear;
}
.fav__items__list dl .back{
	animation:show_2 infinite 6s linear;
}
@keyframes show_1{
    0%,25%{
        opacity: 1;
    }
    55%,80%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes show_2{
    0%,25%{
        opacity: 0;
    }
    55%,80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media (max-width: 750px) {
	.fav__items{
		padding: 55px 0 35px;
	}
	.fav__items .fav__title{
		font-size: 20px;
	}
	.fav__items .fav__title span{
		font-size: 10px;
	}
	.fav__items__list{
		margin: 25px auto 0;
		flex-wrap: wrap;
		padding: 0 1%;
	}
	.fav__items__list dl{
		width: 46%;
		margin: 0 2% 35px;
	}
	.fav__items__list dl dt{
		border-width: 2px;
		margin-bottom: 8px;
	}
	.fav__items__list dl dd{
		font-size: 10px;
	}
}

/********************************************
top__middle
********************************************/
.top__middle{
	background: #FFF;
	position: relative;
	z-index: 1;
}
.top__middle img{
	width: 100%;
	height: auto;
}

/********************************************
top__under
********************************************/
.top__under{
	padding-top: 130px;
	padding-bottom: 170px;
	background: #FFF;
	position: relative;
	z-index: 1;
}
.top__under img{
	width: 100%;
	height: auto;
}

.under__photo__last{
	margin-top: 170px;
	position: relative;
}
.under__photo__last dt::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(225, 76, 111, 0.65);
}

.under__photo__last dd{
	position: absolute;
	width: 95%;
	left: 2.5%;
	bottom: 5%;
}
.under__photo__last dd img{
	width: 100%;
	height: auto;
}

.top__under .btn{
	margin: 160px auto 0;
}
@media (max-width: 750px) {
	.top__under {
		padding-top: 72px;
		padding-bottom: 125px;
	}
	.under__photo__last {
		margin-top: 50px;
	}
	.top__under .btn{
		margin: 65px auto 0;
	}
}

/********************************************
animation
********************************************/

.fadeIn{
    opacity: 0;
    transition: all 1.2s ease;
}
.fadeIn.under__fade{
	transform: translateY(100px);
}
.fadeIn.fade__left{
	transform: translateX(-100px);
}
.fadeIn.fade__right{
	transform: translateX(100px);
}
.fadeIn.scrollIn{
    opacity: 1;
}
.fadeIn.scrollIn.under__fade{
	transform: translateY(0);
}
.fadeIn.scrollIn.fade__left,
.fadeIn.scrollIn.fade__right{
	transform: translateX(0);
}

/********************************************
ABOUT
********************************************/
.about__main dl{
	position: relative;
}
.about__main dt img{
	width: 100%;
	height: auto;
}
.about__main dt::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(150, 76, 225, 0.65);
}
.about__main dd{
	position: absolute;
	width: 95%;
	left: 2.5%;
	bottom: 5%;
}
.about__main dd img{
	width: 100%;
	height: auto;
}

.about__desc__text{
	text-align: center;
	padding: 270px 0 400px;
	font-size: 20px;
	line-height: 3;
}
@media (max-width: 750px) {
	.about__desc__text{
		padding: 70px 0 110px;
		font-size: 12px;
		line-height: 2.5;
	}
}

/********************************************
COMPANY
********************************************/
.under__main{
	width: 100%;
	height: 190px;
	background: #f640ab;
	display: flex;
	justify-content: center;
	align-items: center;
}

.company__desc{
	max-width: 540px;
	margin: 230px auto 250px;
	color: #969393;
}
.company__desc__box dl{
	display: flex;
	padding-bottom: 30px;
}
.company__desc__box dl dt{
	width: 130px;
}
.company__desc__box dl dd{
	width: calc( 100% - 130px );
}
@media (max-width: 750px) {
	.under__main{
		height: 94px;
	}
	.under__main img{
		width: auto;
		height: 12px;
	}
	.company__desc{
		margin: 90px auto 140px;
		width: 90%;
		font-size: 12px;
	}
	.company__desc__box dl{
		padding-bottom: 16px;
	}
	.company__desc__box dl dt{
		width: 70px;
	}
	.company__desc__box dl dd{
		width: calc( 100% - 70px );
	}
}

/********************************************
CONTACT
********************************************/
.under__main.contact__main{
	background: #b07ee8;
}
.contact__desc .title{
	text-align: center;
	font-size: 18px;
	margin: 70px 0 90px;
	color: #969393;
}
.contact__desc__box{
	max-width: 760px;
	margin: 0 auto 50px;
	color: #969393;
}
.contact__desc__box dl dt{
	font-size: 18px;
	font-weight: 500;
}
.contact__desc__box dl .size_l{
	font-size: 18px;
	font-weight: 500;
	margin: 15px 0 20px;
}
.contact__desc__box .caution{
	padding:20px 0 70px;
	font-size: 12px;
}
@media (max-width: 750px) {
	.contact__desc .title{
		margin: 35px 0 35px;
		font-size: 13px;
	}
	.contact__desc__box{
		margin: 0 auto 60px;
		padding: 0 5%;
	}
	.contact__desc__box dl{
		text-align: center;
	}
	.contact__desc__box dl dt{
		font-size: 15px;
	}
	.contact__desc__box dl .size_l{
		font-size: 12px;
		margin: 10px 0 20px;
	}
	.contact__btn img{
		width: 120px;
		height: auto;
	}
	.contact__desc__box .caution{
		padding:13px 0 70px;
		font-size: 10px;
	}
}

