@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
}
a.opacity:hover {
 opacity: .6;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
img{
	width: 100%;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 20%;
  max-width: 130px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif,YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
}
main {
	position: relative;
	z-index: 0;
	font-size: 16px;
	line-height: 150%;
	color: #333333;
	background-color: #ffffff;
	padding-bottom: 20px;
}
a.push:hover {
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(0.52,-0.37,0.45,1.4);
}
.tx_indent {
	padding-left: 1.5em;
	margin-left: 1.5em;
}
.pink_tx {
	color: #e84c89;
}
.red_tx {
	color: #cc0033;
}
.tac {
	text-align: center;
}
.tal {
	text-align: left;
}
.center{
	text-align: center;
	margin: 0 auto;
	display: block;
}
.bold {
	font-weight: 600;
}
.big {
	font-size: 125%;
}
.m10 {
	margin: 10px 0;
}
.mt10 {
	margin-top: 10px;
}
.mt30 {
	margin-top: 30px;
}
.pt40 {
	padding-top: 40px;
}
.btn.square.max a {
    color: rgb(215, 10, 48);
    background: url(../images/dot_red.webp) left top / 10px repeat rgb(255, 255, 255);
    border-width: 3px;
    border-style: solid;
    border-color: rgb(215, 10, 48);
    border-image: initial;
}
.gradation {
	background: linear-gradient(90deg,rgba(255, 195, 54, 1) 0%, rgba(255, 13, 134, 1) 100%); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.txt_underline {
	text-decoration: underline;
	display: inline;
}
.line_gold {
	/*background-color: #bc9500;*/
	text-decoration: underline;
	text-decoration-color: #bc9500;
	text-decoration-thickness: 8px;
}
.line_red {
	/*background-color: #d70a30;*/
	text-decoration: underline;
	text-decoration-color: #d70a30;
	text-decoration-thickness: 8px;
}
.inline_block{
	display: inline-block;
}
.entry_method{
	background-color: #333;
	color:#fff;
	margin-top:50px;
	padding:20px 0;;
}
.steps{
	border-top:1px solid #ccc;
	margin-top:10px;
	margin-bottom:50px;
	padding-top:10px;
}
.steps .step_icon {
	margin:20px auto 16px;
	text-align: center;
}
.steps .step_icon img{
	width:100%;
	max-width:50px;
}
.steps ul{
	text-align: left;
}
.steps .txt01{
	font-size:17px;
	font-weight:bold;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	display: flex;
	align-items: center;
}
.flex_box.js {
	display: flex;
	justify-content: space-between;
}
.flex_box.jc {
	display: flex;
	justify-content: center;
}
.flex_left {
	width: 48%;
}
.flex_right {
	width: 50%;
}
/* ----------------------------------------------
TOP
------------------------------------------------*/
h1 {
	font-size: 2.8vw;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
	padding: 50px 0 0;
}
h1 small {
	font-weight: 600;
}
.lead_tx {
	text-align: center;
	max-width: 1000px;
	margin: auto;
	width: 90%;
	padding: 50px 0;
	line-height: 1.5;
	font-size: 16px;
}
.lead_tx span {
	font-size: 28px;
	font-weight: 700;
}
.lead_tx span.big {
	font-size: 32px;
}
.attention_box {
	padding:15px;
	max-width:1000px;
	width: 90%;
	margin: auto;
	font-size: 14px;
	background-color: rgba(150,150,150,0.1);
}
.attention_box li {
	padding: 3px 0;
	line-height: 1.4;
	text-indent: -1em;
	margin-left: 1em;
}
.attention_box.y_scroll {
	overflow-y: scroll;
}
.y_scroll {
  overflow: hidden;
}
.y_scroll .attention_box{
  height: 200px;
  overflow-y: scroll;
	padding: 1.5em;
}
/* ----------------------------------------------
header
------------------------------------------------*/
.head_menu {
	margin-top: 50px;
}
.menu {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.menu li a {
	display: block;
	margin-right: 30px;
	text-align: center;
	font-size: 14px;
	background-color: #e84c89;
	color: #fff;
	font-weight: 700;
	width: 200px;
	border: 2px solid #e84c89;
	height: 50px;
	align-content: center;
	position: relative;
}
.menu li a::after {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 12px;
	height: 10px;
	background-color: #fff;
	content: '';
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 999;
}
.menu li a:hover {
	border: 2px solid #e84c89;
	color: #e84c89;
	background-color: #000;
	transition: 0.5s all ease-in-out;
}
/* -----------------------------------------------------------
BTN
-------------------------------------------------------------*/
.btn a {
  background-color: #cc0033;
  display: block;
  max-width: 500px;
  margin: auto;
  border-radius: 100px;
  color:#fff;
  padding: 20px 0;
  position: relative;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 3px;
	border: 2px solid #000;
}
.btn a:hover {
  transition: all 0.3s ease-in;
	border: 2px solid #1bbeb1;
	background-color: #000;
	color: #fff;
}
.btn.yet a {
	background-color: #666;
	pointer-events: none;
	letter-spacing: 0;
}
.btn.yet a span.arrow {
	display: none;
	opacity: 0;
}
.btn {
  position: relative;
}
.simple_btn{
	margin:20px auto;
	text-align: center;
	word-break: break-all;
    overflow-wrap: break-word;
}
.btn .coming {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(21,21,21,0.7);
  width: 70%;
  height: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 100px;
  text-align: center;
  padding: 10px 0;
  z-index: 3;
}
span.arrow {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	background: url("../images/arrow.webp") no-repeat center/35px;
	display: inline-block;
	width: 35px;
	height: 35px;
}
.btn.square a {
	max-width: 750px;
	border-radius: 10px;
	padding: 20px 20px;
	margin: 20px auto;
	position: relative;
	background: url("../images/dot_pink.webp") repeat top left / 10px #fff;
	border: 3px solid #1bbeb1;
	color: #1bbeb1;
}
.btn.square a::after {
	border-right: solid 4px #1bbeb1;
  border-top: solid 4px #1bbeb1;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform:translateY(-50%) rotate(135deg) ;
  width: 15px;
}
.btn.square a img {
	width: 70%;
	margin: 0 auto 10px;
	display: block;
}
.btn.square.max a {
	background: url("../images/dot_red.webp") repeat top left / 10px #fff;
	border: 3px solid #d70a30;
	color: #d70a30;
}
.btn.square a:hover {
	border: 3px solid #1bbeb1;;
}
.btn.square.max a:hover {
	border: 3px solid #d70a30;;
}
.btn.square.max a::after {
	border-right: solid 4px #d70a30;
  border-top: solid 4px #d70a30;
	transform:translateY(-50%) rotate(45deg) ;
}
.btn.square.max a:hover::after {
	transform: translateX(8px) translateY(-50%) rotate(45deg);
	transition: 0.2s all ease-in-out;
}

/* ----------------------------------------------
SECTION
------------------------------------------------*/
.end_ttl {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.1;
	position: relative;
	padding-bottom: 30px;
	padding-top: 50px;
	border-top: 1px solid #ddd;
	margin-top: 80px;
}
.end_ttl::before {
	content: "";
	display: inline-block;
	background: url("../images/h2_line_end.webp") no-repeat bottom center /200px 7px;
	width: 200px;
	height: 7px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.contents_wrap {
	max-width: 1000px;
	width: 90%;
	margin: 50px auto;
	border: 2px solid #eb5528;
	padding: 30px	;
	position: relative;
}
.contents_wrap h2 {
	font-size: 28px;
	font-weight: 700;
	border-bottom: 1px	solid #eb5528;
	padding-bottom: 25px;
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: center;
}
.youtube {
  width:500px;
  aspect-ratio:16/9;
	margin: 50px auto 30px;
}
iframe {
  width: 100%;
  height: 100%;
}
.end_overlay {
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 30px;
	line-height: 1.5;
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	text-align: center;
	align-content: center;
}
/* ----------------------------------------------------------
list
------------------------------------------------------------*/
.contents_wrap .attention_box {
	width: 100%;
	margin: 20px 0;
}
.contents_img {
	width: 80%;
	margin: auto;
}
.list_wrap {
	text-align: center;
	padding: 15px	0;
}
.list_wrap:first-of-type {
	margin-top: 20px;
}
.list_wrap:last-of-type {
	margin-bottom: 20px;
}
.list_ttl {
	background-color: #eb5528;
	color: #fff;
	font-weight: 600;
	padding: 2px 0;
	margin-bottom: 15px;
}
.list_wrap li {
	padding: 5px 0;
}
li.btn {
	margin-top: 20px;
}
/*====================================================================================
accordion
=====================================================================================*/
.accordion.contents_wrap {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
	padding: 0;
	border: 2px solid #888;
	margin: 30px auto;
}
.accordion-content {
  display: none;
}
.accordion-inner {
	padding:2em;
}
.accordion-title {
 position: relative;
 display: block;
 padding: 1em;
  cursor: pointer;
 transition: ease all .3s;
 text-align: center;
 background-color: #888;
 color: #fff;
}
.accordion h2 {
	font-size: 20px;
	font-weight: 600;
	border-bottom: 0 solid #e84c89;
	padding-bottom: 0;
	margin-bottom: 0;
}
.accordion-title {
  position: relative;
}
/*--- 矢印 ---*/
.accordion-title::after {
  border-right: solid 4px #fff;
  border-top: solid 4px #fff;
  content: "";
  display: block;
	width: 15px;
  height: 15px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
	transition: 0.3s all;
}
/* ----------------------------------------------------------
規約
------------------------------------------------------------*/
.tokuten_scroll {
  color: #fff; 
  overflow: hidden;
  width: 100%;
  margin:20px auto 0;
  font-size: 12px;
  font-weight: 400;
  padding: 1px;
}
.tokuten_scroll .inn {
  height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: left;
  color: #333333;
  background-color: rgba(150,150,150,0.1);
  padding: 15px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn .inn_box > ul > li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li.type02 {
  text-indent: -2em;
  margin-left: 2em;
  margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a{
  display: inline;
  text-decoration: underline;
}

.tokuten_scroll .inn .inn_box > ul > li a.no_txt_link{
	text-decoration: none;
}

.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
 }
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #666666;
    width: 10px;
    border-radius: 100px;
}
.copy {
  padding: 40px 0 10px;
}
.totop a {
	display: none!important;
	opacity: 0;
	overflow: hidden;
}
.page_top　{
	opacity: 0;         /* 初期は非表示 */
  visibility: hidden;
  pointer-events: none;
	z-index: 999;
}
.page_top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
}
/* ----------------------------------------------------------
追従
------------------------------------------------------------*/
.lp_cta_fixed {
	display: none;
}
.lp_cta_fixed.is-fixed {
	display: block;
	background-color: rgba(0,0,0,0.7);
	width: 100%;
	padding: 8px 0;
	position: fixed;
	bottom: 0;
	left: 0;
}
.lp_cta_fixed.is-fixed .btn.square a {
	margin: 0 auto;
	max-width: 500px;
}
.page_top　{
	opacity: 0;         /* 初期は非表示 */
  visibility: hidden;
  pointer-events: none;
	z-index: 999;
}
.page_top.is-fixed {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
body {
  font-family: "Noto Sans JP", sans-serif,YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
}
main {
	padding-top: 20px;
	background-color: #fff;
}
/*.wrapper::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background: url("../images/bg_all_spwebp.webp") no-repeat top left/100% auto #151515;
}*/
.tx_indent {
	padding-left: 1em;
	margin-left: 1em;
}
.float_btn {
	bottom: 10px;
	right: 0px;
	width: 120px;
	z-index: 555;
}
.line_gold {
	text-decoration-thickness: 5px;
}
.line_red {
	text-decoration-thickness: 5px;
}
/*-------------------------------------------------------------------------
flex関連
-------------------------------------------------------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box.js {
	flex-direction: column;
}
.flex_box.jc {
	flex-direction: column;
}
.flex_left {
	width: 100%;
}
.flex_right {
	width: 100%;
}
/* ----------------------------------------------
TOP
------------------------------------------------*/
h1 {
	font-size: 6vw;
	padding: 0 0 0;
}
.lead_tx {
	padding: 40px 0;
	line-height: 1.7;
	font-size: 15px;
}
.lead_tx span {
	font-size: 18px;
	font-weight: 700;
}
.lead_tx span.big {
	font-size: 24px;
}
.attention_box {
	padding:10px;
	font-size: 12px;
}
/* ----------------------------------------------
header
------------------------------------------------*/
.head_menu {
	margin: 30px 10px 0;
}
.menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.menu li {
	margin-right: 2%;
	width: 48%;
}
.menu li:nth-of-type(2n) {
	margin-right: 0;
}
.menu li:nth-of-type(n+3) {
	margin-top: 2%;
}
.menu li a {
	width: 100%;
	height: 40px;
	font-size: 12px;
	line-height: 120%;
}
/* ----------------------------------------------
btn
------------------------------------------------*/
.btn a {
	font-size: 18px;
	padding: 15px 0;
}
span.arrow {
	right: 10px;
	background: url("../images/arrow.webp") no-repeat center/30px;
	display: inline-block;
	width: 30px;
	height: 30px;
}
.btn.square a {
	width: 90%;
	padding: 10px 15px 10px 10px;
	margin: 15px auto;
	background: url("../images/dot_pink.webp") repeat top left / 5px #fff;
}
.btn.square a::after {
	border-right: solid 3px #1bbeb1;
  border-top: solid 3px #1bbeb1;
  height: 10px;
  right: 12px;
  width: 10px;
}
.btn.square a img {
	width: 85%;
	margin: 5px auto 10px;
}
.btn.square.max a {
	background: url("../images/dot_red.webp") repeat top left / 5px #fff;
}
.btn.square.max a::after {
	border-right: solid 3px #d70a30;
  border-top: solid 3px #d70a30;
}
/* ----------------------------------------------
SECTION
------------------------------------------------*/
.end_ttl {
	font-size: 24px;
}
.contents_wrap {
	margin: 30px auto;
	padding: 20px 10px;
	width: 92%;
}
.contents_wrap h2 {
	font-size: 16px;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.youtube {
	margin: 20px auto 0;
	width: 100%;
}
.end_overlay {
	font-size: 18px;
}
/* ----------------------------------------------------------
list
------------------------------------------------------------*/
.contents_img {
	width: 100%;
}
.btn a.ls0 {
	letter-spacing: 0;
}
.list_wrap:first-of-type {
	margin-top: 15px;
}
.list_wrap:last-of-type {
	margin-bottom: 15px;
}
.list_wrap li.list_ttl {
	font-size: 16px;
	font-weight: 600;
}
.list_wrap li {
	font-size: 14px;
	font-weight: 400;
}
/*====================================================================================
accordion
=====================================================================================*/
.accordion.contents_wrap {
  margin: 30px auto;
	width: 92%;
}
.accordion-item +.accordion-item {
  margin-top: 10px;
}
.accordion-content {
  display: none;
}
.accordion-inner {
	padding:20px 10px;
}
.accordion-title {
 padding: 0.5em 0;
}
.accordion h2 {
	font-size: 16px;
	padding-bottom:  0;
	margin-bottom: 0;
}
/*--- 矢印 ---*/
.accordion-title::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
	width: 8px;
  height: 8px;
  right: 12px;
  top: 45%;
  transform: rotate(135deg);
}
/* ------------------------------------
規約
--------------------------------------*/
.tokuten_scroll {
  width: 100%;
  font-size: 12px;
	margin: 30px auto 0;
}
.tokuten_scroll .inn {
  height: 220px;
  padding: 10px  ;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 10px;
 }
 .page_top.is-fixed {
	bottom: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 16px;
  left: 12px;
  width: 100px;
  max-width: 150px;
  z-index: 1000;
 }
}

/*202601*/

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.entry-deadline{
	line-height: 1.6;
	margin-top: 20px;
}

.entry-deadline>p:nth-child(1){
	font-size: 24px;
	font-weight: 700;
	text-decoration: underline;
}

@media screen and (min-width: 813px) {
	.entry-deadline{
		margin-top: 16px;
	}
	.entry-deadline>p:nth-child(1){
		font-size: 20px;
	}
}

.btn .overlay-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	background: rgba(64, 64, 64, 0.8);
	font-weight: bold;
	pointer-events: none;
	border-radius: 100px;
}

.btn.is-disabled a {
	background-color: #cc0033;
	border: 2px solid #cc0033;
	cursor: default;
	pointer-events: none;
}

.btn.is-disabled a:hover {
background-color: #cc0033;
}

.footer{
    color: #333333;
    font-size: 10px;
    font-weight: bold;
}

.list_wrap_attention li{
	text-indent: -1em;
	margin-left: 1em;
	font-size: 12px;
}

@media screen and (min-width: 813px) {
	.list_wrap_attention li{
		font-size: 14px;
	}
}

/*2026-01-27*/
.list_wrap_attention{
	word-break: break-all !important;
}

@media screen and (max-width: 600px) {
	.is-disabled a{
		font-size: 14px !important;
		letter-spacing: 1px !important;
	}
}
