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

/* root */

:root {
	--text: #333333;
	--text_a: #00441c;
	--bg: #f0f0f0;
	--bg_a: #00441c;
	--bg_b: #147700;
	--bg_c: #ECFFD2;
	--bg_d: #d1f2b1;
}


/* 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;
}


/* Slick */

.slick-prev, .slick-next{
	height: 52px;
    width: 52px;
	background-color: transparent !important;
	border-radius: 50%;
}

.slick-prev {
    left: 0vw;
    z-index: 1;
}

.slick-next {
    right: 0vw;
}

.slick-prev:before, .slick-next:before {
    font-family: "material icons";
    font-size: 40px;
    color: var(--text);
    opacity: 1;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slick-prev:hover:before, .slick-next:hover:before {
	opacity: 0.5;
}

.slick-prev:before {
    content: "chevron_left";
}

.slick-next:before {
    content: "chevron_right";
}

.slick-slide{
	cursor: grab;
}

.slick-slide:active{
	cursor: grabbing;
}

.slick-prev.slick-disabled:before, 
.slick-next.slick-disabled:before{
	opacity: 0;
}

.slick-dots{
    bottom: -35px;
}

.slick-dots li button:before{
	color: var(--text_a);
    font-size: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slick-dots li.slick-active button:before{
	color: var(--text_a);
}


/* 絵文字 */

.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", 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 18px;
	height: 44px;
	background-color: var(--bg_a);
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px;
}

.button:hover{
	cursor: pointer;
}

.button .button-text{
	font-size: 16px;
	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: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/index/button-link.png?241119_1);
    background-size: cover;
    margin-left: 8px;
}

.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.convex{
	height: 60px;
	width: 305px;
	background: linear-gradient(#009c3f, #002e13);
	border-radius: 30px;
	position: relative;
	box-shadow: 0px 1px 4px 0px hsl(0deg 0% 0% / 50%);
	display: flex;
	justify-content: space-around;
}

.button.convex::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	transform: translate3d(0,0,0);
    -webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
    transition: all 0.25s;
	box-shadow: 0px 0px 0px 0px hsl(0deg 0% 0% / 0%) inset;
}

.button.convex .button-icon{
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: linear-gradient(#48f08e, #006637);
	z-index: 3;
	display: flex;
    justify-content: center;
    align-items: center;
	margin: -2px 3px 0 -20px;
	box-shadow: 0px 1px 2px 0px hsl(0deg 0% 0% / 50%) inset;
    -webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
    transition: all 0.25s;
}
.button.convex .button-icon .material-symbols-outlined{
	font-size: 23px;
	color: #ffffff;
}

.button.convex .button-text{
	font-size: 17px;
	line-height: 21px;
	z-index: 2;
	font-weight: 900 !important;
	width: 100%;
}

.button.convex .button-icon + .button-text{
	width: calc(100% - 60px);
}


.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;
}

#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;
}

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

.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: 3px;
}

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

.button-line-small.white{    
	color: #000000;
	background-color: #ffffff;
	border: 1px solid #ffffff;
}

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

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

.lp-header{
	background-color: #263864;
	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-c{
	background-color: var(--bg_c);
}

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

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

.section-wrapper.transparent{
	opacity: 0.25;
}

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

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

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

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

.section-title .en{
	font-size: 36px;
	font-weight: normal;
	font-style: normal;
	color: var(--text_a);
}

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

.section-title .ja{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #4d4d4d;
}

.section-title.ja-only{
	background-color: var(--bg_b);
	padding: 40px 0;
}

.section-title.ja-only .ja{
	font-size: 24px;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: 0px;
}

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

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


/*トップ画像*/

.lp-mv{
	background-color: #5ebcee;
	padding: 40px 0 80px;
	position: relative;
    background-image: url(../images/index/mv-bg.png?241119_1);
    background-position: bottom;
	background-size: 425px 634px;
	background-repeat: no-repeat;
}

.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: 385px;
    margin: 0 auto;
    display: block;
}


/*ナビゲーション*/

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

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

.lp-nav{
	display: none;
	background-color: var(--bg_a);
    width: 100%;
    max-width: 425px;
    padding: 0;
}

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

.lp-nav-wrapper{
	width: 100%;
    margin: 0 auto;
}

.link-list{
	list-style: none;
	padding: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	height: 70px;
}

.link-list li{
	width: 33.33%;
	height: 100%;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
}

.link-list li + li{
	border-left: 1px solid #ffffff80;
}

.link-list .link-title{
	width: 100%;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #ffffff;
}

.campaign-title{
	width: 100%;
}

.campaign-title + .campaign-title{
	margin-top: 30px;
}

.campaign-title-img{
	width: 100%;
	max-width: 315px;
	margin: 0 auto;
	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;
}

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

.feature-button-group .button {
    width: 100%;
    max-width: 305px;
    height: 60px;
    font-size: 20px;
}

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

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

.events-logo{
}

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

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

.events-logo + .events-button-group{
	margin-top: 20px;
}

.events-button-group .button {
    width: 100%;
    max-width: 305px;
    height: 60px;
    font-size: 20px;
}

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

.events-title{
	text-align: center;
	font-size: 24px;
	line-height: 34px;
	font-weight: 900;
	color: var(--text);
}

.events-title + .events-slider{
	margin-top: 20px;
}

.events-slider .slider-slide{
	width: 285px;
	height: 542px;
	background-color: #ffffff;
    padding: 0px;
    margin: 4px 20px;
	border-radius: 10px;
	box-shadow: 1px 1px 4px 0px hsl(0deg 0% 0% / 50%);
}

.events-slider .slide-wrapper{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.events-slider .slide-link{
	line-height: 0;
}

.events-slider .slide-img{
	width: 100%;
}

.events-slider .slick-prev {
    left: var(--wd);
}

.events-slider .slick-next {
    right: var(--wd);
}

.events-slider .slick-dots li{
	margin: 0 2px;
}


.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_a);
}

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

.lp-follow .button{
	width: 305px;
	height: 60px;
}

.button.follow{
	background-color: #06c755;
}

.button.follow.convex{
	background-color: #037B35;
}

.button.follow.convex::after{
	background: linear-gradient(#7bde59, #00a32b);
	border: solid 1px #05AD4B;
}

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

.button.share{
	background-color: #ffffff;
}

.button.share.convex{
	background-color: #bbbbbb;
}

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

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

.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?241119_1);
}

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


.lp-follow.stampshot .follow-title{
	font-size: 18px;
	line-height: 26px;
	font-weight: bold;
	color: var(--text);
}

.lp-follow.stampshot .button{
	background-color: var(--text);
}


/* 参加方法 */

.lp-operation{
	background-color: var(--bg);
	padding: 60px 0 20px;
}

/*
.lp-operation.kuji{
	background-color: #E8EAF3;
}
*/

.operation-title{
	margin-bottom: 40px;
}

.operation-title .title-text{
	color: var(--text);
	font-size: 24px;
	font-weight: 900;
	text-align: center;
}

.operation-list{
	list-style: none;
	padding: inherit;
}

.operation-list li{
	width: 100%;
	padding: 25px 25px 30px;
	margin-bottom: 30px;
	display: flex;
    justify-content: space-between;
    flex-direction: column;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 1px 1px 10px 0px hsl(0deg 0% 0% / 25%);
}

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

.operation-list-top{
	display: flex;
    margin-bottom: 15px;
}

.operation-list-top .top-number{
	color: var(--bg_a);
	font-family: 'Urbanist', 'Roboto', Helvetica, Meiryo, Arial, sans-serif !important;
    font-size: 40px;
    line-height: 40px;
	font-weight: 900;
    margin-right: 20px;
}

.operation-list-top .top-text{
	font-size: 17px;
	line-height: 24px;
}

.operation-list-top .top-text b{
}

.operation-list-top .top-text .small{
	font-size: 14px;
	font-weight: normal;
}

.operation-list-bottom{
    margin: auto 0;
}

.operation-list-bottom .bottom-text{
	font-size: 13px;
	line-height: 19px;
	text-align: justify;
}

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

.operation-list-bottom .bottom-img + .list-block-group{
	margin-top: 20px;
}

.operation-list-bottom .bottom-text + .button{
	margin-top: 15px;
	background-color: var(--bg_a);
}

.operation-list-bottom .list-block{
	border: 1px solid var(--bg_b);
	border-radius: 1px;
    overflow: auto;
	margin-bottom: 20px;
}

.operation-list-bottom .list-block:last-child{
	margin-bottom: 0;
}

.operation-list-bottom .list-block .block-top{
	background-color: var(--bg_b);
	color: #ffffff;
	padding: 12px 16px;
	border-bottom: 1px solid var(--bg_b);
}

.operation-list-bottom .list-block .block-bottom{
	background-color: #ffffff;
}

.operation-list-bottom .list-block .list-subtitle{
    font-size: 17px;
    line-height: 23px;
    font-weight: bold;
    margin-bottom: 4px;
}

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

.operation-list-bottom .list-button-group .button.follow{
	width: 285px;
	height: 60px;
}

.operation-list-bottom .bottom-img + .list-button-group{
	margin-top: 14px;
}

.operation-list-bottom .list-button-group + .bottom-text{
	max-width: 285px;
	margin: 14px auto 0;
}

.operation-list-bottom .list-button-wrapper .button{
    height: 32px;
    padding: 10px 15px;
}

.operation-list-bottom .list-button-wrapper .button .button-text{
	font-size: 14px;
	line-height: 15px;
}


/* イベント概要 */

.lp-overview{
}

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

.overview-list li{
	margin-bottom: 30px;
}

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

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

.lp-campaign .overview-list .list-top{
	padding: 0;
}

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

.lp-campaign .overview-list .list-title{
	border-bottom: 1px solid var(--text_a);
	padding-bottom: 8px;
}

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

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

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

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

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

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

.list-block .block-bottom .block-price{
	width: 100%;
	line-height: 0;
}

.list-block .block-bottom .block-price-img{
	width: 100%;
	margin: 0 auto;
	display: block;
}

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

.course-list li{
	font-size: 15px;
	height: 42px;
	display: flex;
	text-align: left;
	padding: 0 0 10px;
	border-bottom: 1px solid #d6d9de;
    justify-content: space-between;
    align-items: center;
	margin: 0 0 10px;
}

.course-list li .name{
	margin-right: 10px;
}

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

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

/* フッター */

.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: 180px;
	height: auto;
}

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

.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;
}