@charset "utf-8";

/* ============== 共通 =================== */
#contents {
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	background-color: #8CD9F3;
	padding: 0;
	overflow: hidden;
}

#contents * {
	box-sizing: border-box;
}

#contents a {
	color: #0099cc;
	text-decoration: underline;
}

#contents a:hover {
	opacity: 0.7;
}

figure {
	margin: 0;
}

.display_sp {
	display: none;
}

.end_txt {
	color: #f50028;
	background-color: #fff;
	font-size: 180%;
	font-weight: bold;
	text-align: center;
	padding: 20px 0;
	line-height: 1;
}

/*注釈テキスト*/
.note_txt {
	font-size: 12px;
	line-height: 1.6;
	font-weight: normal;
	color: #999;
	text-indent: -1em;
	padding-left: 1em;
}

/*角丸ブロック*/
.round_block {
	border-radius: 8px;
	border: 2px solid #000;
	background-color: #fff;
}

/*マーカー*/
.line_txt {
	display: inline;
	background: linear-gradient(transparent 70%, #fee661 0%);
	/* 任意 */
	padding: 0 5px;
}

/*強調カラーテキスト*/
.em_font {
	color: #ff9123;
	/* 任意 */
}

/*太字*/
.bold_font {
	font-weight: bold;
}

/*中黒リスト*/
.dot_list {
	text-indent: -1em;
	margin-top: 10px;
	padding-left: 1em;
}

/*(数字)リスト*/
.num_list {
	text-indent: -1.4em;
	padding-left: 1.5em;
	counter-reset: number 0;
}

.num_list>li::before {
	counter-increment: number 1;
	content: "(" counter(number) ")";
}

/* ============== top =================== */
.top {
	font-size: 0;
	margin-bottom: 60px;
}

/* ============== sec共通 =================== */
.sec {
	width: calc(100% - 60px);
	max-width: 970px;
	margin: 0 auto;
}

.sec+.sec {
	margin-top: 60px;
}

.sec:not(.att) .sec_ttl {
	width: min(345px, 100%);
	margin: 0 auto 40px;
}

/* ============== LP =================== */
/* join */
.sec.join {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.sec.join .sec_ttl {
	margin-bottom: 0;
}

.join .sec_list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 25px;
}

.join .join_list_center {
	justify-content: center;
	gap: 40px;
}

.sec_item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px 30px;
	text-align: center;
	width: min(307px, 32%);
	gap: 20px;
}

.sec_icon {
	padding: 4px 22px;
	width: 160px;
	height: 25px;
	font-weight: bold;
	color: #ffffff;
	line-height: 1;
	background-color: #ff9123;
	border: 2px solid #000000;
	border-radius: 500px;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.join .sec_item_txt {
	color: #000000;
}

.join .sec_item_qr {
	width: 120px;
}

.join .sec_item_img {
	width: calc(100% + 40px);
}

/*== アコーディオン ==*/
.grad-trigger {
	display: none;
}

.grad-item {
	overflow: hidden;
	max-height: 57px;
	padding-bottom: 0;
	transition: max-height 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
}

.grad-item::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% + 40px);
	height: 57px;
	padding: 10px 0 20px;
	width: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) -2.63%, #FFF 112.77%);
	border-radius: 0 0 6px 6px;
	pointer-events: none;
	transition: opacity 0.3s ease-in-out;
	opacity: 1;
}

.grad-btn {
	display: flex;
	align-items: center;
	width: 110px;
	height: 27px;
	padding: 4px 0;
	border-radius: 5px;
	font-size: 12px;
	color: #fff;
	border: 1px solid #FFF;
	background-color: #19B4E6;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	z-index: 3;
	margin: 0;
}

.grad-btn:hover {
	background-color: #3ec5f3;
}

.icon-plus-minus {
	position: relative;
	display: inline-block;
	width: 8px;
	height: 2px;
	margin-right: 10px;
	background-color: currentColor;
}

.icon-plus-minus::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: currentColor;
	transform: rotate(90deg);
	transform-origin: center center;
	transition: transform 0.4s ease-in-out;
}

.grad-btn .fa {
	transition: transform 0.4s ease-in-out;
}

.grad-btn::before {
	content: "続きを読む";
	flex: 1;
	padding-left: 10px;
}

/* 状態変化（チェックが入った時 ＝ 開いた時） */
.grad-trigger:checked~.grad-item {
	max-height: 500px;
	padding-bottom: 30px;
}

.grad-trigger:checked~.grad-item::before {
	opacity: 0;
}

.grad-trigger:checked~.grad-btn::before {
	content: "閉じる";
}

.grad-trigger:checked~.grad-btn .icon-plus-minus::after {
	transform: rotate(0deg);
}

/*== デバイス判定差し変え ==*/
/* --- PC判定（is-pc）の時の制御 --- */
.os_switch.is-pc [data-pc-display='hide'] {
  display: none;
}
.os_switch.is-pc .app_link {
  pointer-events: none;
  cursor: default;
}

/* --- スマホ判定（iOS/Android）の時の制御 --- */
.is-ios .app_code,
.is-android .app_code {
  display: none;
}
.is-ios [data-os-type='android'],
.is-android [data-os-type='ios'] {
  display: none;
}

.sec_item_note .note_txt {
	text-align: left;
}
.sec_item_note .dot_list {
	margin-top: 0;
}
.join_last {
	padding: 0 70px;
}

.join_last_ttl,
.join_last_img {
	width: min(660px, 80%);
	margin: 0 auto;
	font-size: 0;
}

.join_last_img {
	margin: 30px auto 20px;
}

.join_last .note_txt {
	color: #333333;
	text-align: left;
	width: min(690px, 100%);
	margin: auto;
}

/* shop */
.shop_main {
	display: flex;
	padding: 30px 70px;
	justify-content: center;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	text-align: left;
}
.shop_txt .note_txt {
	margin-top: 10px;
}
.shop_img {
	width: 305px;
	flex-shrink: 0;
}

/* バナーエリア */
.w-camp_list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	font-size: 0;
}

/* ============== att =================== */
.att {
	text-align: left;
	overflow: hidden;
	padding: 50px 70px;
	margin-bottom: 60px;
}

.att .sec_ttl {
	text-align: center;
	margin-bottom: 40px;
}

.att_item+.att_item {
	margin-top: 30px;
}

.att_item_ttl {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	padding-left: 1.5em;
	position: relative;
}

/*「●」タイプのリスト用*/
.att_item_ttl::before {
	content: "";
	display: block;
	background-color: #ff9123;
	border-radius: 50%;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 2px;
	left: 0;
}

.att_item_inner p {
	margin-top: 10px;
}

.att_item_inner .note_txt {
	margin-top: 0;
}

.att_item_inner p+p {
	margin-top: 0;
}

.att_item_img {
	text-align: center;
	margin-top: 20px;
}

.att_item_img+* {
	margin-top: 20px;
}

.att .dot_list,
.att .num_list,
.att_small_unit,
.att_small_unit+* {
	margin-top: 10px;
}

.att_small_unit dd>*:first-child {
	margin-top: 0;
}

.att .dot_list .att_small_unit {
	text-indent: 0;
}

.att .dot_list li>.dot_list,
.att .dot_list li>.num_list,
.att .num_list li>.dot_list,
.att .num_list li>.num_list,
.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-top: 0;
}

.att .dot_list li>.dot_list+*,
.att .dot_list li>.num_list+*,
.att .num_list li>.dot_list+*,
.att .num_list li>.num_list+*,
.att_small_unit .dot_list+*,
.att_small_unit .num_list+* {
	margin-top: 10px;
}

.att .dot_list li>.num_list,
.att .num_list li>.num_list {
	transform: translateX(-0.2em);
}

.att_small_unit .dot_list,
.att_small_unit .num_list {
	margin-left: 0.5em;
}

.att .em_font {
	color: #f50028;
	font-weight: bold;
}

/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {

	/* ============== 共通 =================== */
	img {
		width: 100%;
	}

	.display_pc {
		display: none;
	}

	.display_sp {
		display: block;
	}

	.end_txt {
		font-size: 150%;
	}

	/* ============== top =================== */
	.top {
		margin-bottom: 50px;
	}

	/* ============== sec共通 =================== */
	.sec {
		width: calc(100% - 30px);
	}

	.sec+.sec {
		margin-top: 50px;
	}

	.sec:not(.att) .sec_ttl {
		margin-bottom: 20px;
	}

	/* ============== LP =================== */
	/* join */
	.sec.join {
		gap: 40px;
	}

	.sec.join .sec_ttl {
		margin-bottom: 0;
	}

	.join .sec_list {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.join .join_list_center {
		justify-content: center;
		gap: 40px;
	}

	.os_switch a.app_link {
		display: block;
	}
	.os_switch a.app_link img {
		max-height: 64px;
	}

	.sec_item {
		width: 100%;
	}

	.join .sec_item_img {
		width: 100%;
	}

	/*== アコーディオン無効 ==*/
	.grad-trigger,
	.grad-btn,
	.grad-item::before,
	.icon-plus-minus {
		display: none;
	}

	.grad-item {
		max-height: none;
	}

	/*== /アコーディオン無効 ==*/
	.join_last {
		padding: 0;
	}

	.join_last_ttl,
	.join_last_img,
	.join_last .note_txt {
		width: 100%;
	}

	.join_last_img {
		margin: 20px auto 10px;
	}

	/* shop */
	.shop_main {
		flex-direction: column-reverse;
		padding: 20px;
		gap: 20px;
	}
	.shop_img {
		width: min(305px, 100%);
	}

	/* バナーエリア */
	.w-camp_list {
		gap: 20px;
	}

	/* ============== att =================== */
	.att.sec {
		padding: 40px 30px;
	}

	.att_item_ttl {
		padding-left: 1.5em;
	}

	.att_item_inner p,
	.att .dot_list,
	.att .num_list,
	.att_small_unit,
	.att_small_unit+* {
		margin-top: 5px;
	}
}