@charset "UTF-8";
/* CSS Document */

/* root */

:root {
	--text: #000000;
	--text_a: #05614f;
	--bg: #f0f0f0;
	--bg_btn: #333333;
	--bg_nav: #ffffff;
	--bg_a: #007d65;
	--bg_b: #05614f;
	--bg_c: #faf4da;
	--bg_d: #ffe100;
	--p1_a: #f78723;
	--p1_b: #fff6eb;
	--p2_a: #00aecb;
	--p2_b: #eefafc;
	--p3_a: #7ac943;
	--p3_b: #f1fcec;
}


/* html5 リセット */

article,aside,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary {
	display: block;
}
audio,canvas,progress,video {
	display: inline-block;
	vertical-align: baseline;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
svg:not(:root) {
	overflow: hidden;
}
blockquote,q {
	quotes: none;
}


/* html リセット */

html,body{
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: top;
	background:transparent;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,main,menu,nav,section,summary,
embed,output,ruby,
time,mark,audio,video,
tr,th,td{
	font-size: inherit;
	color: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin-block-start: initial;
	margin-block-end: initial;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}


/* iOS リセット */

button {
	 -webkit-appearance: none;
	 border-radius: 0;
}

/* FancyBox */
.fancybox__backdrop{
	--fancybox-bg:rgba(255,255,255,0.80);
	backdrop-filter: blur(5px);
}

.fancybox__container{
	font-family: "Roboto", YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
	z-index: 99999;
}

#body .fancybox__container{
	z-index: 10000000;
}

.fancybox__content{
    width: calc(100% - 5vw);
    max-width: 1024px;
}

.fancybox__container.has-toolbar{
    flex-direction: column-reverse;
}

.fancybox__infobar{
    font-family: 'Frank Ruhl Libre', serif !important;
    background-color: transparent;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
	margin: 0 20px;
}

.fancybox__toolbar, .fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar{
	padding: 40px 5vw 25px;
	top: initial;
	background: transparent;
	width: 100%;
}

@media screen and (min-width: 425px) {
	.fancybox__toolbar, .fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar{
		padding: 40px 0;
		width: 365px;
		margin: 0 auto;
		background: transparent;
	}
}

.fancybox__toolbar{
	--f-progress-color: var(--fancybox-color, rgba(0, 0, 0, 0.00));
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: var(--bg_a);
    --f-button-hover-bg: var(--bg_a);
    --f-button-active-bg: var(--bg_a);
    --f-button-border-radius: 50%;
    --f-button-svg-width: 25px;
    --f-button-svg-height: 25px;
    --f-button-svg-stroke-width: 2;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.00));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.5;
}

@media screen and (min-width: 425px) {
	.fancybox__toolbar{
		--f-button-width: 50px;
		--f-button-height: 50px;
		--f-button-svg-width: 25px;
		--f-button-svg-height: 25px;
	}
}

.f-button{
	border: solid 1px #ffffff;
}

.f-button:hover{
	background-color: var(--bg_a) !important;
}

.f-button[disabled],
.f-button[disabled]:hover{
	border: solid 1px hsla(0,0%,100%,0.00);
	background-color: hsla(0,0%,0%,0.25) !important;
}

.f-button svg{
	stroke: #ffffff;
}

.f-button[title="Close"],
.f-button[title="Close"]:hover{
	border: solid 1px var(--bg_a);
	background-color: #ffffff !important;
}

.f-button[title="Close"] svg{
	stroke: var(--bg_a) !important;
}

.f-button + .f-button{
	margin-left: 20px;
}


/* 絵文字 */

.emoji{
	font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Noto Emoji", sans-serif;
}


/* パソコン・スマホ表示 */

.pc-only {
	display: none;
}
.sp-only {
	display: inherit;
}


/* 基本 */

body {
	font-style: normal;
	font-weight: normal;
	color: var(--text);
	font-family: "Roboto Flex", YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
    font-feature-settings: "palt" !important;
}
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
b,strong,h1,h2,h3,h4,h5,h6{
	font-weight: bold;
}
u{
	text-decoration: underline;
}


/* フェードイン */

.fade {
    opacity: 0 !important;
    -webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
    transition: all 1s;
}

.fade.fade-active {
    opacity: 1 !important;
}


/* LP個別 */

.button{
	width: auto;
	padding: 6px 22px;
	height: 44px;
	background-color: var(--bg_btn);
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 22px;
}

.button:hover{
	cursor: pointer;
}

.button.shadow{
	box-shadow: 0px 1px 4px 0px hsl(0deg 0% 0% / 50%);
}

.button .button-text{
	font-size: 15px;
	color: #ffffff;
	font-weight: bold;
	display: flex;
    justify-content: center;
    align-items: center;
	margin-top: -1px;
}

.button .button-text.yellow{
	color: #FFFF44;
}

.button-text::before,
.button-text::after{
	background-position: center;
	background-repeat: no-repeat;
}

.button.after-link .button-text::after{
    content: "open_in_new";
	font-size: 14px;
    font-family: "Material Symbols Outlined";
	margin-top: 0.125rem;
    margin-left: 0.25rem;
}

.button.before-arrow .button-text::before{
    content: "arrow_back_ios";
	font-size: 14px;
    font-family: "Material Symbols Outlined";
	margin-top: 0.125rem;
    margin-right: 0.25rem;
}

.button.after-arrow .button-text::after{
    content: "arrow_forward_ios";
	font-size: 14px;
    font-family: "Material Symbols Outlined";
	margin-top: 0.125rem;
    margin-left: 0.25rem;
}

.button.bg{
	background-color: var(--bg);
}

.button.bg .button-text{
	color: var(--text);
}

.text-link.after-arrow-circle{
	line-height: 1;
	display: flex;
}

.text-link.after-arrow-circle::after{
	content: "expand_circle_right";
	font-family: "Material Symbols Outlined";
	margin-left: 0.25rem;
}

.text-a{
	color: var(--text_a);
}

.text-red{
	color: #eb021b;
}

.text-green{
	color: #00a65a;
}

.none{
	display: none !important;
}

.transparent{
	opacity: 0.25 !important;
}


#body{
	background-color: #ffffff;
}

#body.no-scroll{
	overflow: hidden;
}

.body-wrapper{
	background-color: var(--bg);
}

.page-wrapper{
	width: 100%;
	min-width: 375px;
	max-width: 425px;
	margin: 0 auto;
	background-color: #ffffff;
}

@media screen and (min-width: 426px) {
	.page-wrapper{
		box-shadow: 0px 0px 10px 0px hsl(0deg 0% 0% / 25%);
	}
}

.lp-button-header{
	padding: 12px 20px;
	background-color: var(--bg_a);
}

.lp-button-header .header-title{
	color: #ffffff;
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
}

.lp-button-wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
	align-items: center;
}

.lp-button-wrapper .button.line-green{
	font-size: 14px;
	height: 28px;
}

.lp-date-header{
	padding: 12px 20px;
	background-color: #2d6d8a;
}

.lp-date-header .date-title{
	line-height: 0;
}

.lp-date-header .date-title-img{
	width: 280px;
	height: auto;
}

.button-line-small{    
	width: auto;
	height: 32px;
	color: #ffffff;
	background-color: #06c755;
    display: flex;
    align-items: center;
    justify-content: center;
	border: 1px solid #06c755;
	border-radius: 5px;
}

.button-line-small span{
	width: 83px;
	font-size: 14px;
    margin: -2px 0 0 !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
}

.button-line-small.white{    
	color: var(--text);
	background-color:#ffffff;
	border: 1px solid #cccccc;
	height: 42px;
}

.button-line-small.white span{
    font-weight: 500;
	width: auto;
    margin: -1px 0 0 !important;
	padding: 0px 12px;
	line-height: 1;
}

.button-line-small.white span.before-line-icon::before{
	content: "";
	width: 18px;
	height: 18px;
	background-image: url("../images/index/button-line-green.png?260302_1");
	background-size: cover;
    margin-right: 6px;
}

.lp-header{
	background-color: var(--bg_a);
	padding: 12px 20px 17px;
}

.header-wrapper{
	width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	color: #ffffff;
}

.lp-header-text{
	font-size: 19px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 15px;
}

.lp-header .text-link{
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
}

section{
    padding: 60px 0px;
}

section.no-padding{
    padding: 0px 0px;
}

section.bg{
	background-color: var(--bg);
}

section.bg-a{
	background-color: var(--bg_a);
}

section.bg-c{
	background-color: var(--bg_c);
}

.section-wrapper{
	width: calc(100% - 40px);
	margin: 0 auto;
}

.section-wrapper.narrow{
	width: calc(100% - 60px);
}

.section-wrapper.no-margin{
	width: 100%;
}

.section-wrapper + .section-wrapper{
	margin-top: 60px;
}

.section-title{
	text-align: center;
	margin-bottom: 40px;
}

.section-title .en{
	font-size: 30px;
	font-weight: 800;
	font-style: normal;
}

.section-title .en .small{
	font-size: 24px;
}

.section-title .ja{
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}

.section-title.ja-only{
	background-color: #ffffff;
	padding: 40px 0;
}

.section-title.ja-only .ja{
	font-size: 24px;
	font-weight: 900;
	color: var(--text_a);
	letter-spacing: 0px;
}

.section-title.ja-only .ja .small{
	font-size: 16px;
	font-weight: bold !important;
}

section.no-padding .section-content{
	padding-bottom: 80px;
}


/*トップ画像*/

.lp-mv{
	background-color: transparent;
	padding: 0;
	position: relative;
}

.mv-h1{
	display: none;
}

.mv-block-group{
	margin-bottom: 60px;
}

.mv-block{
	background-color: #ffffff;
	padding: 20px;
	box-shadow: 1px 1px 4px 0px hsl(0deg 0% 0% / 50%);
	border-radius: 10px;
}

.mv-block-img{
	width: 100%;
    margin: 0 auto;
    display: block;
}

.mv-block-img.start{
    max-width: 238px;
}

.mv-block .block-button-group {
    display: flex;
    justify-content: center;
}

.mv-block .block-img-wrapper + .block-button-group{
	margin-top: 14px;
}

.mv-logo{
}

.mv-logo-img{
	width: 100%;
    max-width: 425px;
    margin: 0 auto;
    display: block;
}


/* ランキング */

.lp-ranking{
	background-color: var(--bg_b);
	padding: 60px 0 60px;
	position: relative;
	color: #ffffff;
}

.ranking-title{
	width: 100%;
}

.ranking-title-img{
	width: 100%;
	max-width: 315px;
	margin: 0 auto;
	display: block;
}

.ranking-text{
	font-size: 15px;
	line-height: 25px;
	font-weight: 500;
}

.ranking-tab-group{
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}


.ranking-result-title{
	font-weight: 800;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ranking-result-title::before{
    content: "";
    width: 59px;
    height: 41px;
	background-image: url("../images/index/ranking-crown.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

.ranking-result-title span{
	font-size: 14px;
	font-weight: normal;
}

.ranking-title + .ranking-result,
.ranking-text + .ranking-result,
.ranking-result + .ranking-result,
.ranking-result + .ranking-title{
	margin-top: 60px;
}

.ranking-group.gtc-1{
	width: 100%;
	max-width: 325px;
	margin: 0 auto;
}

.ranking-prize{
	display: flex;
	justify-content: center;
	align-items: center;
}

.ranking-prize .tag{
	width: auto;
    height: 26px;
    border-radius: 13px;
	padding: 0 13px;
    background-color: var(--bg_d);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text_a);
    font-weight: 800;
    font-size: 15px;
	line-height: 1;
    margin-right: 8px;
	white-space: nowrap;
}

.ranking-prize .name{
	font-weight: bold;
    font-size: 15px;
    line-height: 23px;
}

.ranking-result-title + .ranking-prize{
	margin: 16px 0 20px;
}

.ranking-prize + .ranking-table{
	margin-top: 10px;
}

.ranking-tab-bottom .ranking-prize .name{
	color: var(--text);
}

.ranking-tab{
	background-color: #ffffff;
	border-radius: 5px;
}

.ranking-tab-group .ranking-tab + .ranking-tab{
	margin-top: 20px;
}

.ranking-tab-top{
	padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	-webkit-transition: all 1s;
	transition: all 1s;
	background-color: var(--bg_d);
	border-radius: 5px;
}

.ranking-tab-top:hover{
	cursor: pointer;
}

.ranking-tab-top.tab-active{
	border-radius: 5px 5px 0 0;
}

.ranking-tab-top::after {
    content: "expand_more";
	font-size: 28px;
    width: 24px;
    height: 24px;
	font-family: 'Material Icons' !important;
	display: flex;
    align-items: center;
    justify-content: center;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	color: var(--text_a);
	font-weight: 900;
}

.ranking-tab-top.tab-active::after {
	transform: rotate(0.5turn);
}

.ranking-tab-title{
	font-size: 20px;
	font-weight: 900;
	color: var(--text_a);
}

.ranking-tab-bottom{
	padding: 16px 8px 16px;
}

.ranking-tab-top + .ranking-tab-bottom{
	padding: 12px 8px 16px;
}

.ranking-tab-single{
	padding: 8px 8px 12px;
}

.after-table-text{
	width: 100%;
	margin: 20px auto 0;
	font-size: 14px;
}

.ranking-table{
	width: 100%;
	border-collapse:collapse;
}

.ranking-table tr th,
.ranking-table tr td{
	padding: 8px 2px;
	color: #000000;
}

.ranking-table tr:last-child th,
.ranking-table tr:last-child td{
	padding: 8px 2px 0;
}

.ranking-table tr:not(:last-child) th,
.ranking-table tr:not(:last-child) td{
	border-bottom: solid 1px #e4e4e4;
}

.ranking-table .th-head{
	font-size: 12px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: #454545;
	font-weight: 500;
}

.ranking-table .th-rank{
	width: 26px;
}

.ranking-table .rank{
	width: 26px;
	height: 26px;
	border-radius: 50%;
    background-color: var(--bg_d);
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
	color: var(--text_a);
	font-weight: 900;
	font-size: 15px;
	margin-right: 2px;
	line-height: 1;
}

.ranking-table .td-name{
	font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans GB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Helvetica, Meiryo, Arial, sans-serif !important;
	font-weight: 600;
	font-size: 14px;
    font-feature-settings: initial;
}

.ranking-table .td-age{
	font-weight: normal;
	font-size: 13px;
	text-align: center;
	white-space: nowrap;
}

.ranking-table .td-score{
	font-weight: bold;
	font-size: 13px;
	text-align: center;
	white-space: nowrap;
}

.ranking-table .td-date{
	font-size: 13px;
	text-align: right;
	white-space: nowrap;
}

.ranking-table .td-prize{
	color: var(--bg_b);
	font-weight: bold;
	font-size: 13px;
	text-align: right;
	white-space: nowrap;
}

.ranking-table .td-other{
	font-size: 14px;
	text-align: right;
}



/* バルーン */

.lp-balloon{
	padding: 0;
	background-color: var(--bg_nav);
}

.lp-balloon-wrapper{    
	width: 100%;
    max-width: 498px;
    margin: 0 auto;
	padding: 0px 10px;
	position: relative;
	bottom: -17px;
	-webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

.lp-balloon-wrapper.active{
	bottom: 0px;
}

.lp-balloon-list{
	display: flex;
    justify-content: space-between;
	list-style: none;
	padding: 0px;
}

.lp-balloon-list li{
	position: relative;
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	margin: 0px 0px 15px;
	padding: 4px 4px;
	background: #ffe100;
	border-radius: 3px;
	box-sizing: border-box;
	width: calc(33.33% - 10px);
}

.lp-balloon-list li::before{
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -8px;
	border: 7px solid transparent;
	border-top: 14px solid #ffe100;
	z-index: 2;
}

.lp-balloon-list li .balloon-title{
	color: var(--bg_nav);
	font-weight: 900;
	font-size: 19px;
	line-height: 18px;
}

.lp-balloon-list li.transparent{
	background-color: transparent;
}

.lp-balloon-list li.transparent::before{
	border-top-color: transparent;
}

/*ナビゲーション*/

.lp-nav-margin{
	height: 0px;
}

.lp-nav-margin.active{
	height: 85px;
}

.lp-nav{
    width: 100%;
    min-width: 375px;
    max-width: 425px;
    overflow-x: hidden;
    padding: 0;
}

.lp-nav.fixed{
	position: fixed;
    top: 0;
    z-index: 1;
	width: 100%;
}

.lp-nav-wrapper{
	width: 100%;
    margin: 0 auto;
	background-color: var(--bg_nav);
}

.link-list{
	list-style: none;
	margin: 0 15px;
	padding: 10px 0 0;
	display: flex;
    align-items: flex-start;
    justify-content: center;
	height: 75px;
	overflow-x: hidden;
}

.link-list li{
	width: calc(33.3%);
	height: 55px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
}

.link-list li + li{
	margin-left: 10px;
}

.link-list .link-title{
	width: 100%;
    height: 100%;
	font-weight: bold;
	font-size: 15px;
	line-height: 18px;
	letter-spacing: -0.2px;
	color: #ffffff;
	display: inline-flex;
    justify-content: center;
    align-items: center;
	background-color: #666666;
	cursor: pointer;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
	border-radius: 5px;
}

.link-list .link-title.active{
	height: 65px;
	font-size: 17px;
	line-height: 22px;
	font-weight: 900;
	border-radius: 5px 5px 0 0;
}

.link-list .link-title.p1:focus,
.link-list .link-title.p1:hover,
.link-list .link-title.p1.active{
	background-color: var(--p1_a);
}

.link-list .link-title.p2:focus,
.link-list .link-title.p2:hover,
.link-list .link-title.p2.active{
	background-color: var(--p2_a);
}

.link-list .link-title.p3:focus,
.link-list .link-title.p3:hover,
.link-list .link-title.p3.active{
	background-color: var(--p3_a);
}

.lp-nav-border{
	list-style: none;
	padding: 0px;
}

.lp-nav-border li{
	border-bottom: 0px solid #00411f;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

.lp-nav-border li.p1{
	border-bottom-color: var(--p1_a);
}

.lp-nav-border li.p2{
	border-bottom-color: var(--p2_a);
}

.lp-nav-border li.p3{
	border-bottom-color: var(--p3_a);
}

.lp-nav-border li.active{
	border-bottom-width: 10px;
}

/*パート*/

.part-wrapper{
	display: none;
}

.part-wrapper.active{
	display: block;
}



/*新イベントの特徴*/

.feature-title{
	width: 100%;
}

.feature-title + .feature-title{
	margin-top: 60px;
}

.feature-title-img{
	width: 100%;
	max-width: 310px;
	margin: 0 auto;
	display: block;
}

.button-follow{
	margin: 0 auto;
	display: block;
	line-height: 0;
	width: 100%;
	max-width: 310px;
}

.feature-title + .feature-button{
	margin-top: 14px;
}

.feature-button + .feature-title{
	margin-top: 60px;
}

.button-follow-img{
	width: 100%;
	display: block;
}

.lp-about.p1,
.lp-simulation.p1{
	background-color: var(--p1_b);
}

.lp-about.p2{
	background-color: var(--p2_b);
}

.lp-about.p3{
	background-color: var(--p3_b);
}

.about-title{
	width: 100%;
}

.about-title-img{
	width: 100%;
	margin: 0 auto;
	display: block;
}

.about-title + .about-title{
	margin-top: 70px;
}

.follow-button-column{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.follow-button-column .button + .button{
	margin-top: 15px;
}

.follow-title{
	text-align: center;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 20px;
	font-weight: 900;
	color: var(--text);
}

.lp-follow.bg-a .follow-title,
.lp-follow.bg-a .follow-text{
	color: #ffffff;
}

.follow-text.bottom{
	margin-top: 20px;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
}

.follow-title-wrapper {
    width: 100%;
}

.follow-title-img{
	width: 100%;
	max-width: 294px;
	margin: 0 auto;
	display: block;
}

.follow-title-wrapper + .follow-button-group{
	margin-top: 20px;
}

.lp-follow .button{
	width: 100%;
	height: 60px;
	border-radius: 5px;
}

.button.follow{
	background-color: #06c755;
	border: 1px solid #06c755;
}

.button.follow .button-text{
	color: #ffffff;
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 900;
}

.button.share{
	background-color: #ffffff;
	border: 1px solid #cccccc;
}

.button.share .button-text{
	color: var(--text);
	font-size: 19px;
	line-height: 19px;
	letter-spacing: 0px;
	font-weight: 500 !important;
}

.button.follow .button-text::before,
.button.share .button-text::before{
    content: "";
    width: 25px;
    height: 24px;
    background-size: cover;
    margin: 0 12px -1px 0;
}

.button.follow .button-text::before{
    background-image: url(../images/index/button-line-white.png?250423_1);
}

.button.share .button-text::before{
    background-image: url(../images/index/button-line-green.png?250423_1);
}


/* イベント概要 */

.lp-overview{
	background-color: #ffffff;
}

.lp-overview .section-title.ja-only{
	margin: 60px 0;
	padding: 0;
}

.overview-list{
	list-style: none;
	padding: 0;
}

.overview-list li + li{
	margin-top: 50px;
}

.overview-list .list-top{
	padding: 0 20px 0;
}

.overview-list .list-title{
	color: var(--text_a);
	font-size: 18px;
	font-weight: 800;
	border-bottom: 1px solid #b5b5b5;
	padding-bottom: 10px;
}

.overview-list .list-title .small{
	font-size: 15px;
}

.overview-list .list-bottom{
	padding: 10px 20px 0;
}

.overview-list .list-subtitle{
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 5px;
}

.overview-list .list-subtitle .small{
	font-size: 14px;
}

.overview-list * + .list-subtitle{
	margin-top: 20px;
}

.overview-list .list-text{
	font-size: 15px;
	line-height: 25px;
	text-align: justify;
}

.overview-list .ta-left{
	text-align: left;
}

.overview-list .list-text .small,
.overview-list .list-text.small{
	font-size: 14px;
	line-height: 24px;
}

.overview-list .list-img{
	width: 100%;
	height: auto;
}

.overview-list .list-text + .list-img{
	margin-top: 20px;
}

.overview-list .list-img + .list-text{
	margin-top: 20px;
}

.overview-list .list-button-wrapper{
    display: flex;
}

.overview-list .list-text + .list-button-wrapper{
	margin: 6px 0 16px;
}

.overview-list .list-button-wrapper .button{
    width: auto;
    height: 36px;
	margin-right: 12px;
	padding: 6px 12px;
    border-radius: 4px;
}

.overview-list .list-button-wrapper .button.hp{
	background-color: var(--bg_btn);
}

.overview-list .list-button-wrapper .button:last-of-type{
	margin-right: 0;
}

.overview-list .list-button-wrapper .button .button-text{
	font-size: 14px;
	line-height: 1rem;
	margin: -2px 0 0 !important;
}

.overview-list .list-button-wrapper .button.follow .button-text::before{
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.overview-list .mark-list{    
	counter-reset: item;
	list-style-type: none;
    padding-left: 0;
}

.overview-list .mark-list li{
    border-width: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.overview-list .mark-list li:last-child{
    margin-bottom: 0;
}

.overview-list .mark-list li .mark.small{
	font-size: 14px;
}

.overview-list .list-text + .mark-list{
	margin-top: 10px;
}

.overview-list .list-text + .list-table-group{
	margin-top: 14px;
}

.overview-list .list-table-group + .list-text{
	margin-top: 14px;
}

.overview-list .list-table-group{
	display: grid;
  	grid-template-columns: repeat(1, 1fr);
	column-gap: 0px;
	row-gap: 20px;
    justify-items: start;
}

.overview-list .list-table{
	border-collapse: collapse;
	border-color: #b5b5b5;
	width: auto;
}

.overview-list .list-table caption{
	text-align: left;
}

.overview-list .list-table caption .table-title{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 8px;
}

.overview-list .list-table caption .table-title .small{
	font-size: 16px;
	font-weight: bold;
}

.overview-list .list-table th{
	background-color: #e6e6e6;
	font-weight: bold;
	font-size: 12px;
	padding: 10px 14px;
}

.overview-list .list-table .th-rank{
	background-color: var(--bg);
	font-weight: bold;
	font-size: 20px;
	padding: 10px 14px;
	line-height: 1.25rem;
	text-align: center;
}

.overview-list .list-table .th-rank .small{
	font-size: 15px;
}

.overview-list .list-table .th-rank .fw-normal{
	font-weight: normal !important;
}

.overview-list .list-table td{
	background-color: #ffffff;
	padding: 12px 14px;
}

.overview-list .list-table td .td-text{
	font-size: 15px;
}

.overview-list .list-table td .td-text .small{
	font-size: 13px;
}

.overview-list .list-table td hr{
    border: none;
	border-top: dotted 2px #cccccc;
}

.overview-list .list-table td.td-score .td-text{
	color: var(--text);
	font-weight: 800;
    font-size: 25px;
	text-align: right;
}

.overview-list .list-table td.td-score .td-text .small{
	font-weight: 900 !important;
    font-size: 15px;
}

.overview-list .num-list{    
	counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.overview-list .num-list li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-width: 0;
	margin-bottom: 0 !important;
}

.overview-list .num-list li + li{
    margin-top: 15px;
}

.overview-list .num-list li .num-list-num{
	font-family: 'Roboto Flex', Helvetica, Meiryo, Arial, sans-serif !important;
    font-weight: 900;
	line-height: 1;
	font-size: 22px;
    display: flex;
    align-items: center;
}

.overview-list .num-list.circle li .num-list-num{
	text-align: center;
	color: #ffffff;
	background-color: var(--bg_a);
	width: 30px;
	height: 30px;	
	border-radius: 50%;
    justify-content: center;
}

.overview-list .num-list.period li .num-list-num{
	text-align: left;
	color: var(--text_a);
	background-color: transparent;
	width: 20px;
    justify-content: flex-start;
}

.overview-list .num-list li .num-list-text{
	width: 100%;
	font-size: 15px;
	line-height: 23px;
    text-align: justify;
}

.overview-list .num-list.circle li .num-list-num + .num-list-text{
	width: calc(100% - 40px);
}

.overview-list .num-list.period li .num-list-num + .num-list-text{
	width: calc(100% - 30px);
}

.overview-list .num-list .mark-list li{
	margin-bottom: 0;
	justify-content: flex-start;
}

.overview-list .num-list .mark-list li + li{
	margin-top: 0px;
}

.overview-list .num-list + .list-text{
	margin-top: 18px;
}

.overview-list .list-text + .num-list{
	margin-top: 18px;
}

.overview-list .list-text + .list-text{
	margin-top: 10px;
}

.overview-list .list-button-group {
    display: flex;
    justify-content: center;
}

.overview-list .img-scroll{    
	width: calc(100% + 40px);
    margin-left: -20px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.overview-list .img-scroll .kisyu{
    width: 414px;
	height: auto;
	margin: 0px 20px;
}

.overview-list .button.kisyu-toggle{
	width: 100%;
	min-width: 305px;
	height: 60px;
	border-radius: 5px;
	background-color: var(--bg_b)
}

.overview-list .kisyu-wrapper + .list-button-column {
    margin-top: 20px;
}

.overview-list .button.kisyu-toggle .button-text{
	font-size: 20px;
	line-height: 20px;
}

.overview-list .button.kisyu-toggle .button-text::after{
    content: "expand_more";
	font-size: 28px;
    width: 24px;
    height: 24px;
	font-family: 'Material Icons' !important;
	display: flex;
    align-items: center;
    justify-content: center;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	color: #ffffff;
	font-weight: 900;
}

.overview-list .button.kisyu-toggle.active .button-text::after{
	transform: rotate(0.5turn);
}

.course-area{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.course-area + .course-area{
	margin-top: 40px;
}

.course-area + .list-text{
	margin-top: 20px;
}

.course-area .area-title{
	background-color: var(--bg_a);
	padding: 8px;
	width: 32px;
	margin: -2px 15px -2px 0;
}

.course-area .area-title.ar1{
	background-color: #7ab729;
}

.course-area .area-title.ar2{
	background-color: #f0914a;
}

.course-area .area-title.ar3{
	background-color: #e96368;
}

.course-area .area-title.ar4{
	background-color: #2cacca;
}

.course-area .area-title .name{
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: vertical-rl;
	margin-left: -2px;
}

.course-area .course-list{
	border: 1px solid #cccccc;
	border-width: 1px 0 1px -0;
	width: calc(100% - 47px);
}

.course-list{
	list-style: none;
	padding: 0;
}

.course-list li{
	font-size: 15px;
	height: auto;
	min-height: 48px;
	display: flex;
	text-align: left;
    justify-content: space-between;
    align-items: center;
	padding: 8px 0;
}

.course-list li + li{
	border-top: 1px solid #cccccc;
	margin-top: 0;
}

.course-list li .name-row{
	width: 100%;
    margin-right: 10px;
	display: flex;
}

.course-list li .name-row .second-list{
	padding: 0;
	width: 100%;
	margin: -6px 0;
}

.course-list li .name-row .second-list li{
	color: #666666;
	min-height: 32px;
	margin-bottom: 0;
	padding: 4px 0;
}

.course-list li .name-row .second-list li + li{
	border-top-style: dotted;
}

.course-list li .name{
	font-size: 15px;
	font-weight: 500;
	width: 100%;
	margin-right: 10px;
	text-align: justify;
	display: inline-block;
}

.course-list li .name a{
	text-decoration: underline;
}

.course-list li .name.no-wrap{
	white-space: nowrap;
	text-align: left;
}

.course-list + .course-text{
	font-size: 13px;
	line-height: 23px;
}

.course-list + .list-text{
	margin-top: 20px;
}

.lp-overview + .lp-follow{
}


/* 相互リンク */

.another-events .title{
	margin-bottom: 20px;
	width: 100%;
	display: flex;
}

.another-events .title .title-text{
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	font-weight: 900;
	color: #0071a7;
	margin: 0 auto;
	display: block;	
	width: 100%;
}

@media screen and (min-width: 376px) {
	.another-events .title .title-text{
		font-size: 4.7vw;
		line-height: 6.4vw;
	}
}

@media screen and (min-width: 426px) {
	.another-events .title .title-text{
		font-size: 20px;
		line-height: 26px;
		max-width: 305px;
	}
}

.another-events .title::before{
	content: "";
	border-left: 3px solid #0071a7;
	transform: translate(4.5vw, 0px) rotate(-20deg);
}

@media screen and (min-width: 426px) {
	.another-events .title::before{
		transform: translate(18px, 0px) rotate(-20deg);
	}
}

.another-events .title::after{
	content: "";
	border-left: 3px solid #0071a7;
	transform: translate(-4.5vw, 0px) rotate(20deg);
}

@media screen and (min-width: 426px) {
	.another-events .title::after{
		transform: translate(-18px, 0px) rotate(20deg);
	}
}

.another-events .banner{
	width: 100%;
}

.another-events .banner-link{
	line-height: 0;
	display: block;
}

.another-events .banner-img{
	width: 100%;
	max-width: 305px;
	height: auto;
	margin: 0 auto;
	display: block;
	border: 3px solid #0071a7;
}

/* フッター */

.lp-footer{
	color: #ffffff;
    padding: 40px 20px;
    background-color: var(--bg_a);
}

.footer-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo-img{
	width: 168px;
	height: auto;
}

.footer-button-group + .footer-organizer{
	margin-top: 40px;
}

.footer-button-group .footer-button-column + .footer-button-column{
	margin-top: 24px;
}

.footer-button-group .button{
	background-color: #ffffff;
}

.footer-button-group .button .button-text{
	color: var(--text_a);
}

.footer-organizer{
	margin-bottom: 20px;
}

.organizer-table{
	border-collapse: collapse;
}

.organizer-table th,
.organizer-table td{
	font-weight: bold;
	padding: 0;
}

.organizer-table th{
	font-size: 15px;
	padding-right: 20px;
}

.organizer-table td{
	padding-top: 10px;
}

.organizer-table tr:first-of-type td{
	padding-top: 0 !important;
}

.organizer-table td .name{
	font-size: 18px;
	font-weight: bold;
}

.organizer-table td .name .small{
	font-size: 15px;
	font-weight: 500;
}

#lp-pagetop{
    position: fixed;
    bottom: -50px;
    right: 20px;
	z-index: 10000;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    transition: all 0.25s;
}

#lp-pagetop.fixed{
	bottom: 20px;
}

#lp-pagetop::before{
	content: "keyboard_arrow_up";
	font-family: "material icons";
    font-size: 30px;
	line-height: 1;
	color: #ffffff;
	background-color: var(--bg_a);
	width: 40px;
	height: 40px;
	border-radius: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #ffffff;
}

/* =========================================
   2026 特典シミュレーション用CSS (Revised)
   ========================================= */

/* エリアカラー定義 */
:root {
    --sim-north: #7ab729;
	--sim-north-dark: #516b25;
    --sim-east: #f0914a;
    --sim-east-dark: #a65e26;
    --sim-central: #e96368;
    --sim-central-dark: #a14549;
    --sim-south: #2cacca;
    --sim-south-dark: #1e7a8f;
    --ov-line: #b5b5b5;
    --ov-bg: #f9f9f9;
}

.lp-simulation + .lp-about {
	padding-top: 0;
}

.simulation-title{
	width: 100%;
}

.simulation-title-img{
	width: 100%;
	margin: 0 auto;
	display: block;
}

.simulation-title + .sim-container{
	margin-top: 20px;
}

/* コンテナ全体 */
.sim-container {
}

/* --- 上部エリア（地図とリストの横並び） --- */
.sim-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* 地図 */
.sim-map-box {
    width: 48%;
    max-width: 200px;
    margin: 0 auto;
}
.nagano-svg {
    width: 100%;
    height: auto;
}
.area-path {
    fill: #999;
    stroke: #fff;
    stroke-width: 2px;
    cursor: pointer;
    transition: fill 0.3s;
}
.area-path:hover { opacity: 0.8; }
.map-label {
    fill: #fff;
    font-weight: 900;
    font-size: 25px;
    pointer-events: none;
    text-shadow: 0 0 3px rgba(0,0,0,0.3);
}

/* アクティブ時の地図色 */
.area-path.north.active { fill: var(--sim-north); }
.area-path.east.active { fill: var(--sim-east); }
.area-path.central.active { fill: var(--sim-central); }
.area-path.south.active { fill: var(--sim-south); }

/* 右側のリスト */
.sim-count-list {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sim-guide-text {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

/* エリアボタン（リスト） */
.area-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.area-btn {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 高さを揃える */
    margin-bottom: 8px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    height: 44px;
    box-sizing: border-box;
}

/* 左側：エリア名ラベル */
.area-btn .label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    color: #fff;
    font-weight: 900;
    font-size: 17px;
}

/* 右側：コース数 */
.area-btn .count {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 65%;
    background-color: #fff; /* 通常時は白 */
    color: #000;
    font-weight: bold;
    font-size: 14px;
	padding-right: 10px;
    transition: background-color 0.3s;
}

.area-btn .count .num {
    font-size: 22px;
    font-family: 'Roboto Flex', sans-serif;
    margin-right: 2px;
}


/* --- エリアごとの配色設定 --- */

/* 北信 (North) */
.area-btn.north {
    border-color: var(--sim-north);
}
.area-btn.north .label {
    background-color: var(--sim-north);
}
/* 選択時：北信 */
.area-btn.north.active .count {
    background-color: #fff89e; /* 薄い黄色 */
}

/* 東信 (East) */
.area-btn.east {
    border-color: var(--sim-east);
}
.area-btn.east .label {
    background-color: var(--sim-east);
}
/* 選択時：東信 */
.area-btn.east.active .count {
    background-color: #fff89e;
}

/* 中信 (Central) */
.area-btn.central {
    border-color: var(--sim-central);
}
.area-btn.central .label {
    background-color: var(--sim-central);
}
/* 選択時：中信 */
.area-btn.central.active .count {
    background-color: #fff89e;
}

/* 南信 (South) */
.area-btn.south {
    border-color: var(--sim-south);
}
.area-btn.south .label {
    background-color: var(--sim-south);
}
/* 選択時：南信 */
.area-btn.south.active .count {
    background-color: #fff89e;
}


/* --- 下部エリア（タブ） --- */

.sim-tabs {
    display: flex;
    padding: 0;
    margin: 0;
    border-bottom: none;
    gap: 1px; /* タブ間の隙間 */
	border-radius: 10px 10px 0 0; /* 上部のみ角丸 */
	overflow: hidden;
}

.tab-btn {
    flex: 1; /* 均等幅 */
    border: none;
    padding: 12px 0;
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    line-height: 1.2;
    background-color: #999; /* 非アクティブ時のグレー */
    border-radius: 0;
    transition: background-color 0.3s;
}

/* タブのアクティブ色 */
.tab-btn.north.active { background-color: var(--sim-north); }
.tab-btn.east.active { background-color: var(--sim-east); }
.tab-btn.central.active { background-color: var(--sim-central); }
.tab-btn.south.active { background-color: var(--sim-south); }

/* コンテンツ枠 */
.sim-contents-wrapper {
    background: #fff;
    border: 1px solid #ccc; /* 枠線 */
    border-top: none; /* タブとつなげる */
    padding: 20px 15px 10px;
	border-radius: 0 0 10px 10px;
}

.sim-content { display: none; }
.sim-content.active { display: block; }

.sim-head {
    text-align: center;
    margin-bottom: 10px;
}
.sim-head h3 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
    color: #333;
}
.sim-head .area-name {
    color: inherit; /* JSで色制御も可能だがCSSクラスで管理 */
}
.sim-head .price {
    font-size: 32px;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 800;
}


/* アクティブエリアごとのテキスト色変更 */
#sim-north .sim-head h3 { color: var(--sim-north-dark); }
#sim-east .sim-head h3 { color: var(--sim-east-dark); }
#sim-central .sim-head h3 { color: var(--sim-central-dark); }
#sim-south .sim-head h3 { color: var(--sim-south-dark); }


/* --- 特典リスト (Prize List) --- */

.prize-list {
    list-style: none;
    padding: 0;
	width: 100%;
}

.sim-contents-wrapper .prize-list{
    margin: 0 0 30px;
}

.prize-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid; /* 色はエリアごとに指定 */
    border-radius: 6px;
    padding: 0; /* 内側はflex配置で制御 */
    background: #fff;
    overflow: hidden; /* 角丸からはみ出さないように */
    min-height: 44px;
}

.overview-list .prize-list li{ /* イベント概要用 */
    border-radius: 0;
}

.prize-list li + li{ 
	margin-top: 16px;
}

.sim-contents-wrapper .prize-list li + li{ /* シミュレーション用 */
	margin-top: 26px;
	position: relative;
	overflow: inherit;
}

.sim-contents-wrapper .prize-list li + li:before{ /* シミュレーション用 */
	content: "add";
	font-family: "material icons";
    font-size: 20px;
	height: 20px;
	width: 20px;
    line-height: 1;
	color: var(--text);
	position: absolute;
	font-weight: bold;
	left: calc(50% - 10px);
	top: -24px;
	display: block;
}

.overview-list .prize-list li + li{ /* イベント概要用 */
    border-top-width: 0px;
    margin: 0 !important;
}

/* 左側タグ部分 */
.prize-list .tag {
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 102px; /* 固定幅 */
    height: 48px; /* 高さ確保 */
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0; /* 縮まないように */
	font-weight: bold;
    border-radius: 5px 0 0 5px;
}

.overview-list .prize-list .tag { /* イベント概要用 */
    color: var(--text);
    width: 92px;
	border-radius: 0;
}

.prize-list .tag .label .num {
    font-size: 20px;
}

.prize-list .tag .sp-label {
    font-size: 13px;
}

.overview-list .prize-list .tag .sp-label { /* イベント概要用 */
    font-size: 12px;
}

#part-2 .overview-list .prize-list .tag{ /* 「20コース達成賞」イベント概要用 */
    width: 120px;
}

/* 右側詳細部分 */
.prize-list .info-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    height: 100%;
}

.prize-list .detail {
	display: flex;
    justify-content: space-between;
    align-items: baseline;
	width: calc(100% - 102px);
	padding: 0 10px;
}

.overview-list .prize-list .detail { /* イベント概要用 */
	width: calc(100% - 92px);
}

#part-2 .overview-list .prize-list .detail { /* 「20コース達成賞」イベント概要用 */
	width: calc(100% - 120px);
}


.prize-list .persons {
    font-size: 15px;
    font-weight: 500;
}

.overview-list .prize-list .persons { /* イベント概要用 */
    font-size: 14px;
}

.prize-list .price {
    font-size: 15px;
    font-weight: 900;
}

.overview-list .prize-list .price { /* イベント概要用 */
    font-size: 14px;
    font-weight: bold;
}

.prize-list .price .num {
    font-size: 25px;
    font-weight: bold;
}

.overview-list .prize-list .price .num { /* イベント概要用 */
    font-size: 20px;
    font-weight: 600;
}

/* --- エリア別テーマカラー適用 (リスト) --- */

/* 北信テーマ */
.prize-list.north-theme li {
    border-color: var(--sim-north);
}
.prize-list.north-theme .tag {
    background-color: var(--sim-north);
}
/* 北信の完全制覇（一番下）のみ背景色を変える場合 */
.prize-list.north-theme li:last-child {
    background-color: #dfffc8; /* 薄い緑 */
}

/* 東信テーマ */
.prize-list.east-theme li {
    border-color: var(--sim-east);
}
.prize-list.east-theme .tag {
    background-color: var(--sim-east);
}
.prize-list.east-theme li:last-child {
    background-color: #ffebd6; /* 薄いオレンジ */
}

/* 中信テーマ */
.prize-list.central-theme li {
    border-color: var(--sim-central);
}
.prize-list.central-theme .tag {
    background-color: var(--sim-central);
}
.prize-list.central-theme li:last-child {
    background-color: #ffe6e7; /* 薄い赤 */
}

/* 南信テーマ */
.prize-list.south-theme li {
    border-color: var(--sim-south);
}
.prize-list.south-theme .tag {
    background-color: var(--sim-south);
}
.prize-list.south-theme li:last-child {
    background-color: #e0f8ff; /* 薄い青 */
}

/* イベント概要用 */
.overview-list .prize-list li,
.overview-list .prize-list.north-theme li,
.overview-list .prize-list.east-theme li,
.overview-list .prize-list.central-theme li,
.overview-list .prize-list.south-theme li{
    border-color: var(--ov-line);
}
.overview-list .prize-list .tag,
.overview-list .prize-list.north-theme .tag,
.overview-list .prize-list.east-theme .tag,
.overview-list .prize-list.central-theme .tag,
.overview-list .prize-list.south-theme .tag{
    background-color: var(--ov-bg);
    border-right: 1px solid var(--ov-line);
}


/* --- 対象◯コース タイトル (Target Course Title) --- */

.target-course-box {
    margin-top: 30px;
    border-top: 1px solid #ccc; /* 区切り線 */
    padding-top: 20px;
}

.target-course-box h4 {
    text-align: center;
    font-weight: 800;
    font-size: 20px;
}

/* エリアごとのタイトル色分け */
#sim-north .target-course-box h4 { color: var(--sim-north-dark); }
#sim-east .target-course-box h4 { color: var(--sim-east-dark); }
#sim-central .target-course-box h4 { color: var(--sim-central-dark); }
#sim-south .target-course-box h4 { color: var(--sim-south-dark); }

/* 数字部分の強調 */
.target-course-box h4 .num {
    font-size: 30px;
    font-family: 'Roboto Flex', sans-serif;
    margin: 0 2px;
}

.course-names {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
.course-names li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.friend-badge {
    display: inline-block;
    background-color: #06c755;
    color: #fff;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

/* ランキングボードの見方 */
.lp-operation{
	padding-top: 100px;
	background-color: #fffddb;
	border-top: 1px solid var(--bg_a);
}

.operation-title{
	width: 100%;
}

.operation-title-img{
	width: 100%;
	margin: 0 auto;
	display: block;
}


.operation-title + .operation-list{
	margin-top: 20px;
}

.lp-operation .section-title.ja-only .ja{
	color: var(--text_a);
}

.operation-list{
	counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.operation-list li{
	width: 100%;
	padding: 27px 23px;
	display: flex;
    justify-content: space-between;
    flex-direction: row;
	background-color: #ffffff;
	border-radius: 10px;
	border: 1px solid #ccc;
	position: relative;
}

.operation-list li + li{
	margin-top: 75px;
}

.operation-list li + li:before{
	content: "arrow_drop_down";
	font-family: "material icons";
    font-size: 75px;
	height: 75px;
	width: 75px;
    line-height: 1;
	color: var(--bg_a);
	position: absolute;
	left: calc(50% - 38px);
	top: -75px;
	display: block;
}

.operation-list li .title-wrapper{
	width: 100%;
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.operation-list li .list-num{
	text-align: center;
	color: #ffffff;
	background-color: var(--bg_a);
    font-weight: 900;
	width: 40px;
	height: 40px;
	border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
	line-height: 1;
	font-size: 25px;
	font-family: "Roboto Flex", sans-serif;
}

.operation-list li .list-title{
	width: calc(100% - 55px);
	font-size: 16px;
	line-height: 23px;
	margin-top: -2px;
	font-weight: bold;
}

.operation-list li .list-text{
	font-size: 15px;
	line-height: 25px;
	text-align: justify;
}

.operation-list li .list-text.small{
	font-size: 13px;
    line-height: 23px;
}

.operation-list li .list-button-column{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.operation-list li .list-button-column .button.follow{
	width: 100%;
	height: 54px;
}

.operation-list li .list-button-column .button.follow .button-text{
	font-size: 18px;
}

.operation-list li .list-photo{
	display: inline-block;
	position: relative;
}

.operation-list li .list-photo::before{
	content: "zoom_in";
    font-family: "material icons";
	display: flex;
	align-items: center;
    justify-content: center;
	position: absolute;
	bottom: -5px;
	right: -5px;
	color: #ffffff;
	font-size: 36px;
	padding: 0;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background-color: hsla(0,0%,0%,0.50);
	opacity: 0.5;
}

.operation-list li .list-photo-img{
	width: 100%;
	height: auto;
	display: inline-block;
	line-height: 1;
}

.operation-list li * + .list-text{
	margin-top: 8px;
}

.operation-list li * + .list-button-column{
	margin-top: 10px;
}

.operation-list li * + .list-photo{
	margin-top: 5px;
}

.operation-list + .operation-list{
	margin-top: 50px;
}

.operation-list li.first{
	background-color: #fffaaa;
	border-color: var(--bg_a);
}

.operation-list li .list-tag{
	text-align: center;
	color: #ffffff;
	background-color: var(--bg_a);
    font-weight: 900;
	width: 70px;
	height: 40px;
	border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 14px;
}

.operation-list li.first .list-title{
	width: calc(100% - 77px);
	letter-spacing: -0.05rem;
}

.operation-list li.first .list-wrapper{
	width: 100%;
}