@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
	--primary-color: #0367B3;
	--orange-color: #E48F17;
	--dark-orange-color: #EE7440;
	--green-color: #1D9638;
	--pink-color: #F38D8F;
	--gray-color: #666565;
	--ocean-color: #4EA1DF;
	--purple-color: #8E72CF;
	--light-green-color: #5FBAAA;
	--red-color: #D00000;
	--title-color: #323232;
	--nav-item-color: #3C3C3C;
	--default-text-color: #000;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
	display: block;
}

ul,
li,
ol,
dl {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	display: inline-block;
	margin: 0;
	padding: 0;
	color: var(--default-text-color);
	text-decoration: none;
	transition: all .3s;
}
@media (hover: hover) and (pointer: fine) {
	a:hover {
		text-decoration: none;
		opacity: .7;
	}
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 0.1rem dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-wrap: break-word; /* Cho phép ngắt dòng giữa các từ nếu cần */
    word-break: break-word;
	box-sizing: border-box;
}

video {
	filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print,screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}
/* PC(768px以上)のみ非表示 */
@media print,screen and (min-width: 767.01px) {
	.pc-off {
		display: none !important;
	}
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}
@media screen and (min-width: 767.01px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

html {
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;

	@media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1919 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	@media screen and (min-width: 767.01px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	}

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow: auto;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		pointer-events: none;
	}
}


/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}
	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}

	#header {
		position: absolute;
	}
}
@page {
	size: A4;
	margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
	--sb-track-color: #ddd;
	--sb-thumb-color: #000;
	--sb-size: 0;
	/* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
	overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
	width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
	background: var(--sb-track-color);
	border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
	background: var(--sb-thumb-color);
	border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
	overflow: clip;
}

.menu-active {
	overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	width: 100%;
	background-color: #fff;

	@media screen and (max-width: 767px) {
	}

	.donation-box {
				& a {
					display: flex;
					justify-content: space-between;
					padding: 2rem 1.7rem;
					padding-right: 1rem;
					font-size: 1.6rem;
					font-weight: bold;
					color: #fff;
					background-image: linear-gradient( to bottom, #5FDF95, #009F85);;
					border: 2px solid #00866F;
					border-radius: 5px;
					width: 36rem;
					line-height: 1;
				}

				&.sp-ver {

					@media screen and (max-width: 767px) {
						display: flex;
						justify-content: center;
						margin-top: 4rem;
						padding-bottom: 4rem;
	
						& a {
							width: 90%;
						}
					}
				}


			}

	.header-top-box {
		display: flex;
		align-items: center;
		gap: 10rem;
		padding: 2rem;
		font-size: 1.6rem;
		font-weight: 500;

		@media screen and (max-width: 1081px) {
		  gap: 2rem;
		}

		@media screen and (max-width: 767px) {
			align-items: stretch;
			justify-content: flex-start;
			gap: 1rem;
			padding: 2rem 1rem;
			padding-bottom: 0;
		}
		
		.top-left-box{
			flex: 0 0 525.5px;

			@media screen and (max-width: 1721px) {
				flex: 0 0 30%;
			  
			}

			@media screen and (max-width: 767px) {
			  flex: 0 0 auto;
			}

			.logomark {
				& img {
					width: 100%;
				}

				@media screen and (max-width: 767px) {
				  width: 25rem;
				  height: 4.5rem;
				}
			}
		}

		.top-center-box {
			flex: 1;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			gap: 5rem;

			@media screen and (max-width: 767px) {
			  display: none;
			}


			
			.lang-switch-box{
				display: flex;
				gap: 4px;
			
				.lang-link{
					width: 7rem;
					height: 3.5rem;
					display: flex;
					justify-content: center;
					align-items: center;
					border-radius: 3px;
					color: #fff;
					background-color: #9D9D9D;

					&.active{
						background-color: var(--primary-color);
					
					}
				}
			}
			
			.nav{
	
				@media screen and (max-width: 767px) {
				  display: none;
				}
			
				.main-list{
					display: flex;
					gap: 5rem;
					align-items: center;
				
				}
				.list-item{
				
					.item-link{
					
					}
				}
			}

		}

		.lang-switch-box-sp {
				width: 4rem;
				height: 3rem;
				
				& a {
					color: var(--primary-color);
					border: 1px solid currentColor;
					border-radius: 3px;
					width: 100%;
					height: 100%;
					display: flex;
					justify-content: center;
					align-items: center;
					background-color: #fff;
					font-weight: 500;
					font-size: 1.4rem;

				}
			}

		.top-right-box {
			

			.menu-btn{
			
			}

			.search-box{
				position: relative;

				@media screen and (max-width: 767px) {
				  display: none;
				}

				& input {
					width: 27rem;
					height: 4.4rem;
					border: 2px solid var(--primary-color);
					border-radius: 20px;
					padding: 1.5rem;
					padding-right: 3.5rem;
					color: var(--primary-color);
					outline: none;
					
					&::placeholder {
						color: var(--primary-color);
						font-weight: 500;
					}

					@media screen and (max-width: 1080px) {
					  width: 20rem;
					  font-size: 1.4rem;
					}
				}

				& label {
					content: '';
					position: absolute;
					top: 50%;
					right: 1.5rem;
					width: 1.4rem;
					height: 1.4rem;
					transform: translateY(-50%);
					cursor: pointer;
					transition: all .3s;

					&:hover {
						opacity: .7;
					}
				}
			}
		}
	}

	.sub-nav {
		@media screen and (max-width: 767px) {
				width: 100vw;
				height: calc(100vh - 6rem);
				overflow-y: auto;
				overflow-x: hidden;
				position: absolute;
				top: 6rem;
				left: 100%;
				transition: all .2s;
				background-color: #fff;
				-webkit-overflow-scrolling: touch;
				padding-bottom: 4rem;
		}
		
		.sub-nav-list{
			display: flex;
			height: 8.5rem;
			/* gap: 2px; */
			position: relative;


			@media screen and (max-width: 767px) {
			  flex-direction: column;
			  position: static;
			}
		
			.nav-item{
				flex: 1;
				background-color: var(--primary-color);
				display: flex;
				justify-content: center;
				align-items: center;
				border-bottom: 2px solid transparent;

				&:not(:nth-child(3)){
					border-right: 2px solid #fff;

					@media screen and (max-width: 767px) {
					  border-right: unset;
					}
				}

				@media screen and (max-width: 767px) {
				  position: relative;
				  flex-direction: column;
				  border-bottom: none;
				  
				}
				
				&.active {
					background-color: #fff;
					border-bottom: 2px solid var(--primary-color);

					@media screen and (max-width: 767px) {
					  border-bottom: unset !important;
					}
					
					.nav-icon {
						content: url(../img/icon_nav_arrow_blue.svg);
					}
					
					.nav-link .nav-text {
						color: var(--primary-color);
					}
				}
				
				.nav-link{
					display: flex;
					justify-content: center;
					align-items: center;
					gap: 8px;
					width: 100%;
					height: 100%;
					cursor: pointer;
					transition: all 0.3s ease;

					@media screen and (min-width: 768px) {
						&:hover {
							opacity: .7;
						}
					}

					&.nav-active {
						@media screen and (max-width: 767px) {
							background-color: var(--primary-color) !important;
							border-bottom-color: var(--primary-color) !important;
							
							.nav-text {
								color: #fff !important;
							}
							
							.nav-icon {
								content: url(../img/icon_nav_arrow_white.svg) !important;
							}
						}
					}
					
					@media screen and (max-width: 767px) {
						padding: 3rem 0;
						background-color: #fff;
						border-bottom: 2px solid #ACACAC;
						box-sizing: border-box;
						min-height: 6rem;
					}

				
					.nav-text{
						font-size: 1.8rem;
						font-weight: bold;
						color: #fff;
						transition: color 0.3s ease;

						@media screen and (max-width: 767px) {
							color: var(--primary-color);
						}
					}
					.nav-icon{
						transition: all 0.3s ease;

						@media screen and (max-width: 767px) {
						  content: url(../img/icon_nav_arrow_blue.svg);
						}
					
					}
				}

				.sub-nav-content{
					border-bottom-left-radius: 7rem;
					border-bottom-right-radius: 7rem;
					z-index: 10;
					position: absolute;
					top: 100%;
					left: 0;
					width: 100%;
					background-color: #fff;
					z-index: 10;

					@media screen and (max-width: 767px) {
						border-bottom-left-radius: 0;
						border-bottom-right-radius: 0;
						box-shadow: unset;
						position: static;
					}


					.inner{
						padding: 9.5rem 0;

						@media screen and (max-width: 767px) {
						  padding: 3rem 0;
						  padding-bottom: 0;
						}
					}
					
					.nav-content-wrapper {
						display: flex;
						gap: 15rem;

						@media screen and (max-width: 767px) {
						flex-direction: column;
						gap: 3rem;
						}
					}

					.nav-content-top-title{
						font-size: 2rem;
						font-weight: bold;
						margin-bottom: 6rem;

						@media screen and (max-width: 767px) {
						  font-size: 1.6rem;
						  margin-bottom: 2rem;
						  line-height: 1.4;
						}

						/* Xuống dòng tại dấu （ chỉ trên SP */
						& a.jees-rsys-link {
							@media screen and (max-width: 767px) {
								display: inline-block;
								word-break: keep-all;
							}
						}

						 & a {
        position: relative !important;

        &[target="_blank"]::after {
            position: absolute !important;
            content: '' !important;
            top: 0 !important;
            right: -3rem !important;
            width: 2.5rem !important;
            height: 2.5rem !important;
            background-size: contain !important;
            background-repeat: no-repeat !important;
            background-image: url(../../common/img/icon_external_arrow.svg) !important;

			@media screen and (max-width: 767px) {
			  top: -5px !important;
			}
        }
    }
						
					}
					.nav-main-content-box{
						display: flex;
						gap: 10rem;
						flex-wrap: nowrap;

						@media screen and (max-width: 767px) {
						  flex-direction: column;
						  gap: 0;
						}
					
						.content-col{

							@media screen and (max-width: 767px) {
							  padding: 1.6rem 0;
							  border-bottom: 2px solid #cacaca;
							}
						
							.sub-title {
								font-size: 2rem;
								font-weight: bold;
								margin-bottom: 1.6rem;
								line-height: 1.5;


								@media screen and (max-width: 767px) {
								  font-size: 1.6rem;
								  position: relative;
								  margin-bottom: 0;

									&.has-sub-content&::before, &::after {
										position: absolute;
										content: '';
										background: var(--primary-color);
									}

									&.has-sub-content::before {
										width: 1.2rem;
										height: 3px;
										top: 50%;
										right: 0;
										transform: translateY(-50%);
									}

									&.has-sub-content.gakkensai-navi-title::before {
										top: 25%;
									}

									&.has-sub-content::after {
										width: 3px;
										height: 1.2rem;
										top: 7px;
										right: 5px;
										transition: all 0.3s ease;
										transform-origin: center;
									}

									&.no-sub-content {
										@media screen and (max-width: 767px) {
										  padding-bottom: 1.6rem;
										  margin-bottom: 1.6rem;
										  border-bottom: 2px solid #cacaca;
										  
										  a {
										  	text-decoration: underline;
										  	color: var(--nav-item-color);

											@media screen and (max-width: 767px) {
											  text-decoration: none;
											}
										  }
										}
									}

									& a {
										@media screen and (max-width: 767px) {
										  /* text-decoration: underline; */
										  /* position: relative; */
										  /* padding-right: 1rem; */

										  /* &::after {
											content: '';
											position: absolute;
											top: 50%;
											right: 0;
											width: 1.5rem;
											height: 1.5rem;
											transform: translate(100%, -50%);
											background-size: contain;
											background-repeat: no-repeat;
											background-image: url(../../common/img/icon_nav_arrow_blue.svg);
										  } */
										}
									}

								}

								&.active {
									&::after {
										transform: rotate(90deg);
										opacity: 0;
									}
								}
							
							}
							.sub-content{
								padding: 5px 0;
								padding-left: 1.2rem;
								position: relative;
								display: flex;
								flex-direction: column;
								gap: 1.6rem;

								@media screen and (max-width: 767px) {
								  margin: 1.6rem 0;
								}

								&::after {
									content: '';
									position: absolute;
									top: 0;
									left: 0;
									width: 5px;
									height: 100%;
									background: var(--primary-color);
									border-radius: 5px;
									transform: translateY(5px);
								}
							
								.sub-content-link{
									font-size: 1.8rem;
									font-weight: 500;
									color: var(--nav-item-color);
									text-decoration: underline;
									line-height: 1.5;
									text-wrap: balance;
									word-break: break-word;
									position: relative;
									align-self: flex-start;

                                &[target="_blank"]::before {
                                    position: absolute;
                                    content: '';
                                    top: 0;
                                    right: -3rem;
                                    width: 2.5rem;
                                    height: 2.5rem;
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    background-image: url(../../common/img/icon_external_arrow.svg);

                                    @media screen and (max-width: 767px) {
                                      width: 2rem;
                                      height: 2rem;
                                      top: 10%;
                                      right: -2rem;
                                    }

                                }

									@media screen and (max-width: 767px) {
									  font-size: 1.4rem;
									  font-weight: 500;
									}
								
								}
							}
						}

						&.nav-main-content-1 {
							display: grid;
							grid-template-columns: repeat(4, 1fr);
							grid-column-gap: 1.7rem;
							grid-row-gap: 5rem;

							@media screen and (max-width: 767px) {
							grid-template-columns: 1fr;
							grid-row-gap: 0;
							}
						}
					}

				}

				&:nth-child(3) {

					.sub-nav-content {

						.inner {
							@media screen and (max-width: 767px) {
								/* padding-top: 0; */
							}
						}
					}
				}

				
			}
		}

		
	}

	/* メニューボタン */
	.menu-btn {
		position: absolute;
		display: none;
		top: 1rem;
		right: 1rem;
		z-index: 9999;
		background-color: var(--primary-color);
		border-radius: 50%;
		width: 4rem;
		height: 4rem;

		@media screen and (max-width: 767px) {
			display: block;
		}

		&:after {
			/* content: "MENU"; */
			content: "";
			position: absolute;
			left: 50%;
			bottom: 1.1rem;
			color: #fff;
			font-weight: 500;
			letter-spacing: 0.05em;
			font-size: 1.1rem;
			transform: translateX(-50%);
			white-space: nowrap;
		}

		& a {
			position: relative;
			width: 10rem;
			height: 10rem;
			vertical-align: top;
			transition: ease 0.25s all;

			@media screen and (max-width: 767px) {
				width: 4rem;
				height: 4rem;
			}

			& span {
				position: absolute;
				left: 54%;
				top: 50%;
				display: block;
				margin-left: -1.8rem;
				width: 3.4rem;
				height: 0.2rem;
				background: #fff;
				border-radius: 0.3rem;

				@media screen and (max-width: 767px) {
					margin-left: -1.4rem;
					width: 2.4rem;
					height: 0.2rem;
				}

				&:before,
				&:after {
					content: "";
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: #fff;
					border-radius: 0.3rem;
					transition: ease 0.25s all;
				}

				&:before {
					margin-top: -1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:before {
						margin-top: -0.7rem;
					}
				}
				&:after {
					margin-top: 1.1rem;
				}
				@media screen and (max-width: 767px) {
					&:after {
						margin-top: 0.7rem;
					}
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
	}
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			& a {
				& span {
					background-color: transparent;
					&:before {
						margin-top: 0;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					&:after {
						margin-top: 0;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.sub-nav {
				left: 0;
				pointer-events: auto;
			}

		}
	}
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
	padding: 2.4rem 0;
	margin-bottom: 10rem;
	
	@media screen and (max-width: 767px) {
	  margin-bottom: 7rem;
	}

	.inner {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

	@media screen and (max-width: 767px) {
		display: none;
	}
	& ol {
		display: flex;
		flex-wrap: wrap;
		line-height: 1.5;
	}
	& li {
		position: relative;
		margin-right: 3.4rem;
		font-weight: 500;
		font-size: 1.4rem;
		letter-spacing: 0.1em;
		
		&:last-child{
			margin-right: 0;
			&:after{
				display: none;
			}
		}

		&:after {
			content: "";
			position: absolute;
			right: -3rem;
			top: 50%;
			transform: translateY(-40%);
			z-index: 0;
			display: block;
			width: 2rem;
			height: 1rem;
			background-image: url(../img/icon_elip_button_arrow_blue.svg);
			background-size: contain;
			background-repeat: no-repeat;

			&:last-child:after {
				display: none;
			}
		}
	}
	& a {
		text-decoration: none;
		color: var(--primary-color);

		@media (hover: hover) and (pointer: fine) {
			&:hover {
				text-decoration: none;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
	margin-top: 27rem;

	@media screen and (max-width: 1441px) {
		margin-top: 26rem;
	  
	}

	@media screen and (max-width: 767px) {
	  margin-top: 0;
	  padding-top: 10rem; 
	  padding-bottom: 8rem;
	}

	@media screen and (max-width: 401px) {
	  padding-bottom: 8rem;
	}
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
#footer {
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 3rem);
	}
}

.w960 {
	max-width: 96rem;
}
.w1080 {
	max-width: 108rem;
}
.w1200 {
	max-width: 120rem;
}
.w1440 {
	max-width: 144rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
	text-align: right;
}
.tal {
	text-align: left;
}
.tac {
	text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
	text-align: center;
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;

	& p {
		margin-bottom: 2rem;
		&:last-child {
			margin-bottom: 0;
		}
	}
}
/* table-scroll */
@media screen and (max-width: 767px) {
	.table-scroll {
		position: relative;
		padding-bottom: 2rem;
		overflow-x: scroll;
		&:after {
			content: "←";
			position: absolute;
			right: 0;
			bottom: 0;
			z-index: 1;
			margin-left: -1.5rem;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			width: 3rem;
			height: 3rem;
			border-radius: 1.5rem;
			border: 0.1rem solid #000;
			animation: arrowtable 2s infinite forwards;
		}
		.common-table {
			width: 80rem;
		}
	}
}
@keyframes arrowtable {
	50% {
		opacity: 1;
		right: 0;
	}
	100% {
		opacity: 0;
		right: 100%;
	}
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
	margin-bottom: 0rem !important;
}
.mb10 {
	margin-bottom: 1rem !important;
}
.mb20 {
	margin-bottom: 2rem !important;
}
.mb30 {
	margin-bottom: 3rem !important;
}
.mb40 {
	margin-bottom: 4rem !important;
}
.mb50 {
	margin-bottom: 5rem !important;
}
.mb60 {
	margin-bottom: 6rem !important;
}
.mb70 {
	margin-bottom: 7rem !important;
}
.mb80 {
	margin-bottom: 8rem !important;
}
.mb90 {
	margin-bottom: 9rem !important;
}
.mb100 {
	margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
	.mb10 {
		margin-bottom: 0.5rem !important;
	}
	.mb20 {
		margin-bottom: 1rem !important;
	}
	.mb30 {
		margin-bottom: 1.5rem !important;
	}
	.mb40 {
		margin-bottom: 2rem !important;
	}
	.mb50 {
		margin-bottom: 2.5rem !important;
	}
	.mb60 {
		margin-bottom: 3rem !important;
	}
	.mb70 {
		margin-bottom: 3.5rem !important;
	}
	.mb80 {
		margin-bottom: 4rem !important;
	}
	.mb90 {
		margin-bottom: 4.5rem !important;
	}
	.mb100 {
		margin-bottom: 5rem !important;
	}
}

.mt0 {
	margin-top: 0rem !important;
}
.mt10 {
	margin-top: 1rem !important;
}
.mt20 {
	margin-top: 2rem !important;
}
.mt30 {
	margin-top: 3rem !important;
}
.mt40 {
	margin-top: 4rem !important;
}
.mt50 {
	margin-top: 5rem !important;
}
.mt60 {
	margin-top: 6rem !important;
}
.mt70 {
	margin-top: 7rem !important;
}
.mt80 {
	margin-top: 8rem !important;
}
.mt90 {
	margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
	.mt10 {
		margin-top: 0.5rem !important;
	}
	.mt20 {
		margin-top: 1rem !important;
	}
	.mt30 {
		margin-top: 1.5rem !important;
	}
	.mt40 {
		margin-top: 2rem !important;
	}
	.mt50 {
		margin-top: 2.5rem !important;
	}
	.mt60 {
		margin-top: 3rem !important;
	}
	.mt70 {
		margin-top: 3.5rem !important;
	}
	.mt80 {
		margin-top: 4rem !important;
	}
	.mt90 {
		margin-top: 4.5rem !important;
	}
	.mt100 {
		margin-top: 5rem !important;
	}
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb10 {
	padding-bottom: 1rem !important;
}
.pb20 {
	padding-bottom: 2rem !important;
}
.pb30 {
	padding-bottom: 3rem !important;
}
.pb40 {
	padding-bottom: 4rem !important;
}
.pb50 {
	padding-bottom: 5rem !important;
}
.pb60 {
	padding-bottom: 6rem !important;
}
.pb70 {
	padding-bottom: 7rem !important;
}
.pb80 {
	padding-bottom: 8rem !important;
}
.pb90 {
	padding-bottom: 9rem !important;
}
.pb100 {
	padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pb10 {
		padding-bottom: 0.5rem !important;
	}
	.pb20 {
		padding-bottom: 1rem !important;
	}
	.pb30 {
		padding-bottom: 1.5rem !important;
	}
	.pb40 {
		padding-bottom: 2rem !important;
	}
	.pb50 {
		padding-bottom: 2.5rem !important;
	}
	.pb60 {
		padding-bottom: 3rem !important;
	}
	.pb70 {
		padding-bottom: 3.5rem !important;
	}
	.pb80 {
		padding-bottom: 4rem !important;
	}
	.pb90 {
		padding-bottom: 4.5rem !important;
	}
	.pb100 {
		padding-bottom: 5rem !important;
	}
}

.pt0 {
	padding-top: 0 !important;
}
.pt10 {
	padding-top: 1rem !important;
}
.pt20 {
	padding-top: 2rem !important;
}
.pt30 {
	padding-top: 3rem !important;
}
.pt40 {
	padding-top: 4rem !important;
}
.pt50 {
	padding-top: 5rem !important;
}
.pt60 {
	padding-top: 6rem !important;
}
.pt70 {
	padding-top: 7rem !important;
}
.pt80 {
	padding-top: 8rem !important;
}
.pt90 {
	padding-top: 9rem !important;
}
.pt100 {
	padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
	.pt10 {
		padding-top: 0.5rem !important;
	}
	.pt20 {
		padding-top: 1rem !important;
	}
	.pt30 {
		padding-top: 1.5rem !important;
	}
	.pt40 {
		padding-top: 2rem !important;
	}
	.pt50 {
		padding-top: 2.5rem !important;
	}
	.pt60 {
		padding-top: 3rem !important;
	}
	.pt70 {
		padding-top: 3.5rem !important;
	}
	.pt80 {
		padding-top: 4rem !important;
	}
	.pt90 {
		padding-top: 4.5rem !important;
	}
	.pt100 {
		padding-top: 5rem !important;
	}
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 7rem;

	@media screen and (max-width: 767px) {
		margin-top: 3.5rem;
	}

	.back {
		margin: 0 8.3rem;
		@media screen and (max-width: 767px) {
			margin: 0 1rem;
		}
	}

	.prev,
	.next {
		width: 14rem;
		@media screen and (max-width: 767px) {
			width: 4.6rem;
		}
		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			width: 100%;
			height: 4.6rem;
			font-weight: 500;
			text-decoration: underline;
			letter-spacing: 0.08rem;
			color: #000;
			box-sizing: border-box;

			@media screen and (max-width: 767px) {
				padding: 0;
				font-size: 0;
				color: transparent;
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					text-decoration: none;
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -2.3rem;
				display: block;
				width: 4.6rem;
				height: 4.6rem;
				border-radius: 2.3rem;
				background-color: #2987d9;
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					background-color: #2987d9;
				}
			}
			@media screen and (max-width: 767px) {
				&:after {
					width: 4.8rem;
					height: 4.8rem;
					margin-top: -2.4rem;
					border-radius: 0;
				}
			}

			&:before {
				content: "";
				position: absolute;
				top: 50%;
				z-index: 1;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.2rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		& a {
			padding-left: 7.3rem;
			&:after {
				left: 0;
			}
			&:before {
				left: 2.2rem;
				border-left: 0.2rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:before {
					border-left-color: var(--primary-color);
				}
			}
		}
	}
	.next {
		& a {
			padding-right: 7.3rem;
			&:after {
				right: 0;
			}
			&:before {
				right: 2.2rem;
				border-right: 0.2rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
		}
	}
}

/* navigation pagination */
.navigation.pagination {
	margin: 7rem 0 0;

	@media screen and (max-width: 767px) {
		margin: 3rem 0 0;
	}

	.disable {
		display: none;
	}

	.nav-links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
    	gap: 1rem;

		@media screen and (max-width: 767px) {
			position: relative;
			padding-bottom: 5rem;
		}
	}

	.pager {
		 width: 56px;
            height: 56px;
            border-radius: 50%;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            font-size: 2rem;
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;

            &.current {
                background-color: var(--primary-color);
                color: #fff;
            }
		}
	}

	.next,
	.prev {

		@media screen and (max-width: 767px) {
			/*position: absolute;*/
			/*bottom: 0;*/
			/*width: 48%;*/
			/*height: 4rem;*/
		}

		& a {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			width: 56px;
			height: 56px;
			border-radius: 50%;
			font-size: 0;
			font-family: "Roboto", sans-serif;
			font-weight: bold;
			letter-spacing: 0.08em;
			text-decoration: none;
			color: #000;
			background: var(--primary-color);
			/* border: 0.1rem solid var(--primary-color); */
			transition: ease 0.25s background, ease 0.25s color;

			@media screen and (max-width: 767px) {
				/* width: 2.8rem;
				height: 2.8rem; */
			}

			@media (hover: hover) and (pointer: fine) {
				&:hover {
					color: #fff;
					background-color: #fff;
					border: 1px solid var(--primary-color);

					&:after {
						border-top-color: var(--primary-color);
					}
				}
			}

			&:after {
				content: "";
				position: absolute;
				top: 50%;
				margin-top: -0.4rem;
				display: block;
				width: 0.8rem;
				height: 0.8rem;
				border-top: 0.1rem solid #fff;
				box-sizing: border-box;
				transition: ease 0.25s border;
			}
		}
	}

	.prev {
		@media screen and (min-width: 767.01px) {
			margin-right: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-right: 1rem;
		}
		& a {
			&:after {
				left: 50%;
				margin-left: -0.2rem;
				border-left: 0.1rem solid #fff;
				-webkit-transform: rotate(-45deg);
				transform: rotate(-45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-left-color: var(--primary-color);
				}
			}
		}
	}
	.next {
		@media screen and (min-width: 767.01px) {
			margin-left: 0.8rem;
		}
		@media screen and (max-width: 767px) {
			margin-left: 1rem;
			/*right: 0;*/
		}
		& a {
			&:after {
				right: 50%;
				margin-right: -0.2rem;
				border-right: 0.1rem solid #fff;
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			@media (hover: hover) and (pointer: fine) {
				&:hover:after {
					border-right-color: var(--primary-color);
				}
			}
		}
	}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
	padding: 100px 30px;
	line-height: 1.8;
	text-align: center;
}

/* --------------------------------------------------------------- */
/* 共通部分 */
/* --------------------------------------------------------------- */

/* Buttons */
.common-elip-button:link,
.common-elip-button:visited {
	width: 23rem;
	height: 5rem;
	padding-left: 2rem;
	padding-right: 1rem;
	border-radius: 30px;
	font-size: 1.4rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid currentColor;
	transition: all .3s;
	cursor: pointer;

	@media screen and (max-width: 767px) {
	  width: 18.5rem;
	  height: 4rem;
	  font-size: 1.2rem;
	  gap: 1rem;

	  .btn-text {
		flex: 1;
		text-align: center;
	  }
	}
}

.common-elip-button:hover,
.common-elip-button:focus {
	opacity: .7;

}

.common-elip-button.btn-primary {
	background-color: transparent;
	color: var(--primary-color);
}

.common-elip-button.btn-white {
	background-color: #fff;
	color: var(--primary-color);
	border: 1px solid transparent;
}

.common-elip-button.btn-red {
	background-color: var(--red-color);
	color: #fff;
}

.common-elip-button.btn-blue {
	background-color: var(--primary-color);
	color: #fff;
}

.common-elip-button.btn-orange {
	color: var(--dark-orange-color);
	background-color: #fff;
	border: 1px solid #fff;
}

/* Title */
.common-title-box {
	margin-bottom: 6rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;

	@media screen and (max-width: 767px) {
	  gap: 1rem;
	  margin-bottom: 4rem;
	}

	.en-title {
		font-family: "Roboto", sans-serif;
		color: var(--primary-color);
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
		font-size: 2.2rem;

		@media screen and (max-width: 767px) {
		  font-size: 1.6rem;
		}

		&.en-page-title {
			font-size: 4.6rem;
		font-weight: bold;
		line-height: 1.2;

		@media screen and (max-width: 767px) {
		  font-size: 2.6rem;
		  line-height: 1.5;
		}
		}
	}

	.ja-title {
		font-family: "Zen Kaku Gothic New", sans-serif;
		color: var(--title-color);
		font-size: 4.6rem;
		font-weight: bold;
		line-height: 1.2;

		@media screen and (max-width: 767px) {
		  font-size: 2.6rem;
		  line-height: 1.5;
		}
	}
}

/* News */

.sec-news {
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 5rem;

        @media screen and (max-width: 767px) {
          gap: 1.6rem;
        }

        .news-item {
            padding-bottom: 3rem;
            border-bottom: 1px solid #ACACAC;
            font-weight: 500;
        
            @media screen and (max-width: 767px) {
              padding-bottom: 1.4rem;
            }

            .news-link {
                display: flex;
                flex-direction: column;
                gap: 1.8rem;
            
                .top-box {
                    display: flex;
                    align-items: center;
                    gap: 1.2rem;

					@media screen and (max-width: 767px) {
					  flex-direction: column;
					  align-items: flex-start;
					}

                    .date-time {
                        font-size: 1.6rem;
                        color: var(--primary-color);
                    }

					.list-category {
						@media screen and (max-width: 767px) {
						      display: flex
;
    flex-wrap: wrap;
    gap: 5px;
						}
					}
                    .category {
                        font-size: 1.4rem;
                        font-weight: bold;
                        background-color: var(--primary-color);
                        color: #fff;
                        padding: 2px 15px;
                        border-radius: 15px;
                        line-height: 1.2;
                    }
                
                }
                .bottom-box {
                
                    .news-title {
                        font-size: 1.8rem;

                        @media screen and (max-width: 767px) {
                          font-size: 1.6rem;
                          line-height: 1.6;
                        }
                    
                    }
                }
            }
        }
    
    }

    .news-btn-box {
        display: flex;
        justify-content: flex-end;

        @media screen and (max-width: 767px) {
          justify-content: center;
        }
    }

}

/* Faq */
.sec-faq {

    @media screen and (max-width: 767px) {
      padding-bottom: 8rem;
    }

    .common-title-box {
        margin-bottom: 8rem;

        @media screen and (max-width: 767px) {
          margin-bottom: 7rem;
        }
    }

    .inner {
        position: relative;

        &::before, &::after {
            position: absolute;
            content: '';
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }

        &::before {
            top: 20%;
            right: 0;
            background-image: url(../../img/top/faq-img01.png);
            width: 22rem;
            height: 21rem;
            transform: translateY(-30%);

            @media screen and (max-width: 767px) {
              width: 17rem;
              top: auto;
              right: 0;
              bottom: -1rem;
            }
        }
        &::after {
            bottom: 12rem;
            left: 0;
            background-image: url(../../img/top/faq-img02.png);
            width: 26rem;
            height: 19rem;

            @media screen and (max-width: 767px) {
              width: 18rem;
			  bottom: 4.7rem;
			  left: 3rem;
            }
        }
    }

    .title-bottom-box {
        display: flex;
        align-items: flex-end;
        gap: 5rem;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 1rem;
          align-items: flex-start;
        }


        & p {
            font-size: 1.6rem;

            @media screen and (max-width: 767px) {
              line-height: 1.6;
              margin-top: 1rem;
            }
        }
    }

    .faq-content-box {

        .faq-list {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;

            @media screen and (max-width: 767px) {
              margin-bottom: 24rem;
            }
        
            .faq-item {
                padding: 3rem 6rem;
                border-radius: 60px;
                font-size: 2rem;
                font-weight: bold;
                background-color: #EAEAEA;
                position: relative;

                @media screen and (max-width: 767px) {
                  padding: 1.6rem 0;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  width: 100%;
                  height: 8rem;
                }

                .faq-cat {
                    position: absolute;
                    top: 0;
                    left: 3rem;
                    transform: translateY(-50%);
                    color: #fff;
                    background-color: var(--primary-color);
                    padding: 0 2rem;
                    border-radius: 30px;
                    height: 3rem;
                    font-size: 1.8rem;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    @media screen and (max-width: 767px) {
                      font-size: 1.4rem;
                      left: 50%;
                      transform: translate(-50%, -50%);
                      padding: 0 1rem;
                      border-radius: 20px;
                    }
                
                }
                .faq-question {
                    @media screen and (max-width: 767px) {
                      font-size: 1.6rem;
                      text-align: center;
                      line-height: 1.6;
                    }
                }
            
            }
        }

        .faq-btn-box{
            display: flex;
            justify-content: center;
            margin-top: 8rem;
        }
}
}

/* Footer */

.cta-box {
	background-color: var(--primary-color);
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	padding-top: 9rem;
	padding-bottom: 15rem;
	z-index: 0;

	@media screen and (max-width: 767px) {
	  	border-top-left-radius: 50px;
		border-top-right-radius: 50px;
		padding-top: 6rem;
	}
	
	.inner {
		display: flex;
		align-items: center;
		justify-content: space-between;

		@media screen and (max-width: 767px) {
		  flex-direction: column;
		  gap: 4rem;
		}

	}

	.cta-text-box {
		color: #fff;
		display: flex;
		flex-direction: column;
		gap: 4rem;

		@media screen and (max-width: 767px) {
		  align-items: center;
		  gap: 2rem;
		}
	
		.title-box {
			font-size: 2.2rem;

			@media screen and (max-width: 767px) {
			  font-size: 1.6rem;
			}
		
			.en-title {
				text-transform: uppercase;
				margin-bottom: 1.2rem;

				@media screen and (max-width: 767px) {
				  text-align: center;
				}
			}
			.ja-title {
				font-size: 4.6rem;
				font-weight: bold;

				@media screen and (max-width: 767px) {
				  font-size: 2.5rem;
				}
			
			}
		}
		.main-text {
			font-size: 1.6rem;
			line-height: 1.7;

			@media screen and (max-width: 767px) {
			  font-size: 1.4rem;
			  margin-bottom: 1rem;
			}
		}
	
	.button-box{
	
		.common-elip-button{
		
		}
	}
	}
	.cta-img-box {
		width: 27rem;
		height: 32rem;
		object-fit: cover;

		@media screen and (max-width: 767px) {
		  width: 11.6rem;
		  height: 14rem;
		}

		& img {
			width: 100%;
		}
	
	}
}

#footer {
	background-color: #F8F8F8;
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	margin-top: -6rem;
	position: relative;
	z-index: 10;
	padding-top: 6rem;
	padding-bottom: 2.5rem;

	@media screen and (max-width: 767px) {
	  	border-top-left-radius: 50px;
		border-top-right-radius: 50px;
	}
	
	.inner {
		display: flex;
		flex-direction: column;
	}

	.logo-box {
		width: 48rem;

		@media screen and (max-width: 767px) {
		  width: 100%;
		}

		& img {
			width: 100%;
		}

	}
	.link-list {
		margin: 4rem 0 17rem 0;
		display: flex;
		gap: 4rem;

		@media screen and (max-width: 767px) {
		  flex-direction: column;
		  gap: 2rem;
		  margin-top: 3rem;
		  margin-bottom: 4rem;
		}

		.link-item {
		
			.link {
				font-size: 1.6rem;
				font-weight: 500;

				@media screen and (max-width: 767px) {
				  font-size: 1.4rem;
				}
			}
		}
	}
	.copyright {
		font-size: 1.2rem;
		align-self: center;

		@media screen and (max-width: 767px) {
		  font-size: 1rem;
		}
	}

}



/* KV */
.kv-box {
    margin-bottom: 5rem;

    .inner {
        display: flex;
        gap: 6rem;

        @media screen and (max-width: 767px) {
          flex-direction: column;
		  gap: 3rem;
        }

        .common-title {
            flex: 1;
        }

        .mv-img-box {
            flex: 0 0 43rem;

            @media screen and (max-width: 767px) {
              flex: 0 0 100%;
			  display: flex;
			  justify-content: center;

			  & img {
				width: 27rem;
			  }
            }
        }
    }

}

/* KVタイトル */
.common-title.type01 {
    text-align: left;

    .title-sub {
        text-transform: uppercase;
        color: var(--primary-color);
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 1.8rem;
		font-family: "Roboto", sans-serif;
		letter-spacing: 2px;

        @media screen and (max-width: 767px) {
          font-size: 1.6rem;
		  line-height: 1.5;
		  margin-bottom: 0;
		  letter-spacing: 0;
        }
    }

    .title-main {
        font-size: 5.2rem;
        font-weight: bold;
        line-height: 1.6;
		color: #323232;
		font-family: "Zen Kaku Gothic New", sans-serif;

        @media screen and (max-width: 767px) {
          font-size: 2.8rem;
		  line-height: 1.4;
        }
    }
}

.common-blue-title {
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    background-color: var(--primary-color);
    padding: 1.5rem 3rem;
    border-radius: 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	display: block;

	@media screen and (max-width: 767px) {
	  /* border-radius: 0 !important; */
	  font-size: 1.6rem;
	  line-height: 1.4;
	  text-align: center;
	  padding: 1rem 2rem;
	  font-weight: bold;
	  letter-spacing: 2px;
	}
}

.sp-m0 {
	@media screen and (max-width: 767px) {
	  margin-bottom: 0 !important;
	}
}


/* NAV */
.jimu-nav {
    margin-top: 17rem;

    @media screen and (max-width: 767px) {
      margin-top: -2rem;
    }

    .inner {
        border-bottom: 1px solid var(--primary-color);
    }
    
    .nav-list{
        display: flex;
        align-items: center ;
        width: 92rem;
        max-width: 92rem;
        margin: 0 auto;
        gap: 8rem;

        @media screen and (max-width: 767px) {
          width: 100%;
          max-width: 100%;
          gap: 0;
          flex-direction: column;
        }
        
        .nav-item{
            @media screen and (max-width: 767px) {
              width: 100%;
            }
            &:not(:last-child) {
                  @media screen and (max-width: 767px) {
                      border-bottom: 1px solid var(--primary-color);
                  }
              }
            
            .nav-link{
                padding: 2.5rem 0;
                height: 100%;
                position: relative;
                font-weight: bold;
                font-family: "Zen Kaku Gothic New", sans-serif;
                letter-spacing: 2px;

                @media screen and (max-width: 767px) {
                  width: 100%;
                  padding: 2rem 0;

                }
                

                &.active {
                    color: var(--primary-color);
                }

                &::after {
                    content: '';
                    position: absolute;
                    width: 1px;
                    height: 25px;
                    top: 50%;
                    right: -4rem;
                    transform: translateY(-50%);
                    background: var(--primary-color);

                    @media screen and (max-width: 767px) {
                      display: none;
                    }

                }

            }

            &:last-child {
                .nav-link::after {
                    display: none;
                }
    
            } 
        }

    }

	&.gakkensai {
		margin-top: 0;
	}
}

.jimu-nav.gakkensai {
	margin-top: -6rem;
	margin-bottom: 10rem;

	@media screen and (max-width: 767px) {
	  margin-top: 0;
	  margin-bottom: 7rem;
	}

	.nav-list {
		width: 95%;
		max-width: 95%;
		justify-content: center;

		.nav-link {
			line-height: 1.5;
		}
	}

}