@charset "utf-8";


@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/YakuHanJP/YakuHanJP-Light.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Light.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/YakuHanJP/YakuHanJP-Medium.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Medium.woff") format("woff");
}

@font-face {
    font-family: "YakuHanJP";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"),
    url("../fonts/YakuHanJP/YakuHanJP-Bold.woff") format("woff");
}


* {
	margin: 0;
	padding: 0;
	-webkit-backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	height: 100%;
	background: transparent;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-weight: 300;
	font-size: 16px;
	font-family: YakuHanRP, "Hiragino Sans", "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", verdana, sans-serif;
	font-feature-settings: 'palt' 1;
	text-align: center;
	line-height: 2;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.1em;
	color: #e0e4e5;
	background: url(../images/common/header/noise.webp) center top rgba(35, 40, 43, 1);
	background-size: 150px auto;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 300;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

p {
	padding: 0;
	margin: 0;
}

img {
	width: 100%;
	-webkit-touch-callout: none;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
}

a {
	word-break: break-all;
	text-decoration: underline;
	color: #e0e4e5;
	outline: none;
	transition: opacity 0.4s cubic-bezier(.57,0,.26,1);
}

a:active,
a:hover,
a:focus {
	outline: none;
}

@media (any-hover: hover) {
	a:hover {
		opacity: .4;
	}
}


table {
	border-collapse: collapse;
}

.wrapper ::before,
.wrapper ::after {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-feature-settings: normal;
}

button {
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
		outline: none;
		border: none;
		background: none;
}

@-webkit-keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

@keyframes fadeIn {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

@-webkit-keyframes fadeOut {
	0% { opacity: 1;}
	100% { opacity: 0;}
}

@keyframes fadeOut {
	0% { opacity: 1;}
	100% { opacity: 0;}
}


/*--------------------------------------
loading
--------------------------------------*/


.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/common/header/noise.webp) center top, linear-gradient(180deg, rgba(35,40,43,1) 0%, rgba(58,65,70,1) 100%);
	background-size: 150px auto;
	z-index: 5000;
}

.loading p {
	margin: -30px 0 0 -30px;
	padding-top: 58px;
	overflow: hidden;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 0;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 0.75s infinite linear;
	z-index: 5002;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.loading::before {
	content: "";
	margin: -30px 0 0 -30px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(0, 0, 0, .5);
	border-radius: 50%;
	z-index: 5001;
}



/*--------------------------------------
コンテンツ
--------------------------------------*/
.wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 100%;
	min-height: 100vh;
}

#home .wrapper {
}

.container {
	padding-bottom: 0;
	position: static;
	overflow: hidden;
	text-align: left;
	width: 100%;
	height: auto;
	z-index: 3000;
}

#home .container {
	padding-bottom: 0;
	position: static;
}

/*--------------------------------------
header
--------------------------------------*/
#top {
}

#home #top {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 101;
}

.siteTitle {
	margin: 0 auto;
padding-top: 15%;
	overflow: hidden;
	width: 90%;
	height: 0;
	background: url(../images/common/header/title.svg) no-repeat center center;
	background-size: 100% auto;
}

#home .siteTitle {
padding: 0;
	overflow: hidden;
	height: 0;
	background: none;
}


nav {
z-index: 100;
}

.sns-link {
	padding: 8px 12px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	display:flex;
	justify-content: end;
	align-items: center;
	width: 100%;
	flex: 1;
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(.57,0,.26,1) 0s;
	z-index: 100;
	}

#top.active .sns-link {
	opacity: 1;
	}


.sns-link li {
	width: 3.2vw;
	max-width: 34px;
}

.sns-link .facebook a,
.sns-link .x a {
	padding-top: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
}

.sns-link .x a {
	background: url(../images/common/nav/sns/x.svg) no-repeat center center;
	background-size: 100% auto;
}

.sns-link .facebook a {
	background: url(../images/common/nav/sns/facebook.svg) no-repeat center center;
	background-size: 100% auto;
}


/* ページ上部エラー表示 */
#errorWrap {
	margin-left: -50%;
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	height: 50px;
	z-index: 3001;
}

#errorWrap a {
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	background: #ef0627;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 0px 8px 3px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.5) 0px 0px 8px 3px;
	-moz-box-shadow:rgba(0, 0, 0, 0.5) 0px 0px 8px 3px;
}

#errorWrap p {
	padding-left: 36px;
	position: relative;
	display: inline-block;
}

#errorWrap p::before {
	content: "";
	margin-top: -10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 9px;
	width: 12px;
	height: 12px;
	transform: rotate(-45deg);
	border-bottom: solid 1px #ff0000;
	border-left: solid 1px #ff0000;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	z-index: 104;
}

#errorWrap p::after {
	content: "";
	margin-top: -16px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 31px;
	height: 31px;
	background: #fff;
	border-radius: 50%;
	z-index: 103;
}

#errorWrap a:hover {
	opacity: 1;
	background: #5c0d0d;
}

#errorWrap a:hover p::before {
	border-bottom: solid 1px #5c0d0d;
	border-left: solid 1px #5c0d0d;
}

#errorWrap br {
	display: none;
}


#top .scroll {
	padding: 0 0 14.5em;
	overflow: hidden;
	position: absolute;
	bottom: 2%;
	right: 0.3%;
	width: 1.4em;
	opacity: 0;
	font-size: 14px;
	transition: opacity 0.5s cubic-bezier(.17,.67,.6,.92) 0s;
	z-index: 122;
}

#top.active .scroll {
	opacity: 1;
}

#top.active.up .scroll {
	opacity: 0;
}

.scroll p {
	padding-top: 9em;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	height: 0;
	width: 1px;
}

.scroll p::before,
.scroll p::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 1px;
	height: 100%;
	background: #e0e4e5;
	opacity: .3;
	mix-blend-mode: multiply;
}

.scroll p::after {
	opacity: 1;
	mix-blend-mode: normal;
	background: #e0e4e5;
	-webkit-animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
	animation: scrollDown 3s cubic-bezier(.17,.67,.07,.99) 0s infinite forwards;
}

/* scrollDown */
@-webkit-keyframes scrollDown {
	0% { transform: translate3d(0, -100%, 0);}
	100% { transform: translate3d(0, 100%, 0);}
}

@keyframes scrollDown {
	0% { transform: translate3d(0, -100%, 0);}
	100% { transform: translate3d(0, 100%, 0);}
}

.scroll::before {
	content: "SCROLL";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
	writing-mode: vertical-rl;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: #e0e4e5;
	-webkit-user-select: none;
	user-select: none;
}



/*--------------------------------------
 * コンテンツ
 * ---------------------------------------*/

.primary {
	position: relative;
	width: 100%;
	background:  url(../images/common/header/noise.webp) center top #434a4e;
	background-size: 150px auto;
	z-index: 100;
}

#home .primary {
	padding: 100vh 0 0 0;
	background: none;
}

.primary section {
	padding: 80px 0;
	position: relative;
	will-change: transform;
	z-index: 12;
}

.kt {
	padding-top: 100vh;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: url(../images/common/header/noise.webp) center top, linear-gradient(180deg, rgba(35,40,43,1) 0%, rgba(58,65,70,1) 100%);
	background-size: 150px auto;
	z-index: 11;
}

.kt::before {
	content: "";
	padding-top: 100vh;
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 0;
	background: url(../images/common/header/noise.webp) center top, linear-gradient(180deg, rgba(35,40,43,1) 0%, rgba(58,65,70,1) 100%);
	background-size: 150px auto;
	z-index: 12;
}

.kt::after {
	content: "";
	padding-top: 85vh;
	position: absolute;
	top: 50%;
	right: 3%;
	overflow: hidden;
	width: 44%;
	height: 0;
	opacity: 0;
	background: url(../images/home/header/title.svg) no-repeat center center;
	background-size: contain;
	transform: translateY(-50%);
	z-index: 13;
}

body.active .kt::after {
	animation: fadeIn 2s cubic-bezier(.17,.67,.6,.92) 0.5s 1 forwards;
}

.kt img {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	opacity: 0;
	transform: scale(1.2);
	background: url(../images/home/header/photo.webp) no-repeat center top fixed #3b4549;
	background-size: cover;
	backface-visibility:hidden;
	transform: perspective(0);
	filter: brightness(3);
	transition: filter 0s cubic-bezier(0, 2.5, 0.2, 2.5);
	z-index: 11;
}

body.active .kt img {
	opacity: 0;
	transform: scale(1.2);
	filter: brightness(1);
	transition: filter 3s;
	-webkit-animation: photo 4s cubic-bezier(.17,.67,.6,.92) 1 forwards;
	animation: photo 4s cubic-bezier(.17,.67,.6,.92) 1 forwards;
}

@-webkit-keyframes photo {
	0% { opacity: 0; transform: scale(1.2);}
	30% { opacity: 1;}
	80% { transform: scale(1);}
	100% { opacity: 1; transform: scale(1);}
}

@keyframes photo {
	0% { opacity: 0; transform: scale(1.2);}
	80% { transform: scale(1);}
	100% { opacity: 1; transform: scale(1);}
}

.notice li:not(:last-child) {
	padding-bottom: 4px;
}

.notice li {
	padding-top: 4px;
	display: flex;
	align-items: start;
}

.notice li::before {
	content: "※";
	font-size: 13px;
	line-height: 1.7;
}

.notice p {
	font-size: 13px;
	line-height: 1.7;
	text-align: left;
}

.notice li::before {
	content: "※";
}

.primary section {
	position: relative;
	width: 100%;
	background: url(../images/common/header/noise.webp) center top rgba(35, 40, 43, 1);
	background-size: 150px auto;
}

.primary section .contents {
	margin: 0 auto;
	padding: 0 64px 0;
	position: relative;
	max-width: 1240px;
	width: 100%;
	z-index: 2;
}

@media only screen and (max-width: 1080px) {
	.primary section .contents {
		padding: 0 48px 0;
	}
}



section .item {
	opacity: 0;
	transform: translateY(3vh);
	transition: opacity 1s cubic-bezier(.57,0,.26,1) 0s, transform 1s cubic-bezier(.57,0,.26,1) 0s;
}

section .item.active {
	opacity: 1;
	transform: translateY(0);
}

/* introduction */
section#introduction {
	position: relative;
	background:  url(../images/common/header/noise.webp) center top #434a4e;
	background-size: 150px auto;
}

section#introduction::after {
	content: "";
	padding-top: 380px;
	position: absolute;
	top: 50%;
	left: calc(50% + 270px);
	display: block;
	width: 360px;
	height: 0;
	background: url(../images/home/catch/case.webp) no-repeat center center;
	background-size: 100% auto;
	transform: translateY(calc(-50% - 5px));
}

#introduction .catch,
#introduction .lead {
	margin: 0 auto;
	position: relative;
	max-width: 1240px;
	width: 100%;
	font-weight: 500;
}

#introduction .catch::before,
#introduction .catch::after {
	content: "";
	position: absolute;
	top: 0;
	left: 64px;
	display: block;
	width: calc(100% - 64px - 380px);
	height: 1px;
	background: #e0e4e5;
}

#introduction .catch::after {
	top: auto;
	bottom: 0;
}

#introduction .catch {
	padding: 16px 380px 16px 64px;
	font-size: 26px;
}

#introduction .lead {
	padding: 16px 380px 0 64px;
	font-size: 22px;
}

@media only screen and (max-width: 1340px) {
	section#introduction::after {
		padding-top: 27%;
		left: 72%;
		width: 25%;
		transform: translateY(calc(-50% - 5px));
	}

	#introduction .catch {
		padding-right: 30%;
		font-size: 2vw;
	}

	#introduction .lead {
		padding-right: 30%;
		font-size: 1.5vw;
	}

	#introduction .catch::before,
	#introduction .catch::after {
		width: calc(100% - 64px - 30%);
	}
}

@media only screen and (max-width: 1080px) {


	#introduction .catch {
		padding: 16px 30% 16px 48px;
	}

	#introduction .lead {
		padding: 16px 30% 0 48px;
		font-size: 18px;
	}

	#introduction .catch::before,
	#introduction .catch::after {
		left: 48px;
		width: calc(100% - 48px - 30%);
	}

}


#detail {
	padding: 120px 0 0;
}

#detail h2 {
	padding: 0;
	overflow: hidden;
	height: 0;
}

#detail .present {
	display: none;
}

#detail .contents > ul > li {
	padding-bottom: 80px;
}

#detail .contents > ul > li > dl > dt {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11em;
	font-size: 22px;
	font-weight: 700;
	line-height: 2.8;
	background:  url(../images/common/header/noise.webp) center top #434a4e;
	background-size: 150px auto;
}

#detail .contents > ul > li > dl > dd {
	padding-top: 16px;
}

#detail .flow > dl > dd {
	padding-top: 32px !important;
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 24px;
}

#detail .flow > dl > dd > dl {
	position: relative;
	padding-left: calc(32% / 2 + 8px);
	width: calc((100% - 24px) / 2);
}

#detail .flow > dl > dd > dl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 44%;
	display: block;
	width: 32%;
	height: 0;
	background: url(../images/home/detail/jacket1.webp) no-repeat;
	background-size: 100% auto;
}

#detail .flow > dl > dd > dl:nth-of-type(2)::before {
	background: url(../images/home/detail/jacket2.webp) no-repeat;
	background-size: 100% auto;
}

#detail .flow > dl > dd > p {
	padding: 0 56px;
	width: 100%;
}

#detail .flow > dl > dd > p span {
	padding-bottom: 2px;
	border-bottom: solid 3px;
}

#detail .flow > dl > dd > dl > dt {
	margin-bottom: 8px;
	padding-top: 76px;
	overflow: hidden;
	position: relative;
	width: 76px;
	height: 0;
	background:  url(../images/common/header/noise.webp) center top #e0e4e5;
	background-size: 150px auto;
	border-radius: 50%;
}

#detail .flow > dl > dd > dl > dt::before {
	content: "";
	padding-top: 100%;
	position: absolute;
	top: 0%;
	left: 50%;
	display: block;
	width: 40%;
	height: 0;
	background:  url(../images/home/detail/a.webp) no-repeat center center;
	background-size: 100% auto;
	transform: translateX(-50%);
}

#detail .flow > dl > dd > dl:nth-of-type(2) > dt::before {
	background:  url(../images/home/detail/b.webp) no-repeat center center;
	background-size: 100% auto;
}

#detail .term {
}

#detail .term dd > p {
	font-size: 22px;
	text-align: center;
}

#detail .announcement > dl > dd > p {
	padding: 0 56px;
	width: 100%;
}


/* entry */
#entry {
}

#home #entry {
	padding-bottom: 140px;
	z-index: 2;
}

@media only screen and (max-width: 1080px) {
	#home #entry {
	}
}

#home #entry h2 {
	margin: 0 auto;
	padding: 32px 0;
	position: relative;
	max-width: calc(1240px - 64px * 2);
	width: calc(100% - 64px * 2);
	line-height: 1.2;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	background: rgba(0, 0, 0, .3);
	border-radius: 12px 12px 0 0;
}

#home #entry .contents {
	margin: 0 auto;
	padding: 0 40px 8px;
	position: relative;
	max-width: calc(1240px - 64px * 2);
	width: calc(100% - 64px * 2);
	background:  url(../images/common/header/noise.webp) center top #434a4e;
	background-size: 150px auto;
	border-radius: 0 0 12px 12px;
}

@media only screen and (max-width: 1080px) {
	#home #entry h2,
	#home #entry .contents {
		width: calc(100% - 48px * 2);
	}
}

#entry .contents > dl {
	margin: 0 auto;
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center; 
	overflow: hidden;
	z-index: 4;
}

#entry .notice {
	padding: 24px 0;
	line-height: 1.2;
	font-size: 14px;
	}

#home #entry .notice li {
	justify-content: center;
	color: #fff;
}

#home #entry .notice p {
}

#home #entry .notice a {
}

#entry .contents > dl > dt {
	padding: 0 1.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	line-height: 3.2;
	text-align: center;
	border-top: solid 1px;
	border-bottom: solid 1px;
}

#entry .contents > dl > dd {
	width: 100%;
	text-align: center;
}

#entry form {
	padding: 0 0;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

#entry form > ul.serial {
	padding-top: 32px;
	display: flex;
	justify-content: center;
	gap: 0 32px;
	width: 100%;
}

#entry form > ul.serial > li {
	width: calc((100% - 32px) / 2);
}


#entry form > ul.serial > li > p {
	padding-bottom: 16px;
	line-height: 1.2;
	font-size: 18px;
}


	#entry form > ul.serial > li > p br {
		display: none;
	}

@media only screen and (max-width: 1080px) {
	#entry form > ul.serial > li > p {
		font-size: 1.6vw;
	}

}


#home #entry form > dl {
	padding: 0 16px 0 0;
	width: 50%;
}

#home #entry form > dl:nth-child(2) {
	padding: 0 0 0 16px;
}

@media only screen and (max-width: 1080px) {
}


#entry input,
#entry textarea {
	width: 100%;
	height: 72px;
	font-size: 22px;
	line-height: 72px;
	text-align: center;
	letter-spacing: 0.05em;
	text-decoration: none;
	border: none;
	outline: none;
	background: #fff;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	border-radius: 8px;
}

#entry input:hover,
#entry textarea:hover,
#entry input:focus,
#entry textarea:focus {
}


#entry .serialCode-a,
#entry .serialCode-b {
	padding: 0 16px;
	width: 100%;
	border-radius: 8px;
}

.formBtn {
	
	position: relative;
	clear: both;
	z-index: 10;
}

#entry .formBtn {
	padding: 0 0 0;
	display: flex;
	justify-content: center;
	width: 200px;
}

#entry .entryBtn {
	width: 100%;
}

#entry .entryBtn input {
	margin: 0 auto;
	width: 100%;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	line-height: 1.2;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	-webkit-user-select: none;
	user-select: none;
	outline: none;
	background: #000;
	border: none;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	letter-spacing: 0.12em;
	border-radius: 8px;
}

#entry #entryBtn input:hover {
	background-color: #666;
}

#entry .error {
	margin: 0 auto;
	padding: 8px 0 24px;
	display: table;
}

#entry .error li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}


#entry .error li:before {
	content: "!";
	margin-right: 8px;
	display: inline-block;
	width: 40px;
	height: 40px;
	font-weight: 500;
	line-height: 40px;
	text-align: center;
	letter-spacing: 0;
	-webkit-user-select: none;
	user-select: none;
	font-size: 28px;
	font-family: "Helvetica Neue", Helvetica, 'Work Sans', "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", verdana, sans-serif;
	color: #fff;
	background: #ef0627;
	border-radius: 50%;
}

#entry .error li p {
	line-height: 1.6;
	color: #fff;
	flex: 1;
}



#attention,
#inquiry,
#privacy,
#attention-event {
	margin: 0 auto;
	padding: 0 64px 0;
	position: relative;
	overflow: hidden;
	width: 100%;
}

@media only screen and (max-width: 1080px) {
	#attention,
	#inquiry,
	#privacy,
	#attention-event {
		padding: 0 48px 0;
	}
}

#attention {
}

#attention h2,
#inquiry h2,
#privacy h2 {
	margin: 0 auto;
	padding: 0 56px;
	max-width: calc(1240px - 64px * 2);
	font-size: 16px;
	font-weight: 500;
	border: solid 1px;
	border-top: none;
	border-bottom: none;
}

#attention h2 {
	padding-top: 56px;
	border-top: solid 1px;
}

#inquiry h2::before,
#privacy h2::before {
	content: "＜"
}

#inquiry h2::after,
#privacy h2::after {
	content: "＞"
}

#attention h2::before {
	content: "■";
}

.primary section#attention .contents,
.primary section#inquiry .contents,
.primary section#privacy .contents {
	padding: 0 56px 56px;
	max-width: calc(1240px - 64px * 2);
	border: solid 1px;
	border-bottom: none;
	border-top: none;
	font-size: 15px;
}

.primary section#privacy .contents {
	padding: 0 56px 56px;
	border-bottom: solid 1px;
}

#privacy dl,
#inquiry dl,
#inquiry .contents > p,
#attention .contents > ul {
	padding-left: 1.05em;
}


#attention .contents > ul > li,
#inquiry .contents > ul > li,
#privacy .contents > dl > dt {
	display: flex;
align-items: start;
}

#attention .contents > ul > li:not(:last-child),
#inquiry .contents > ul > li:not(:last-child) {
	padding-bottom: 6px;
}

#attention .contents > ul > li::before,
#inquiry .contents > ul > li::before {
	content: "※";
}



/* inquiry */
#inquiry {
	overflow: hidden;
}

#inquiry {
}

#inquiry > dt,
#privacy > dt {
	width: 250px;
	line-height: 2.8;
	white-space: nowrap;
	text-align: center;
	border: solid 1px;
	border-left: none;
	border-right: none;
}

#inquiry > dd,
#privacy > dd {
	padding: 0 0 0 16px;
	width: calc(100% - 250px);
}

#inquiry > dd > p {
	padding: 0 0 4px;
	line-height: 1.2;
}

#inquiry dt {
	padding-top: 8px;
	line-height: 1.2;
}

#inquiry dt::before {
	content: "＜";
}

#inquiry dt::after {
	content: "＞";
}

#privacy dt:before {
	content: "・";
}

#privacy dd {
	padding: 0 0 12px 1em;
	float: none;
	width: auto;
	border: none;
}

#privacy dd:last-child {
	padding: 0 0 0 1em;
}

#privacy dd > p {
	line-height: 1.7;
}

@media only screen and (max-width: 1080px) {

}
/*--------------------------------------
上部へボタン
---------------------------------------*/

ul.toTop {
	overflow: hidden;
	position: fixed;
	bottom: 8px;
	right: 8px;
	z-index: 290;
	display: none;
}

ul.toTop li {
	float: right;
}

ul.toTop a {
	padding-top: 48px;
	position: relative;
	display: block;
	overflow: hidden;
	width: 48px;
	height: 0;
	background: #000;
	border-radius: 50%;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

ul.toTop a::before {
	content: "";
	margin: -4px 0 0 -7px;
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 14px;
	height: 14px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(-45deg);
	transform-origin: center center;
	transition: all 0.4s cubic-bezier(.57,0,.26,1);
}

@media (any-hover: hover) {
	ul.toTop a:hover {
		opacity: 1;
		color: #fff;
		background: #e50012;
	}
}

ul.toTop a:hover::before {
	border-color: #fff;
}


/*--------------------------------------
フッター
---------------------------------------*/

footer {
	padding: 180px 0 220px;
	clear: both;
	overflow: hidden;
	width: 100%;
	text-align: center;
	color: #fcfef3;
	background: rgba(0, 0, 0, .5);
	z-index: 100;
}

footer .credit {
}

footer .attention p {
	padding: 24px 0;
	letter-spacing: 0;
	font-size: 12px;
}

footer .copyright p {
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

footer .copyright br {
	display: none;
}

footer .copyright a {
	color: #fff;
	text-decoration: underline;
}

.copyright a {
	color: #fff;
	text-decoration: underline;
}




/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 980px) {

	body {
		font-size: 15px;
		line-height: 1.7;
	}

	.primary section .contents {
		padding: 0 40px 0;
	}

	#introduction .catch {
		padding: 16px 30% 16px 40px;
		font-size: 18px;
	}

	#introduction .lead {
		padding: 16px 30% 0 40px;
		font-size: 16px;
	}

	#introduction .catch::before,
	#introduction .catch::after {
		left: 40px;
		width: calc(100% - 40px - 30%);
	}

	#detail {
		padding-top: 80px;
	}

	#detail .flow > dl > dd > dl p {
		font-size: 14px;
	}

	#home #entry h2,
	#home #entry .contents {
		width: calc(100% - 40px * 2);
	}

	#attention,
	#inquiry,
	#privacy {
		display: block;
		padding: 0 40px 0;
	}


	#attention h2,
	#inquiry h2,
	#privacy h2 {
		padding: 0 40px;
		font-size: 15px;
	}

#attention h2 {
	padding-top: 40px;
	border-top: solid 1px;
}

	.primary section#attention .contents,
	.primary section#inquiry .contents,
	.primary section#privacy .contents,
	.primary section#attention-event .contents {
		margin-top: 0;
		padding: 0 40px 40px;
		font-size: 14px;
	}

}

/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 880px) {

}

/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 768px) {

	body {
		font-size: 14px;
	}
}


/*--------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 520px) {

	body {
		min-width: 320px;
		font-size: 14px;
		line-height: 1.7;
	}

	a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	/*--------------------------------------
	コンテンツ
	--------------------------------------*/
	.wrapper {
		min-width: 0;
	}

	/*--------------------------------------
	header
	--------------------------------------*/	
	#top {
	}

	#home #top {
	}

	.siteTitle {
		padding-top: 29%;
		width: 90%;
		background: url(../images/common/header/title_sp.svg) no-repeat center center;
		background-size: 100% auto;
	}

	nav {
		position: absolute;
		left: 8px;
		top: 8px;
		width: 50%;
		display: flex;
		justify-content: start;
		z-index: 100;
	}

.sns-link {
		padding: 0;
		width: 15vw;
		font-size: 16px;
	}

	.sns-link li {
		width: 30px;
	}

	#errorWrap {
		min-width: 320px;
	}

	#errorWrap a {
		padding: 12px 0;
		height: auto;
		line-height: 1.4;
		font-size: 11px;
	}

	#errorWrap a:after {
		display: none;
	}

	#errorWrap p {
		padding-left: 34px;
		font-weight: 500;
	}

	#errorWrap p:before {
	}

	#errorWrap a:hover {
	}

	#errorWrap br {
		display: block;
	}


	.sns-link {
}

	/*--------------------------------------
	primary
	---------------------------------------*/
	.primary {
	}

	.primary section .contents {
		padding: 0 16px 0;
	}

	.notice p {
		line-height: 1.6;
	}

	.kt::before {
		display: none;
		background: none;
	}

	.kt::after {
		padding-top: 44vh;
		position: absolute;
		top: auto;
		bottom: 3%;
		right: auto;
		left: 50%;
		width: 83%;
		background: url(../images/home/header/title_sp.svg) no-repeat center center;
		background-size: contain;
		transform: translateX(-50%);
	}

	.kt img {
		width: 100%;
		height: 100%;
		background: url(../images/home/header/photo_sp.webp) no-repeat center top fixed #3b4549;
		background-size: cover;
	}

	section#introduction {
		margin: 0 0 0;
		padding: 24px 16px 16px;
		}

	section#introduction::after {
		display: none;
	}

	#introduction .catch {
		margin-bottom: 16px;
		padding: 0 0 16px;
		width: 100%;
		font-size: 16px;
	}

	#introduction .lead {
		padding: 0 0 0;
		position: relative;
		font-size: 14px;
	}

	#introduction .lead::after {
		content: "";
		padding-top: 55%;
		display: block;
		width: 100%;
		height: 0;
		background: url(../images/home/catch/case_sp.webp) no-repeat center center;
		background-size: 100% auto;
	}

	#introduction .catch::before {
		display: none;
	}

	#introduction .catch::after {
		left: 0;
		width: 100%;
	}

#detail {
	padding: 40px 0 0;
}

	#detail .contents > ul > li {
		padding-bottom: 32px;
	}

	#detail .contents > ul > li > dl > dt {
		width: 100%;
		font-size: 16px;
	}

	#detail .flow > dl > dd {
		padding-top: 16px !important;
		flex-direction: column;
		overflow: hidden;
	}

	#detail .flow > dl > dd > dl {
		padding: 0 calc(55% / 2 + 8px) 0 0;
		width: 100%;
	}

	#detail .flow > dl > dd > dl::before {
		padding-top: 39%;
		left: auto;
		right: 0;
		width: 28%;
	}

	#detail .flow > dl > dd > dl > dt {
		margin: 0 4px 4px 0;
		padding-top: 20%;
		float: left;
		width: 20%;
	}

	#detail .announcement > dl > dd > p,
	#detail .flow > dl > dd > p {
		padding: 0 0;
	}

	#detail .term dd > p {
		font-size: 15px;
		text-align: left;
	}

	#attention,
	#inquiry,
	#privacy {
		padding: 0 16px 0;
	}

	#attention h2,
	#inquiry h2,
	#privacy h2 {
		padding: 0 12px;
		text-align: center;
	}

	#attention h2 {
		padding: 12px 12px 0;
	}

	#attention h2::before {
		display: none;
	}

	#inquiry h2::before,
	#privacy h2::before,
	#inquiry h2::after,
	#privacy h2::after,
#attention h2::after {
	content: "";
	margin: 12px auto 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #e0e4e5;
}

	#inquiry h2::before,
	#privacy h2::before {
	margin: 0 auto 12px;
}

	.primary section#attention .contents,
	.primary section#inquiry .contents,
	.primary section#privacy .contents,
	.primary section#attention-event .contents {
		padding: 12px 12px 32px;
	}

	#privacy dl, #inquiry dl,
	#inquiry .contents > p,
	#attention .contents > ul {
		padding-left: 0;
	}

	#home #entry {
		padding: 32px 16px 56px;
	}

	#home #entry h2 {
		padding: 16px 0;
		width: 100%;
		font-size: 16px;
	}

	#home #entry .contents {
		padding: 8px 16px 24px;
		width: 100%;
	}

	#entry .notice {
		padding: 8px 0 0;
		font-size: 12px;
	}
	
	#entry .contents > dl > dt {
		margin-top: 16px;
		padding: 16px 0;
		font-size: 14px;
		line-height: 1.2;
		width: 100%;
	}

	#entry form {
		gap: 24px 0;
	}

	#entry form > ul.serial {
		padding-top: 24px;
		flex-direction: column;
		gap: 24px 0;
		width: 100%;
	}

	#entry form > ul.serial > li {
		width: 100%;
	}

	#entry form > ul.serial > li > p {
		padding-bottom: 8px;
		font-size: 14px;
	}

	#entry form > ul.serial > li > p::before,
	#entry form > ul.serial > li > p::after {
		display: none;
	}

	#entry form > ul.serial > li > p br {
		display: block;
	}

	#entry input, #entry textarea {
		height: auto;
		font-size: 18px;
		line-height: 3;
	}

	#entry .formBtn {
		width: auto;
	}

	#entry .entryBtn input {
		padding: 0 3em;
		height: auto;
		line-height: 4;
		font-size: 16px;
}

	#entry .error {
		padding-top: 16px;
	}

	#entry .error li {
		align-items: start;
	}

	#entry .error li p {
	font-size: 14px;
	}

	ul.toTop {
		bottom: 0;
		right: 0;
	}

	footer {
		padding: 64px 0;
	}

	footer .attention p {
		padding: 0 16px 24px;
		text-align: left;
	}

	footer .copyright p {
		padding: 0 16px;
		font-size: 12px;
		text-align: left;
	}
}
