@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}




/*====================================
 * Base
=====================================*/
:root {
	--colorBg: #fff;
	--colorText: #141414;
	--colorYel-01: #ffcf4b;
	--colorYel-02: rgba(255, 207, 75, 0.15);
	--colorOrg-01: #f37923;
	--colorOrg-02: #fd9332;
	--colorOrg-03: #ee6b0f;

	--fz10: calc(10 / 16 * 1rem);
	--fz11: calc(11 / 16 * 1rem);
	--fz12: calc(12 / 16 * 1rem);
	--fz13: calc(13 / 16 * 1rem);
	--fz14: calc(14 / 16 * 1rem);
	--fz15: calc(15 / 16 * 1rem);
	--fz16: 1rem;
	--fz18: calc(18 / 16 * 1rem);
	--fz20: calc(20 / 16 * 1rem);
	--fz21: calc(21 / 16 * 1rem);
	--fz22: calc(22 / 16 * 1rem);
	--fz23: calc(23 / 16 * 1rem);
	--fz24: calc(24 / 16 * 1rem);
	--fz25: calc(25 / 16 * 1rem);
	--fz26: calc(26 / 16 * 1rem);
	--fz28: calc(28 / 16 * 1rem);
	--fz30: calc(30 / 16 * 1rem);
	--fz32: calc(32 / 16 * 1rem);

	--font-secondary: "Anek Bangla", sans-serif;
}

body {
	font-family: 'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	/* font-feature-settings: 'palt' 1; */
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
	/* letter-spacing: 0.05em; */
	color: var(--colorText);
	background-color: var(--colorBg);
	word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

main {
	position: relative;
	line-height: 1.5;
}

a:link,
a:visited,
a:active {
	text-decoration: none;
	transition: all 0.2s ease;
}


@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.8;
	}
}

b a,
strong a {
	font-weight: bold !important;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

hr {
	color: #ccc;
}


/*====================================
Header
=====================================*/
.header {
	padding: 10px 20px;
	display: grid;
	grid-template-columns: 1fr 49px;
	gap: 0 10px;
	align-items: center;
}

.header__title {
	font-size: var(--fz12);
	font-weight: 500;
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.05em;
}

.header__logo img {
	vertical-align: top;
}

@media screen and (min-width: 768px) {
	.header {
		padding: 10px 20px;
		grid-template-columns: 1fr 50px;
	}

	.header__title {
		font-size: var(--fz18);
	}

}


/*====================================
Footer
=====================================*/
.footer {
	display: grid;
	padding: 17px 15px;
	background-color: var(--colorText);
	color: #fff;
	font-size: var(--fz12);
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.footer-copyright {
	text-align: center;
	font-size: var(--fz11);
}

@media screen and (min-width: 768px) {
	.footer {
		padding: 35px 15px;
		text-align: center;
	}
}


/*====================================
KV
=====================================*/
.kv {
	position: relative;
	height: min(calc(100vw / (375 / 237)), 500px);
}

.kv.kv-step01 {
	height: min(calc(100vw / (375 / 280)), 500px);
}

.kv .kv__title {
	position: absolute;
	width: min(90.67%, 650px);
	padding: min(calc((18 / 375) * 100vw), 55px) 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.kv.kv-step01 .kv__title {
	width: min(93.87%, 650px);
	padding: min(calc((40 / 375) * 100vw), 60px) 0;
}

.kv__bg-image {
	position: absolute;
	display: flex;
	align-items: flex-end;
	z-index: -10;
	width: 100%;
	height: 100%;
	background-color: #354a3a;
}

.kv__bg-image img {
	width: 100%;
	height: 100%;
	object-position: 50% 50%;
	object-fit: cover;
}

.kv.kv-step01 .kv__bg-image img {
	height: 84.64%; /* 237÷280 */
}

@media screen and (min-width: 768px) {
	.kv.kv-step01 .kv__bg-image img {
		height: 100%;
	}
}


/*====================================
Contents
=====================================*/
.contents {
	padding: 24px 0 0 0;
}

.contents__wrap {
	width: 100%;
	max-width: 100%;
}
.contents__wrap--bgcolor {
	background-color: var(--colorYel-02);
}

.contents__inner {
	/* width: 730px; */
	width: 45.625rem;
	margin: 0 auto;
	max-width: 100%;
	padding: 0 15px 0 15px;
	container-type: inline-size;
	container-name: contents__inner;
}

.contents-catch {
	text-align: center;
}

.contents-catch span {
	position: relative;
	display: inline-block;
	/* font-size: 1.125rem; */
	font-size: min(6.4vw, var(--fz18));
	font-weight: 700;
	text-align: center;
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.2em;
}

.contents-catch span::before,
.contents-catch span::after {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	/* width: 30px; */
	width: 1.875rem;
	/* height: 28px; */
	height: 1.75rem;
	background-size: contain;
}

.contents-catch span::before {
	left: -2.625rem;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/catch_l.svg") no-repeat;
}

.contents-catch span::after {
	right: -2.625rem;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/catch_r.svg") no-repeat;
}

@media screen and (min-width: 768px) {
	.contents {
		padding: 66px 0 0 0;
	}
}


/*--------------------
Acordion P1
--------------------*/
.acd-contents .acd-trigger {
	position: relative;
	min-height: 98px;
	background: linear-gradient(#f68925 50%, var(--colorOrg-02) 51%);
	border-radius: 100vw;
	padding: 3px;
	margin: 30px 0 0 0;
	transition: all 0.2s ease;
}
.acd-contents .acd-trigger:hover {
	cursor: pointer;
}

.acd-contents .acd-trigger-inner {
	min-height: 98px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(#fda656 50%, var(--colorOrg-02) 51%);
	border-radius: 100vw;
}

.acd-contents .acd-trigger__title {
	/* font-size: 1.4375rem; */
	font-size: min(8.75vw, var(--fz23));
	font-weight: 700;
}

.acd-contents .acd-trigger[data-count]::before {
	position: absolute;
	width: 47px;
	height: 46px;
	top: -23px;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	content: attr(data-count) "";
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	letter-spacing: 0.1em;
	padding-left: 0.1em;
	text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,
		-1px 1px 0 #000, 1px -1px 0 #000,
		1px 0 0 #000, -1px 0 0 #000,
		0 1px 0 #000, 0 -1px 0 #000;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/numb_circle.svg") no-repeat;
	background-size: contain;
}

.acd-contents .acd-trigger::after {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/acd_arrow01.svg");
	display: block;
	width: 29px;
	height: auto;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.2s ease;
}

.acd-contents .acd-trigger.active::after {
	transform: translate(-50%, 0) rotateX(180deg);
	transform-origin: center;
}

.acd-contents .acd-target {
	display: none;
	background: #ffd3ab;
	border: solid 3px var(--colorOrg-02);
	border-radius: 11px;
	margin: 9px 0 0 0;
	padding: 36px 0 0 0;
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.075em;
}

.acd-contents .acd-target-inner {
	padding: 0 18px;
	line-height: 1.6;
}

.acd-contents .acd-target-inner p {
	margin: 0 0 12px 0;
}

.acd-contents .acd-target-inner__lead {
	text-align: center;
}

.acd-contents .acd-target-inner__lead strong {
	font-size: var(--fz20);
	font-weight: 700;
}

.acd-contents .acd-target__flow {
	position: relative;
	counter-reset: flow-number 0;
	/* padding: 0 12px; */
	padding: 0 0.75rem;
	margin: 22px auto 33px auto;
	display: grid;
	/* grid-template-columns: 62px auto; */
	grid-template-columns: 3.875rem auto;
	gap: 24px 0;
	text-align: center;
	justify-items: center;
	/* max-width: 486px; */
	max-width: 30.375rem;
}

.acd-contents .acd-target__flow::after {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/icon_ok_sp.svg");
	bottom: -43px;
	right: 13px;
	width: 70px;
	height: auto;
	filter: drop-shadow(0px 4px 0px rgba(231, 174, 19, 0.5));
}

.acd-contents .acd-target__flow-item {
	position: relative;
	display: grid;
	/* padding: 4px 12px; */
	padding: 4px 6% 4px 16%;
	width: 100%;
	grid-column: 1 / -1;
	place-items: center;
	background: #fff;
	border-radius: 4px;
	border: solid 2px #141414;
	min-height: 60px;
	/* max-width: 462px; */
	max-width: 28.875rem;
	font-weight: 700;
	font-size: var(--fz18);
	letter-spacing: 0.10em;
	line-height: 1.3;
	font-feature-settings: 'palt' 1;
}

.acd-contents .acd-target__flow-item::before {
	position: absolute;
	display: block;
	width: 23%;
	text-align: center;
	/* height: 100%; */
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	/* align-items: center; */
	counter-increment: flow-number 1;
	content: counter(flow-number) " ";
	color: var(--colorOrg-01);
	font-weight: 700;
	font-size: var(--fz30);
	font-family: var(--font-secondary);
	font-weight: 700;
}

.acd-contents .acd-target__flow-item::after {
	position: absolute;
	content: "";
	height: 16px;
	width: 23px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--colorOrg-02);
	bottom: -22px;
}

.acd-contents .acd-target__flow-item:last-child::after {
	display: none;
}

.acd-contents .acd-target__note {
	font-size: var(--fz13);
	font-weight: normal;
	letter-spacing: 0.05em;
}

.acd-contents .acd-target .btn-close {
	display: flex;
	justify-content: center;
	background-color: var(--colorOrg-02);
	padding: 12px 0;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: var(--fz20);
	margin: 36px 0 0 0;
}

.acd-contents .acd-target .btn-close:hover {
	cursor: pointer;
	opacity: 0.8;
}

.acd-contents .acd-target .btn-close span {
	position: relative;
	padding: 0 0 0 25px;
}

.acd-contents .acd-target .btn-close span::before {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/acd_arrow02.svg");
	width: 19px;
	height: auto;
	left: 0;
	top: 0;
    bottom: -2px;
    margin: auto 0;
}

@media screen and (min-width: 768px) {
	.acd-contents .acd-trigger {
		position: relative;
		min-height: 118px;
		margin: 50px 0 0 0;
		/* max-width: 700px; */
		max-width: 43.75rem;
	}

	.acd-contents .acd-trigger:hover {
		opacity: 0.8;
	}

	.acd-contents .acd-trigger[data-count]::before {
		width: 74px;
		height: 72px;
		top: -35px;
		font-size: 30px;
	}

	.acd-contents .acd-trigger-inner {
		min-height: 118px;
	}

	.acd-contents .acd-trigger__title {
		font-size: var(--fz25);
	}

	.acd-contents .acd-target {
		margin: 17px 0 0 0;
		padding: 46px 0 0 0;
	}

	.acd-contents .acd-trigger::after {
		content: url("https://cdn.l-tike.com/guide/teach_ticket/img/acd_arrow01.svg");
		width: 29px;
		height: auto;
		top: 52%;
		bottom: auto;
		left: auto;
		right: 88px;
		transform: translate(0, -50%);
	}

	.acd-contents .acd-trigger.active::after {
		top: 50%;
		transform: translate(0, -50%) rotateX(180deg);
		transform-origin: center;
	}

	.acd-contents .acd-target-inner {
		padding: 0 97px;
	}

	.acd-contents .acd-target-inner__lead {
		text-align: left;
	}

	.acd-contents .acd-target__flow {
		gap: 42px 0;
	}

	.acd-contents .acd-target__flow-item {
		padding: 4px 0 4px 0;
	}

	.acd-contents .acd-target__flow-item::before {
		position: absolute;
		width: 16%;
	}

	.acd-contents .acd-target__flow-item::after {
		height: 24px;
		width: 33px;
		bottom: -35px;
	}

	.acd-contents .acd-target__flow::after {
		content: url("https://cdn.l-tike.com/guide/teach_ticket/img/icon_ok_pc.svg");
		right: -10px;
		width: 100px;
	}

	.acd-contents .acd-target__note {
		font-size: var(--fz14);
	}

	.acd-contents .acd-target .btn-close span {
		padding: 0 0 0 40px;
	}

}


/*--------------------
Acordion P5
--------------------*/

.acd02-contents {
	margin: 0 0 15px 0;
	counter-increment: acd-number 1;
}

.acd02-contents:last-child {
	margin: 0 0 50px 0;
}

.acd02-contents .acd-trigger {
	height: 80px;
	/* background: var(--colorYel-01); */
	border: solid 3px #FFBF0F;
	border-radius: 100vw;
	display: grid;
	grid-template-columns: 4rem 1fr 3.56rem;
	background-image: linear-gradient(to left, #FFBF0F 3.56rem,  var(--colorYel-01) 3.56rem);
	margin: 0 0 15px 0;
	cursor: pointer;
}

.acd02-contents .acd-trigger:hover {
	opacity: 0.8;
}

.acd02-contents .acd-trigger__title {
	font-size: 20px;
	font-weight: 700;
	align-self: center;
	font-feature-settings: 'palt' 1;
	margin: 0 0 0 0.625rem;
}

.acd02-contents .acd-trigger::before {
	content: counter(acd-number) " ";
	width: 48px;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	justify-self: right;
	align-items: center;
	align-self: center;
	font-family: var(--font-secondary);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.03em;
	background-color: #fff;
	border: solid 3px #FFBF0F;
	border-radius: 100vw;
	line-height: 1.2;
}

.acd02-contents .acd-trigger::after {
	content: "";
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/acd_arrow03.svg") no-repeat center center;
	background-size: 23px auto;
	justify-self: stretch;
	transition: all 0.2s ease;
}

.acd02-contents .acd-trigger.active::after {
	transform: rotateX(180deg);
	transform-origin: center;
}

.acd02-contents .acd-target {
	display: none;
	border: solid 2px #FFBF0F;
	border-radius: 11px;
}

.acd02-contents .acd-target-inner {
	padding: 17px;
	line-height: 1.6;
}

.acd02-contents .acd-target-inner.dotline {
	background-image: linear-gradient(to right, var(--colorYel-01) 4px, transparent 4px);
	background-size: 9px 2px;
	background-repeat: repeat-x;
	background-position: bottom;
	margin-bottom: 25px;
	padding-bottom: 19px;
}

.acd02-contents .acd-target-inner.bgcolor {
	background-color: rgba(255, 207, 75, 0.2);
}

.acd02-contents .acd-target-inner:has(.acd-target-inner__bubble) {
	margin: 27px 0 18px 0;
	padding: 0 1.06rem;
}

.acd02-contents .acd-target-inner:has(.acd-target-inner__bubble)::after {
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_narrator_b.svg")"";
	display: block;
	margin: 18px auto 0 auto;
	width: 5.75rem;
	line-height: 0;
}

.acd02-contents .acd-target-inner__bubble {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-bottom: solid 2px #000;
	box-sizing: border-box;
	padding: 0 0 16px 0;
	font-size: var(--fz15);
	font-weight: 700;
	line-height: 1.6;
	background-color: #fff;
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.03em;
}

.acd02-contents .acd-target-inner__bubble-title {
	font-size: min(5.2vw, var(--fz20));
	width: 100%;
	margin: 0 0 14px 0;
	line-height: 1.25;
	letter-spacing: 0.03em;
}

.acd02-contents .acd-target-inner__bubble p {
	padding: 0 7px;
}

.acd02-contents .acd-target-inner__bubble strong {
	color: var(--colorOrg-03);
}

.acd02-contents .acd-target-inner__bubble:before {
	position: absolute;
    content: "";
    height: 10px;
    width: 21px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #fff;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.acd02-contents .acd-target-inner__bubble:after {
	position: absolute;
    content: "";
    height: 10px;
    width: 21px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #000;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
	z-index: -1;
}

.acd02-contents .acd-target__title {
	position: relative;
	background-color: rgba(255, 207, 75, 0.2);
	padding: 15px 0 15px 50px;
	font-size: var(--fz23);
	font-weight: 700;
	letter-spacing: 0.03em;
	font-feature-settings: 'palt' 1;
}

.acd02-contents .acd-target__title::before {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/icon_triangle01.svg")"";
	width: 13px;
	height: auto;
	line-height: 0;
	top: 50%;
	left: 22px;
	transform: translateY(-50%);
}

.acd02-contents .acd-target-inner .acd-target-inner__lead p {
	margin-bottom: 14px;
}

.acd02-contents .acd-target-inner .acd-target-inner__lead p:last-child {
	margin-bottom: 0;
}

.acd02-contents .acd-target-inner__lead strong {
	color: var(--colorOrg-03);
}

.acd02-contents .acd-target-inner__list {
	font-weight: 700;
	letter-spacing: 0.03em;
	margin: 0 0 17px 0;
}

.acd02-contents .acd-target-inner__list::after {
	content: "など";
}

.acd02-contents .acd-target-inner__list li {
	margin: 0 0 8px 0;
	text-indent: -1.25em;
	padding-left: 1.25em;
}

.acd02-contents .acd-target-inner__list.large li {
	font-size: var(--fz18);
}

.acd02-contents .acd-target-inner__list li::before {
	content: "■";
	margin-right: 0.25em;
}

.acd02-contents .image-wrap {
	text-align: center;
}

.acd02-contents .image-wrap__title {
	font-size: var(--fz18);
	font-weight: 700;
	margin: 0 0 10px 0;
}

.acd02-contents .image-wrap__item-img {
	position: relative;
	/* display: inline-block; */
	margin: 0 auto 16px auto;
	max-width: 370px;
}

.acd02-contents .image-wrap__item-img::after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: transparent;
	border: solid 1px #f1f1f1;
}

.acd02-contents .image-wrap__item-img:last-child {
	margin-bottom: 0;
}

.acd02-contents .image-wrap__item-img.vertical {
	width: 68.4%;
	max-width: 210px;
}

.acd02-contents .acd-target .btn-close {
	display: flex;
	justify-content: center;
	background-color: #FFBF0F;
	padding: 12px 0;
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: var(--fz20);
	letter-spacing: 0.1em;
}

.acd02-contents .acd-target .btn-close:hover {
	cursor: pointer;
	opacity: 0.8;
}

.acd02-contents .acd-target .btn-close span {
	position: relative;
	padding: 0 0 0 39px;
}

.acd02-contents .acd-target .btn-close span::before {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/acd_arrow02.svg");
	width: 19px;
	height: auto;
	left: 0;
	top: 0;
    bottom: -2px;
    margin: auto 0;
}

@media screen and (min-width: 768px) {

	.acd02-contents {
		margin: 0 0 40px 0;
	}

	.acd02-contents:last-child {
		margin: 0 0 110px 0;
	}

	.acd02-contents .acd-trigger {
		grid-template-columns: 76px 1fr 7.5rem;
		background-image: linear-gradient(to left, #FFBF0F 7.5rem,  var(--colorYel-01) 7.5rem);
		margin: 0 0 15px 0;
	}

	.acd02-contents .acd-trigger__title {
		font-size: var(--fz25);
		margin: 0 0.625rem;
		line-height: 1;
		justify-self: center;
	}

	.acd02-contents .acd-trigger::before {
		width: 53px;
		font-size: 35px;
	}

	.acd02-contents .acd-trigger::after {
		background-size: 39px auto;
	}

	.acd02-contents .acd-target-inner {
		margin: 0 0 23px 0;
		padding: 23px 50px 0 50px;
	}

	.acd02-contents .acd-target-inner.dotline {
		padding-bottom: 25px;
	}

	.acd02-contents .acd-target-inner:has(.acd-target-inner__bubble) {
		margin: 56px 0 23px 0;
		padding: 0 1.56rem;
	}

	.acd02-contents .acd-target-inner__bubble {
		font-size: var(--fz20);
		padding: 0 0 30px 0;
		letter-spacing: 0.06em;
	}

	.acd02-contents .acd-target-inner:has(.acd-target-inner__bubble)::after {
		width: 6.56rem;
		margin: 30px auto 0 auto;
	}

	.acd02-contents .acd-target-inner__bubble:before {
		height: 16px;
		width: 37px;
		bottom: -13.5px;
	}

	.acd02-contents .acd-target-inner__bubble:after {
		height: 16px;
		width: 37px;
		bottom: -16px;
	}

	.acd02-contents .acd-target-inner__bubble-title {
		font-size: var(--fz23);
		margin: 0 0 18px 0;
	}

	.acd02-contents .acd-target__title {
		padding: 12px 0 12px 88px;
		font-size: var(--fz25);
	}

	.acd02-contents .acd-target__title::before {
		width: 16px;
		left: 60px;
	}

	.acd02-contents .acd-target-inner__list li {
		margin: 0 0 4px 0;
	}
	.acd02-contents .acd-target-inner__list.large li {
		font-size: var(--fz20);
	}

	.acd02-contents .acd-target-inner__list li::before {
		font-size: var(--fz15);
	}

	.acd02-contents .image-wrap__title {
		margin: 0 0 12px 0;
	}

	.acd02-contents .image-wrap__item {
		display: grid;
		grid-template-columns: 20.625rem 8rem;
		gap: 1.25rem;
		justify-content: center;
	}

	.acd02-contents .image-wrap__item-img {
		margin: 0 0 0 0;
		max-width: none;
	}

	.acd02-contents .image-wrap__item-img.vertical {
		width: 100%;
		max-width: 100%;
	}

	.acd02-contents .acd-target .btn-close {
		margin: 44px 0 0 0;
	}
}


/*--------------------
Chapter Button
--------------------*/
.chapter-btn {
	position: relative;
	display: block;
	background-color: var(--colorYel-01);
	border-radius: 11px;
	padding: 30px 16px 24px 16px;
	margin: 50px 0 0 0;
}

.chapter-btn[data-count]::before {
	position: absolute;
	width: 47px;
	height: 46px;
	top: -26px;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	content: attr(data-count) "";
	font-family: var(--font-secondary);
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	letter-spacing: 0.1em;
	padding-left: 0.1em;
	text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,
		-1px 1px 0 #000, 1px -1px 0 #000,
		1px 0 0 #000, -1px 0 0 #000,
		0 1px 0 #000, 0 -1px 0 #000;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/numb_circle.svg") no-repeat;
	background-size: contain;
}

.chapter-btn__inner {
	display: grid;
	grid-template-columns: min(32vw, 120px) 1fr;
	grid-template-rows: auto;
	gap: 10px 3.2vw;
	grid-template-areas:
	"h2 h2"
	"btn-image btn-lead"
	"btn-image btn-check";
	line-height: 1.4em;
	/* max-width: 400px; */
	max-width: 25rem;
	margin: 0 auto;
}

.chapter-btn__title {
	grid-area: h2;
	font-size: min(5.2vw, var(--fz20));
	font-weight: 700;
	text-align: center;
	line-height: 1.3em;
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.025em;
}

.chapter-btn__image {
	grid-area: btn-image;
	justify-self: center;
	/* max-width: 120px; */
	max-width: 7.5rem;
}

.chapter-btn__image img {
	object-fit: contain;
}

.chapter-btn__lead {
	grid-area: btn-lead;
	align-self: center;
	font-size: var(--fz15);
	line-height: 1.4em;
}

.chapter-btn[data-count="03"] .chapter-btn__image {
	width: 85%;
}

.chapter-btn[data-count="03"] .chapter-btn__image img {
	margin-top: 3px;
}

.chapter-btn[data-count="04"] .chapter-btn__image {
	width: 93%;
}

.chapter-btn[data-count="04"] .chapter-btn__image img {
	transform: rotate(-11deg);
	margin-top: 23px;
}

.chapter-btn[data-count="05"] .chapter-btn__image {
	width: 96%;
}

.chapter-btn[data-count="05"] .chapter-btn__image img {
	margin-top: 16px;
}

.chapter-btn__check {
	grid-area: btn-check;
	text-align: center;
	height: 2rem;
	line-height: calc(2rem - 4px);
	border: solid 2px #141414;
	border-radius: 100vw;
	background-color: #fff;
	letter-spacing: 0.05em;
}

.chapter-btn__check::after {
	content:"";
	display: block;
	width: 100%;
	height: 100%;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/btn_check_sp.svg") no-repeat center;
	background-size: 4.75rem auto;
}

@media screen and (min-width: 768px) {
	.chapter-btn {
		border-radius: 15px;
		padding: 30px 30px 15px 30px;
		margin: 75px 0 0 0;
	}

	.chapter-btn[data-count]::before {
		width: 74px;
		height: 72px;
		top: -35px;
		font-size: 30px;
	}

	.chapter-btn__inner {
		grid-template-columns: 1fr 66%;
		grid-template-areas:
		"btn-image h2"
		"btn-image btn-lead"
		"btn-image btn-check";
		gap: 10px 30px;
		max-width: none;
	}

	.chapter-btn__title {
		padding: 20px 0 6px 0;
		text-align: left;
		font-size: min(3.2vw, var(--fz25));
		line-height: 1.4em;
		/* max-width: 400px; */
		max-width: 25rem;
	}

	.chapter-btn__image {
		max-width: none;
		padding: 0 0 15px 0;
		align-self: center;
	}
	.chapter-btn[data-count="02"] .chapter-btn__image {
		/* width: 150px; */
		width: 9.375rem;
	}

	.chapter-btn[data-count="03"] .chapter-btn__image {
		/* width: 136px; */
		width: 8.5rem;
	}

	.chapter-btn[data-count="03"] .chapter-btn__image img {
		margin-top: 0;
	}

	.chapter-btn[data-count="04"] .chapter-btn__image {
		/* width: 180px; */
		width: 11.25rem;
	}

	.chapter-btn[data-count="04"] .chapter-btn__image img {
		transform: rotate(-11deg);
		margin-top: 0;
	}

	.chapter-btn[data-count="05"] .chapter-btn__image {
		/* width: 163px; */
		width: 10.1875rem;
	}

	.chapter-btn[data-count="05"] .chapter-btn__image img {
		margin-top: 0;
	}

	.chapter-btn__lead {
		display: grid;
		font-size: 1rem;
		font-feature-settings: 'palt' 1;
		letter-spacing: 0.025em;
		line-height: 1.6em;
		/* max-width: 400px; */
		max-width: 25rem;
	}

	.chapter-btn__check {
		height: 2.5rem;
		line-height: calc(2.5rem - 4px);
		letter-spacing: 0.05em;
		/* min-width: 160px; */
		min-width: 10rem;
		justify-self: end;
		position: relative;
	}

	.chapter-btn__check::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/btn_check_pc.svg") no-repeat center;
		background-size: 84%;
	}

}


/*--------------------
Bubble
--------------------*/
.bubble {
	position: relative;
	margin: 0 auto 15px auto;
	max-width: 400px;
	padding: 0 0 min(19.2vw,72px) 0;
}

.bubble:has(+ .acd02-contents) {
	margin: 0 auto 30px auto;
}

.bubble.narrator_a {
	padding: 0 0 min(19.2vw,72px) 0;
}

.bubble.narrator_b {
	padding: 0 0 min(16.8vw,63px) 0;
}

.bubble--mgntop {
	margin-top: 50px;
}

.bubble__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/bubble_sp.svg") no-repeat center;
	padding: 0 16px min(6.6vw,25px) 20px;
	aspect-ratio: 345 / 150;
}

.bubble.large .bubble__inner {
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/bubble_sp_large.svg") no-repeat center;
	padding: 0 16px min(6.6vw,25px) 20px;
	aspect-ratio: 345 / 183;
}

.bubble.small .bubble__inner {
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/bubble_sp_small.svg") no-repeat center;
	padding: 0 16px min(6.6vw,25px) 20px;
	aspect-ratio: 345 / 115;
}

.bubble.narrator_a::after {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_narrator_a.svg");
	width: min(25.86vw,97px);
	bottom: 0;
	right: 12px;
	line-height: 0;
}

.bubble.narrator_b::after {
	position: absolute;
	content: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_narrator_b.svg");
	width: min(28vw,105px);
	bottom: 0;
	right: 0;
	line-height: 0;
}

.bubble__lead {
	/* font-size: 4.26vw; */
	font-size: min(4.26vw,16px);
	font-weight: 700;
	line-height: 1.6;
}

.bubble__lead strong {
	font-size: min(4.8vw,18px);
	color: var(--colorOrg-03);
	line-height: 0;
	padding: 0 0.1em;
}

.bubble__lead strong.large {
	/* font-size: 7.73vw; */
	font-size: min(7.73vw,29px);
}

.bubble__lead strong.normal {
	font-size: inherit;
}

.bubble__lead--sp {
	display: inline;
}

.bubble__lead--pc {
	display: none;
}

@container contents__inner (min-width: 700px) {
	.bubble {
		display: grid;
		grid-template-columns: 1fr 16.4%;
		margin-bottom: 62px;
		max-width: 100%;
	}

	.bubble:has(+ .acd02-contents) {
		margin-bottom: 50px;
	}

	.bubble.narrator_a,
	.bubble.narrator_b {
		padding: 0 0 0 0;
	}

	.bubble--mgntop {
		margin-top: 75px;
	}

	.bubble__inner,
	.bubble.large .bubble__inner,
	.bubble.small .bubble__inner {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/bubble_pc.svg") no-repeat center center;
		padding: 0 0 6px 0;
		aspect-ratio: auto;
	}

	.bubble.narrator_a::after,
	.bubble.narrator_b::after {
		position: static;
		width: 100%;
	}

	.bubble__lead {
		font-size: 1rem;
	}

	.bubble__lead strong {
		font-size: 1.125rem;
	}

	.bubble__lead strong.large {
		font-size: 1.625rem;
	}

	.bubble__lead--sp {
		display: none;
	}

	.bubble__lead--pc {
		display: inline;
	}
}

/*--------------------
P2 Point
--------------------*/
.point-list .card {
	border: solid 3px var(--colorYel-01);
	border-radius: 15px;
	margin: 0 0 17px 0;
	overflow: hidden;
}

.point-list .card:last-child {
	margin: 0 0 0 0;
}

.point-list .card__title {
	display: grid;
	/* grid-template-columns: 54px 1fr; */
	grid-template-columns: 3.375rem 1fr;
	gap: 0 13px;
	align-items: center;
	min-height: 80px;
	padding: 0 0 0 16px;
	background-color: var(--colorYel-01);
}

.point-list .card__heading {
	/* font-size: var(--fz21); */
	font-size: min(5.6vw, 21px);
	font-weight: 700;
	font-feature-settings: 'palt' 1;
	letter-spacing: normal;
	line-height: 1.2;
	padding: 0 8px 0 0;
}

.card__heading--break {
	display: inline;
}

.point-list .card__inner {
	padding: 12px 20px 25px 20px;
}

.point-list .card__lead {
	line-height: 1.6;
}

.point-list .card__image {
	text-align: center;
	margin: 16px 0 0 0;
}

.point-list .card__image[data-image="sns"] {
	display: grid;
	grid-template-columns: repeat(3, auto);
	/* grid-template-rows: 63px; */
	grid-template-rows: 4rem;
	justify-content: center;
	/* gap: 0 40px; */
	gap: 0 10.6vw;
	margin: 45px 0 5px;
}

.point-list .card__image[data-image="fc"] img {
	/* width: 213px; */
	width: 13.3rem;
}

.point-list .card__image[data-image="fan"] img {
	/* width: 182px; */
	width: 11.4rem;
}

.point-list .card__image[data-image="sns"] img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.point-list .card__image[data-image="sns"] img.card__image--x {
	transform: scale(0.89);
}

.point-list .card__image[data-image="pc"] img {
	/* width: 192px; */
	width: 12rem;
}

@media screen and (min-width: 768px) {
	.point-list .card__title {
		grid-template-columns: 3.5rem 1fr;
		gap: 0 18px;
		padding: 0 0 0 40px;
	}

	.point-list .card__heading {
		font-size: var(--fz25);
		letter-spacing: 0.05em;
	}

	.card__heading--sp {
		display: none;
	}

	.point-list .card__inner {
		padding: 24px 45px 30px 45px;
	}

	.point-list .card__image[data-image="sns"] {
		grid-template-rows: 5.5rem;
		gap: 0 5rem;
		margin: 60px 0 20px;
	}

	.point-list .card__image[data-image="fc"] img {
		width: 16.6rem;
	}

	.point-list .card__image[data-image="fan"] img {
		width: 13.7rem;
	}

	.point-list .card__image[data-image="pc"] img {
		width: 13rem;
	}
}


/*--------------------
Card
--------------------*/
.method-section {
	padding: 30px 0;
	background-image: linear-gradient(to right, var(--colorYel-01) 8px, transparent 8px);
	background-size: 16px 3px;
	background-repeat: repeat-x;
	background-position: bottom;
}

.method-section:last-child {
	background: none;
}

.method-section__heading {
	display: grid;
	justify-content: center;
	align-items: center;
	background: var(--colorOrg-01);
	min-height: 65px;
	padding: 8px 15px;
	border-radius: 15px;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.method-section__heading .heading__inner {
	/* font-size: var(--fz22); */
	font-size: min(5.8vw, 22px);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
}

.method-section__heading .heading__inner:has(.small) {
	line-height: 1.0;
}

.method-section__heading .heading__inner strong {
	color: #FDFF9E;
}

.method-section__heading .heading__inner .small {
	font-size: var(--fz16);
}

.method-section__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px 0;
}

.method-section__list .list__item.card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--colorYel-01);
	border-radius: 15px;
	padding: 25px 1.125rem;
	min-height: 220px;
}

.method-section__list .list__item.card::after {
	content: "";
	width: 100%;
	height: 0;
}

.method-section__list .list__item.card:last-child {
	margin: 0 0 0 0;
}

.method-section__list .card__title {
	grid-area: title;
	text-align: center;
	/* font-size: var(--fz25); */
	font-size: min(6.6vw, 25px);
	font-weight: 700;
	font-feature-settings: 'palt' 1;
	line-height: 1.3;
	margin: 0 0 15px 0;
	letter-spacing: 0.05em;
}

.method-section__list .card__lead {
	align-self: center;
	display: grid;
	grid-template-columns: min(39%, 150px) 1fr;
	align-items: center;
	gap: 0 3.24%;
}

.method-section__list .card__lead::before {
	content: "";
	display: block;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	justify-self: center;
}

.method-section__list .list__item[data-image="fc"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_fc_b.svg");
	aspect-ratio: 100 / 128;
	width: 83.3%;
	/* max-width: 6.18rem; */
}

.method-section__list .list__item[data-image="disc"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_disc.svg");
	aspect-ratio: 1 / 1;
	width: 85%;
	/* max-width: 6.375rem; */
}

.method-section__list .list__item[data-image="pc"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_pc.svg");
	aspect-ratio: 119 / 84;
	width: 99%;
	/* max-width: 7.44rem; */
}

.method-section__list .list__item[data-image="sp"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_sp.svg");
	aspect-ratio: 112 / 114;
	width: 93.3%;
	/* max-width: 6.81rem; */
}

.method-section__list .list__item[data-image="barcode"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_barcode.svg");
	aspect-ratio: 60 / 118;
	width: 50%;
	/* max-width: 3.75rem; */
}

.method-section__list .list__item[data-image="creditcard"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_creditcard.svg");
	aspect-ratio: 111 / 86;
	transform: rotate(-11.8deg);
	width: 92.5%;
	/* max-width: 6.93rem; */
}

.method-section__list .list__item[data-image="shop"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_shop.svg");
	aspect-ratio: 118 / 54;
	width: 98.33%;
	/* max-width: 7.37rem; */
}

.method-section__list .list__item[data-image="ticket"] .card__lead::before {
	background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_ticket.png");
	aspect-ratio: 120 / 75;
	width: 100%;
	/* max-width: 7.5rem; */
}

@media screen and (min-width: 768px) {
	.method-section__heading {
		min-height: 80px;
	}

	.method-section__heading .heading__inner {
		font-size: var(--fz25);
	}

	.method-section__list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 32px 20px;
	}

	.method-section__list .list__item.card {
		justify-content: flex-start;
		border-radius: 15px;
		margin: 0 0 0 0;
		padding: 30px 1.5rem;
	}

	.method-section__list .list__item.card::after {
		display: none;
	}

	.method-section__list .card__title {
		display: grid;
		margin: 0;
		min-height: 230px;
	}

	.method-section__list .card__title::after {
		content: "";
		display: block;
		width: 100%;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		justify-self: center;
	}

	.method-section__list .list__item[data-image="fc"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_fc_b.svg");
		aspect-ratio: 100 / 128;
		width: 7.75rem;
	}

	.method-section__list .list__item[data-image="disc"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_disc.svg");
		aspect-ratio: 1 / 1;
		width: 8.25rem;
	}

	.method-section__list .list__item[data-image="pc"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_pc.svg");
		aspect-ratio: 119 / 84;
		width: 11.06rem;
	}

	.method-section__list .list__item[data-image="sp"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_sp.svg");
		aspect-ratio: 112 / 114;
		width: 9.75rem;
	}

	.method-section__list .list__item[data-image="barcode"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_barcode.svg");
		aspect-ratio: 60 / 118;
		width: 5.37rem;
	}

	.method-section__list .list__item[data-image="creditcard"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_creditcard.svg");
		aspect-ratio: 111 / 86;
		transform: rotate(-11.8deg);
		width: 11.0rem;
	}

	.method-section__list .list__item[data-image="shop"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_shop.svg");
		aspect-ratio: 118 / 54;
		width: 14.31rem;
	}

	.method-section__list .list__item[data-image="ticket"] .card__title::after {
		background-image: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_ticket.png");
		aspect-ratio: 182 / 116;
		width: 11.37rem;
	}

	.method-section__list .card__lead {
		display: block;
	}

	.method-section__list .card__lead::before {
		display: none;
	}

}


/*--------------------
Image One Column
--------------------*/
.bubble:has(+ .section-img) {
	margin-bottom: 30px;
}

.section-img__title {
	font-size: var(--fz22);
	font-weight: 700;
	font-feature-settings: 'palt' 1;
}

.section-img__note {
	font-size: var(--fz15);
	display: grid;
	justify-content: center;
	justify-self: left;
}

.section-img__image {
	margin: 10px 0 0 0;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.bubble:has(+ .section-img) {
		margin-bottom: 50px;
	}

	.section-img__title {
		font-size: var(--fz25);
	}

	.section-img__note {
		font-size: var(--fz16);
	}

	.section-img__image {
		margin: 25px 0 0 0;
	}
}


/*--------------------
Travel
--------------------*/
.travel__contents {
	padding: 30px 0;
}

.travel__heading {
	display: grid;
	grid-template-columns: 4.25rem 1fr;
	/* grid-template-rows: auto; */
	gap: 0 1.06rem;
	margin: 0 0 25px 0;
}

.travel__numb {
	position: relative;
	display: flex;
	padding: 0 0.5rem 0 0;
	align-items: center;
}

.travel__numb::after {
	position: absolute;
	content: "";
	display: block;
	background-color: #000;
	width: 2px;
	height: calc(100% - 0.68rem);
	top: 0.44rem;
	right: 0;
}

.travel__title {
	font-size: var(--fz22);
	font-weight: 700;
	margin: 0 0 4px 0;
	letter-spacing: 0.03em;
	font-feature-settings: 'palt' 1;
}

.travel__lead {
	letter-spacing: 0.03em;
	font-feature-settings: 'palt' 1;
}

.travel__image {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.travel__contents {
		padding: 50px 0;
	}

	.travel__numb {
		padding: 0 0.8rem 0 0;
	}

	.travel__heading {
		gap: 0 1.6rem;
		margin: 0 0 16px 0;
	}

	.travel__title {
		font-size: var(--fz25);
		margin: 0 0 5px 0;
	}
}


/*--------------------
Enjoy
--------------------*/
.enjoy {
	padding: 30px 0 37px 0;
}

.enjoy__catch {
	margin: 0 0 25px 0;
	text-align: center;
}

.enjoy__catch span {
	position: relative;
	display: inline-block;
	/* font-size: var(--fz22); */
	font-size: min(5.8vw, var(--fz22));
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.05em;
}

.enjoy__catch span::before,
.enjoy__catch span::after {
	position: absolute;
	content: "";
	display: block;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 1.125rem;
	height: 1.625rem;
	background-size: contain;
}

.enjoy__catch span::before {
	left: -2rem;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/catch02_l.svg") no-repeat;
}

.enjoy__catch span::after {
	right: -1.5rem;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/catch02_r.svg") no-repeat;
}

.enjoy__lead p {
	margin: 0 0 20px 0;
	letter-spacing: 0.03em;
}

.enjoy__photo-01,
.enjoy__photo-02 {
	text-align: center;
}

.enjoy__photo-01 {
	/* padding-bottom: 82px; */
	padding-bottom: 25vw;
	background: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_enjoy_sp.svg") center bottom no-repeat;
	background-size: 71.6% auto;
	margin: 0 0 15px 0;
}

.enjoy__photo-01 img {
	width: 66.1%;
	filter: drop-shadow(-5px 8px 0px #FBE9BA);
}

.enjoy__photo-02 img {
	width: 78%;
	filter: drop-shadow(5px 8px 0px #FBE9BA);
}

@media screen and (min-width: 768px) {
	.enjoy {
		padding: 50px 0 58px 0;
	}

	.enjoy__catch span {
		font-size: var(--fz25);
	}

	.enjoy__photo {
		display: grid;
		grid-template-columns: 1fr 18.75rem;
	}

	.enjoy__photo-01,
	.enjoy__photo-02 {
		text-align: left;
	}

	.enjoy__photo-01 {
		align-self: self-end;
		padding: 0 0 0 5px;
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/illust_enjoy_pc.svg") right 10px top no-repeat;
		background-size: 47% auto;
	}

	.enjoy__photo-02 {
		padding: 0 5px 0 0;
	}

	.enjoy__photo-01 img {
		width: 52.5%;
	}

	.enjoy__photo-02 img {
		width: 100%;
	}
}


/*--------------------
Pagination
--------------------*/
.pagination {
	/* width: 400px; */
	width: 25rem;
    max-width: 100%;
    padding: 0 15px 0 15px;
	margin: 70px auto 0 auto;
}

.pagination__label {
	font-weight: bold;
}

.pagination__label::first-letter {
	font-size: var(--fz21);
}

.pagination__next .pagination__label {
	text-align: right;
	padding-right: 24px;
}

.pagination__prev .pagination__label {
	text-align: left;
	padding-left: 24px;
}

.pagination__btn {
	margin-bottom: 28px;
}

.pagination a:last-child .pagination__btn {
	margin-bottom: 0;
}

.pagination__btn {
	width: 100%;
	min-height: 70px;
	border-radius: 6px;
	display: grid;
	grid-template-columns: 19.7% 1fr;
	gap: 0 2.9%;
	padding: 8px 0;
}

.pagination__next .pagination__btn {
	background: linear-gradient(to right, var(--colorYel-01) 90%, transparent 0), url("https://cdn.l-tike.com/guide/teach_ticket/img/bg_pagination_next.svg") right no-repeat;
}

.pagination__prev .pagination__btn {
	background: linear-gradient(to left, var(--colorYel-01) 90%, transparent 0), url("https://cdn.l-tike.com/guide/teach_ticket/img/bg_pagination_prev.svg") left no-repeat;
}

.pagination__btn__lead {
	display: flex;
	align-items: center;
	font-feature-settings: 'palt' 1;
	font-size: min(4.8vw, var(--fz18));
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.pagination__btn::before {
	content: attr(data-count)"";
	border-right: solid 1px ;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-secondary);
	font-size: var(--fz22);
	font-weight: 600;
	text-shadow: 1px 1px 0 #000, -1px -1px 0 #000,
	-1px 1px 0 #000, 1px -1px 0 #000,
	1px 0 0 #000, -1px 0 0 #000,
	0 1px 0 #000, 0 -1px 0 #000, 2px 2px 0#F3B813;
	color: #fff;
	letter-spacing: 0.1em;
	padding-left: 0.5em;
}

@media screen and (min-width: 768px) {
	.pagination {
		width: 45.625rem;
		margin: 125px auto 0 auto;
	}

	.pagination__label {
		font-size: var(--fz18);
	}

	.pagination__label::first-letter {
		font-size: var(--fz25);
	}

	.pagination__next .pagination__label {
		padding-right: 50px;
	}

	.pagination__prev .pagination__label {
		padding-left: 50px;
	}

	.pagination__btn {
		position: relative;
		min-height: 140px;
		border-radius: 11px;
		grid-template-columns: 4rem 1fr;
		padding: 25px 0 25px 180px;
		gap: 0 24px;
		margin-bottom: 65px;
	}

	.pagination__btn::after {
		position: absolute;
		content: "";
		display: block;
		top: 0;
		left: 0;
		width: 180px;
		height: 100%;
	}

	.pagination__next .pagination__btn[data-count="03"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter03.svg") no-repeat 53px center / 102px auto;
	}

	.pagination__next .pagination__btn[data-count="04"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter04.svg") no-repeat 30px center / 122px auto;
		transform: rotate(-14.5deg);
	}

	.pagination__next .pagination__btn[data-count="05"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter05.svg") no-repeat 53px center / 109px auto;
	}

	.pagination__prev .pagination__btn[data-count="02"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter02.svg") no-repeat 60px center / 105px auto;
	}

	.pagination__prev .pagination__btn[data-count="03"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter03.svg") no-repeat 61px center / 102px auto;
	}

	.pagination__prev .pagination__btn[data-count="04"]::after {
		background: url("https://cdn.l-tike.com/guide/teach_ticket/img/chapter04.svg") no-repeat 35px center / 122px auto;
		transform: rotate(-14.5deg);
	}

	.pagination__btn__lead {
		font-size: var(--fz25);
	}

	.pagination__btn::before {
		font-size: var(--fz32);
		width: 4rem;
		justify-content: flex-start;
		padding-left: 0;
	}
}


/*--------------------
Top Button
--------------------*/
.btn-top {
	margin: 70px auto 60px auto;
}

a.btn-top-link {
	display: block;
	background-color: var(--colorOrg-01);
	font-size: var(--fz15);
	color: #fff;
	/* width: 250px; */
	width: 15.625rem;
	max-width: 90%;
	height: 60px;
	line-height: 60px;
	letter-spacing: 0.15em;
	border-radius: 100vw;
	text-align: center;
	font-weight: 700;
	margin: 0 auto;
	font-feature-settings: 'palt' 1;
}

@media screen and (min-width: 768px) {
	.btn-top {
		margin: 125px auto 80px auto;
	}
}


/*====================================
Adjust
=====================================*/
.tL {text-align: left !important;}
.tR {text-align: right !important;}
.tC {text-align: center !important;}
.fL {float: left !important;}
.fR {float: right !important;}

.sp-tL,
.pc-tC {text-align: left !important;}

.mbSS {margin-bottom: 4px !important;}
.mbS {margin-bottom: 8px !important;}
.mbM {margin-bottom: 16px !important;}
.mbL {margin-bottom: 24px !important;}
.mbLL {margin-bottom: 32px !important;}

.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}

.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}

.fz10 {font-size: var(--fz10) !important;}
.fz11 {font-size: var(--fz11) !important;}
.fz12 {font-size: var(--fz12) !important;}
.fz13 {font-size: var(--fz13) !important;}
.fz14 {font-size: var(--fz14) !important;}
.fz15 {font-size: var(--fz15) !important;}
.fz16 {font-size: var(--fz16) !important;}
.fz18 {font-size: var(--fz18) !important;}
.fz20 {font-size: var(--fz20) !important;}
.fz22 {font-size: var(--fz22) !important;}
.fz23 {font-size: var(--fz23) !important;}
.fz24 {font-size: var(--fz24) !important;}
.fz25 {font-size: var(--fz25) !important;}
.fz26 {font-size: var(--fz26) !important;}
.fz28 {font-size: var(--fz28) !important;}
.fz30 {font-size: var(--fz30) !important;}
.fz32 {font-size: var(--fz32) !important;}

.fw500 {
	font-weight: 500 !important;
}

.caution {
	color: var(--colorCaution) !important;
}

.underline {
	text-decoration: underline !important;
	text-underline-offset: 0.25em;
}

.inlblock {
	display: inline-block !important;
}

.sp,
.pc-none {
	display: inline;
}

.pc,
.sp-none {
	display: none;
}

@media screen and (min-width: 768px) {

	.sp-tL,
	.pc-tC {
		text-align: center !important;
	}

	.sp,
	.pc-none {
		display: none;
	}

	.pc,
	.sp-none {
		display: inline;
	}
}
