@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:768px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}

:root {
	/* デザインサイズ */
	--vw-min: 1200;
	--vh-min: 640;
	--max-percent: 1.6;/* 1920/1200 */

	/* フォント  */
	--font-ja: "M PLUS Rounded 1c", sans-serif;
	--font-en: "Modak", system-ui;
	--font-main: "M PLUS Rounded 1c", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

	/* カラー */
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-main: #eb8686;
	--color-main-rgb: 235, 134, 134;

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root {
		/* デザインサイズ */
		--vw-min: 750;
		--vh-min: 1314;
		--max-percent: 1;
	}
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--font-main);
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #B7D4F9;
	color: #000;
}
::-moz-selection{
	background: #B7D4F9;
	color: #000;
}
@media screen and (max-width:768px){
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
	body{
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar-thumb {
	background: #000;
	margin: 2px;
	box-shadow: none;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.85);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.oneModal.is-show {
	display: block;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:768px){
	.closeBtn{
		width:50px;
		height:50px;
	}
}

.closeBtn a {
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* img */
.closeBtn a:before {
	content: "";
	background: url(../img/common/icon/icon_close.png) no-repeat 0 0 / 100%;
	width: 100%;
	height: 100%;
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:768px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
		margin: 50px 0;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/**
 * Image Modal
 */
.imageModal__image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
}
.imageModal__image img{
	width: 100%;
	height: 100%;
	object-fit:scale-down;
}



/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 100%;
    position: sticky;
    top: 0;
}
@media screen and (max-width:768px){
	.header {
		position: absolute;
		bottom: 0;
		pointer-events: none;
	}
}

.header__cont{
	position: relative;
    top: 0;
	width: 100%;
}
@media screen and (max-width:768px){
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}


/* inner */
@media screen and (max-width:768px){
	.header__contInner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		padding: 0;
		opacity: 1;
		pointer-events: none;
		z-index: 2;
		opacity: 0;
		overscroll-behavior: contain;
		transition: opacity .2s ease-in-out;
	}
	.header.is-active .header__contInner {
		opacity: 1;
		pointer-events: auto;
	}
}


/** 
 * inner
**/
.header__inner{
	width: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header__inner:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
}
.header__innerCont{
	width: 100%;
	position: relative;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(48 / var(--vw-min) * 100vw), 48px);
	z-index: 1;
}
@media screen and (max-width:768px){
	.header__innerCont{
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
	}
}



/**
 * headerNav
 */
.headerNav,
.headerNav__inner,
.headerNav__cont {
	width: 100%;
	height: 100%;
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNavLists .navList {
	height: 100%;
}
@media screen and (max-width:768px){
	.headerNavLists {
		display: block;
	}
	.headerNavLists .navList {
		height: auto;
	}
	.headerNavLists .navList:not(:first-child) {
		margin-top: calc(20 / var(--vw-min) * 100vw);
	}
}

/* a */
.headerNavLists .navList__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 800;
	padding: 0 min(calc(20 / var(--vw-min) * 100vw), 20px);
	position: relative;
	text-decoration: none;
	color: var(--color-white);
}
@media screen and (max-width:768px){
	.headerNavLists .navList__link {
		display: block;
		color: #fff;
		height: auto;
		padding: calc(8 / var(--vw-min) * 100vw) 0;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		background-color: red;
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / var(--vw-min) * 100vw);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		pointer-events: auto;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}
	.header__navBtn__lineWrap {
		display: block;
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: #000;
		display: block;
		width: 100%;
		height: calc(4 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(4 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(4 / var(--vw-min) * 100vw));
		bottom: 0;
	}
}

/**
 * active
 */
@media screen and (max-width:768px){
	.header__inner:before{
		width: 0%;
		transition: width .25s ease;
	}
	.header.is-active .header__inner:before{
		width: 100%;
	}
	.header__innerCont{
		opacity: 0;
		transition: opacity .3s ease;
	}
	.header.is-active .header__innerCont{
		opacity: 1;
		transition-delay: .15s;
	}
	.header__navBtn--line {
		transition: transform .3s ease, opacity .3s ease;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		transform: rotate(45deg);
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-45deg);
		top: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * shareLists
 */
.shareLists {
	display: flex;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}

/* item */
.shareLists__item {
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-x .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_fb.svg);
	mask-image: url(../img/common/sns/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}



/**
* modalOpen
**/
.js-modalOpen{
	cursor: pointer;
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	width: 100%;
	padding-top: min(calc(80 / var(--vw-min) * 100vw), calc(80px * var(--max-percent)));
	margin-top: auto;
}
.footerIn{
	width: 100%;
	background-color: var(--color-black);
	color: var(--color-white);
	padding: min(calc(80 / var(--vw-min) * 100vw), 80px);
	border-top-left-radius: min(calc(80 / var(--vw-min) * 100vw), 80px);
	border-top-right-radius: min(calc(80 / var(--vw-min) * 100vw), 80px);
	position: relative;
}
.footer__toTop{
	position: absolute;
	top: 0;
	right: 0;
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
	margin-right: min(calc(40 / var(--vw-min) * 100vw), 40px);
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	z-index: 2;
}
.footer__toTop--link{
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	border-radius: 50%;
	background-color: var(--color-main);
}
.footer__toTop--link::after{
	content: '';
	position: absolute;
	top: 25%;/* 20 */
	left: 0;
	right: 0;
	width: 60%;/* 48 */
	height: 37.5%;/* 30 */
	margin: 0 auto;
	-webkit-mask: url(../img/common/arrow-t.svg) no-repeat center / contain;
	mask: url(../img/common/arrow-t.svg) no-repeat center / contain;
	background-color: var(--color-black);
}

@media screen and (hover:hover) and (pointer: fine){
	.footer__toTop--link:after{
		transition: transform .3s ease;
	}
	.footer__toTop--link:hover::after{
		transform: translateY(-12.5%);
	}
}


.footerIn__cont{
	position: relative;
	width: 100%;
	display: flex;
	padding-right: min(calc(220 / var(--vw-min) * 100vw), 220px);
}


.footer__sns{
	min-width: min(calc(220 / var(--vw-min) * 100vw), 220px);
	flex-shrink: 0;
	display: flex;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.footer__sns--dt{
	font-family: var(--font-en);
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	line-height: 1;
}
.footer__sns--dd{
	width: min(calc(20 / var(--vw-min) * 100vw), 20px);
	height: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.footer__sns--link{
	width: 100%;
	height: 100%;
	display: block;
	text-decoration: none;
	position: relative;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: var(--color-white);
}
.footer__sns--link[data-sns="x"]{
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}

.footerIn__contIn{
	width: 100%;
}
.footer__bannerLists{
	display: flex;
	justify-content: center;
	gap: min(calc(24 / var(--vw-min) * 100vw), 24px);
	margin-bottom: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.footer__bannerList{
	width: min(calc(320 / var(--vw-min) * 100vw), 320px);
}
.footer__bannerList a{
	display: block;
	width: 100%;
}
.footer__bannerList a img{
	width: 100%;
}

@media screen and (hover:hover) and (pointer: fine){
	.footer__bannerList a img{
		transition: filter .4s cubic-bezier(.59, -0.80, .2, 1.00), transform .4s cubic-bezier(.59, -0.80, .2, 1.00);
	}
	.footer__bannerList a:hover img{
		filter: brightness(112.5%);
		transform: scale(1.025);
	}
}


.footer__linkLists{
	width: 100%;
	display: flex;
	justify-content: center;
}
.footer__linkList{
	position: relative;
	line-height: 1;
	padding: 0 1em;
	display: flex;
}
.footer__linkList:not(:last-child):after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 1px;
	height: 100%;
	background-color: var(--color-white);
}
.footer__linkList--link{
	color: var(--color-white);
	text-decoration: none;
}
.footer__linkList--link > span{
	display: inline-block;
	position: relative;
	padding: 2px 0;
}

.footer__copyright{
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	color: #888;
	text-align: center;
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
	letter-spacing: 0;
}

@media screen and (hover:hover) and (pointer: fine){
	.footer__sns--link{
		transition: background-color .4s ease;
	}
	.footer__sns--link:hover{
		background-color: var(--color-main);
	}
	.footer__linkList--link{
		transition: color .3s ease;
	}
	.footer__linkList--link:hover{
		color: var(--color-main);
	}
	.footer__linkList--link > span:before{
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: var(--color-main);
		width: 0;
		margin: 0 auto;
		height: 1px;
		transition: width .3s ease;
	}
	.footer__linkList--link:hover > span:before{
		width: 100%;
	}
}

@media screen and (max-width:768px){
	.footer{
		padding-top: calc(96 / var(--vw-min) * 100vw);
	}
	.footerIn{
		padding: calc(48 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw) calc(96 / var(--vw-min) * 100vw);
		border-top-right-radius: calc(96 / var(--vw-min) * 100vw);
		border-top-left-radius: calc(96 / var(--vw-min) * 100vw);
	}
	.footer__toTop{
		margin-top: calc(48 / var(--vw-min) * 100vw);
		margin-right: calc(48 / var(--vw-min) * 100vw);
		width: calc(96 / var(--vw-min) * 100vw);
		height: calc(96 / var(--vw-min) * 100vw);
	}
	.footerIn__cont{
		flex-direction: column;
		padding-right: unset;
	}
	.footer__sns{
		width: 100%;
		min-width: 100%;
		justify-content: center;
		align-items: center;
		height: calc(96 / var(--vw-min) * 100vw);
		padding-left: calc(24 / var(--vw-min) * 100vw);
		padding-right: calc(24 / var(--vw-min) * 100vw);
		gap: calc(24 / var(--vw-min) * 100vw);
	}
	.footer__sns--dt{
		font-size: calc(26 / var(--vw-min) * 100vw);
		padding-top: 0.25em;
	}
	.footer__sns--dd{
		width: calc(32 / var(--vw-min) * 100vw);
		height: calc(32 / var(--vw-min) * 100vw);
	}
	.footer__bannerLists{
		flex-wrap: wrap;
		gap: calc(24 / var(--vw-min) * 100vw);
		margin-top: calc(24 / var(--vw-min) * 100vw);
	}
	.footer__bannerList{
		width: calc(320 / var(--vw-min) * 100vw);
	}
	.footer__linkLists{
		margin-top: calc(48 / var(--vw-min) * 100vw);
	}
	.footer__copyright{
		font-size: calc(20 / var(--vw-min) * 100vw);
		margin-top: calc(96 / var(--vw-min) * 100vw);
	}
}