main {
	margin-top: 5.625rem;
}

body {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	position: relative;
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: 0.3s;
	z-index: 900;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-lower-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1110px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-page-top {
	bottom: 2.5rem;
	position: fixed;
	right: 2.5rem;
	z-index: 1000;
}

.c-btn {
	background-color: #FFFFFF;
	border: 1px solid #333333;
	border-radius: 2.5rem;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.8;
	max-width: 15.5rem;
	overflow: hidden;
	padding: 1.25rem 2.5rem;
	position: relative;
	text-align: left;
	transition: 0.3s;
	width: 100%;
	z-index: 1;
}

.c-btn::before {
	-webkit-mask-image: url(../images/common/common-arrow1.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #333333;
	content: "";
	display: inline-block;
	height: 1.6875rem;
	mask-image: url(../images/common/common-arrow1.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.6875rem;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	width: 2.5rem;
}

.c-btn::after {
	background: #333333;
	border-radius: 1.875rem;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.c-btn:hover {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.c-btn:hover::before {
	background: #FFFFFF;
}

.c-btn:hover::after {
	transform: scale(1, 1);
}

.c-btn span {
	bottom: 0;
	display: inline-block;
	height: 0.5rem;
	overflow: hidden;
	position: absolute;
	right: 2.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.625rem;
}

.c-btn span:before,
.c-btn span:after {
	-webkit-mask-image: url(../images/common/arrow-white.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	background: #FFFFFF;
	content: "";
	height: 0.5rem;
	mask-image: url(../images/common/arrow-white.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.625rem;
}

.c-btn span:after {
	background: #333333;
}

.c-btn span:after {
	transform: translate(-100%, -50%);
}

.c-btn:hover span:before {
	animation-delay: 0s;
	animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
}

.c-btn:hover span:after {
	animation-delay: 0.1s;
	animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
}

.c-btn--dark {
	background-color: #333333;
	border: none;
	color: #FFFFFF;
}

.c-btn--dark::before {
	background: #FFFFFF;
}

.c-btn--dark::after {
	background: #003087;
}

.c-btn--dark:hover {
	border: none;
	color: #FFFFFF;
}

.c-btn--dark span:before,
.c-btn--dark span:after {
	background: #333333;
}

.c-mod-btn-01 {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #333333;
	border-radius: 2.5rem;
	color: #FFFFFF;
	display: inline-flex;
	display: flex;
	font-size: 1rem;
	font-weight: 500;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 16.25rem;
	padding: 1rem 1.25rem;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease;
	width: 100%;
}

.c-mod-btn-01::after {
	-webkit-mask-image: url(../images/common/arrow-right-yellow.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #F1C400;
	content: "";
	height: 1rem;
	mask-image: url(../images/common/arrow-right-yellow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background 0.3s ease;
	width: 0.5625rem;
}

.c-mod-btn-01:hover {
	background-color: #003087;
}

.c-mod-btn-01:hover::after {
	background: #FFFFFF;
}

.c-page-top {
	background-image: url(../images/common/page-top.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 50%;
	cursor: pointer;
	height: 3.5rem;
	opacity: 0;
	position: relative;
	transition: 0.3s;
	visibility: hidden;
	width: 3.5rem;
	z-index: 1000;
}

.c-page-top::before {
	background-image: url(../images/common/page-top-hover.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 50%;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s;
	width: 100%;
}

.c-page-top.is-active {
	opacity: 1;
	visibility: visible;
}

.c-page-top:hover::before {
	opacity: 1;
}

.c-breadcrumb {
	padding-top: 1.1875rem;
}

.c-breadcrumb__list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.8125rem;
	list-style: none;
	margin-left: 3.125rem;
}

.c-breadcrumb__item {
	align-items: center;
	display: flex;
}

.c-breadcrumb__item:not(:last-child)::after {
	content: "＞";
	margin: 0 0.3125rem;
}

.c-breadcrumb__link {
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: color 0.3s ease;
}

.c-breadcrumb__link--home {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.c-breadcrumb__current {
	color: #333333;
}

.p-article {
	background-color: #fff;
	padding: 2.9375rem 0 6rem;
}

.p-article__container {
	grid-gap: 3.5rem;
	align-items: start;
	display: grid;
	gap: 3.5rem;
	grid-template-columns: 1fr 17.5rem;
	justify-content: space-between;
	margin-top: 3.625rem;
}

.p-article__main {
	background-color: #F8F8F2;
	padding: 3.1875rem 3.125rem;
}

.c-page-title {
	color: #003087;
	font-size: 2rem;
	font-weight: 700;
	padding-bottom: 1rem;
	position: relative;
	text-align: center;
}

.c-page-title::before {
	background-color: #F1C400;
	bottom: 0;
	content: "";
	height: 0.25rem;
	left: calc(50% + 0.75rem);
	position: absolute;
	transform: translateX(-50%);
	width: 1.5rem;
}

.c-page-title::after {
	background-color: #F19400;
	bottom: 0;
	content: "";
	height: 0.25rem;
	left: calc(50% - 0.75rem);
	position: absolute;
	transform: translateX(-50%);
	width: 1.5rem;
}

.c-heading2 {
	background-color: #003087;
	border-radius: 0 0 0 0.9375rem;
	color: #FFFFFF;
	font-size: 1.625rem;
	font-weight: 700;
	padding: 1.1875rem 0.9375rem 1rem;
}

.c-heading2 span {
	align-items: center;
	display: flex;
}

.c-heading2 span::before {
	background-color: #F1C400;
	border-radius: 50%;
	content: "";
	display: block;
	height: 0.75rem;
	margin-right: 0.75rem;
	width: 0.75rem;
}

.c-heading3 {
	border-bottom: 1px solid #D0D0D0;
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.4;
	padding-bottom: 0.5rem;
	padding-left: 1.75rem;
	position: relative;
}

.c-heading3::before {
	background-color: #003087;
	content: "";
	display: block;
	height: 0.875rem;
	left: 0;
	position: absolute;
	top: 0.375rem;
	width: 0.875rem;
}

.c-heading3::after {
	background-color: #F1C400;
	content: "";
	display: block;
	height: 0.625rem;
	left: 0.5rem;
	position: absolute;
	top: 0.875rem;
	width: 0.625rem;
}

.p-article__heading3 {
	margin-top: 3rem;
}

.c-heading4 {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	padding-bottom: 0.6875rem;
	position: relative;
}

.c-heading4::before {
	background-color: #F1C400;
	bottom: 0;
	content: "";
	display: block;
	height: 0.1875rem;
	left: 0;
	position: absolute;
	width: 0.625rem;
}

.c-heading4::after {
	background-color: #003087;
	bottom: 0;
	content: "";
	display: block;
	height: 0.1875rem;
	left: 0.625rem;
	position: absolute;
	width: 1.25rem;
}

.p-article__heading4 {
	margin-top: 2rem;
}

.c-heading5 {
	align-items: center;
	display: flex;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.4;
}

.c-heading5::before {
	background-color: #F1C400;
	border-radius: 50%;
	content: "";
	display: block;
	height: 0.625rem;
	margin-right: 0.5rem;
	width: 0.625rem;
}

.p-article__heading5 {
	margin-top: 1.5rem;
}

.c-heading6 {
	color: #003087;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.8;
}

.p-article__heading6 {
	margin-top: 1rem;
}

.c-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
}

.p-article__text {
	margin-top: 2.5rem;
}

.p-article__text-image {
	align-items: flex-start;
	display: flex;
	gap: 2.5rem;
}

.p-article__text-image__text {
	max-width: 18.75rem;
	width: 100%;
}

.p-article__text-image__image {
	max-width: 17.5rem;
	width: 100%;
}

.p-article__text-image__image img {
	-o-object-fit: cover;
	aspect-ratio: 280/180;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-article__image-flex {
	display: flex;
	gap: 2rem;
	margin-top: 2.5rem;
}

.p-article__image-flex__item {
	width: 50%;
}

.p-article__image-flex__item img {
	-o-object-fit: cover;
	aspect-ratio: 293/189;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-list {
	margin-top: 1.5rem;
}

.p-list__item {
	align-items: center;
	display: flex;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
}

.p-list__item::before {
	content: "・";
	display: block;
	font-size: 1rem;
	margin-right: 0.375rem;
}

.p-list__item + .p-list__item {
	margin-top: 0.5rem;
}

.p-list.p-list--ordered {
	counter-reset: item;
}

.p-list.p-list--ordered .p-list__item::before {
	content: counter(item) ". ";
	counter-increment: item;
	font-size: 1rem;
	margin-right: 0.5rem;
}

.p-definition {
	margin-top: 1.5rem;
}

.p-definition__row {
	align-items: stretch;
	border-top: 0.5px solid #707070;
	display: flex;
}

.p-definition__row:last-child {
	border-bottom: 0.5px solid #707070;
}

.p-definition__title {
	align-items: center;
	background-color: #F2F7FF;
	color: #333333;
	display: flex;
	flex: 0 0 12.5rem;
	font-size: 1rem;
	font-weight: 700;
	padding: 1rem 1.25rem;
}

.p-definition__text {
	align-items: center;
	background-color: #FFFFFF;
	display: flex;
	flex: 1;
	font-size: 1rem;
	line-height: 1.8;
	margin: 0;
	padding: 1rem 1.25rem;
}

.p-article__button-wrapper {
	margin-top: 2.5rem;
	text-align: center;
}

.p-article__download {
	margin-top: 2rem;
	text-align: center;
}

.p-download__link {
	align-items: center;
	background-color: #003087;
	color: #FFFFFF;
	display: inline-flex;
	gap: 0.75rem;
	justify-content: flex-start;
	max-width: 19.6875rem;
	padding: 0.8125rem 1rem 0.75rem;
	position: relative;
	transition: background-color 0.3s ease;
	width: 100%;
}

.p-download__link:hover {
	background-color: #0052A3;
}

.p-download__link::after {
	background-image: url(../images/common/arrow-right-yellow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 1rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5625rem;
}

.p-download__link:hover {
	background-color: #606060;
}

.p-download__icon {
	display: flex;
	height: 1.125rem;
	width: 1.125rem;
}

.p-download__icon svg {
	height: 100%;
	width: 100%;
}

.p-download__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
}

.p-download__text span {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 2.2153846154;
}

.p-article__map {
	margin-top: 3rem;
}

.p-map__title {
	color: #333333;
	font-size: 1.25rem;
	font-weight: 700;
}

.p-map__image {
	margin-top: 1.5rem;
	position: relative;
}

.p-map__image img {
	height: auto;
	width: 100%;
}

.p-map__image--shimane {
	aspect-ratio: 62/61;
}

.p-map__image--yamaguchi {
	aspect-ratio: 62/52;
}

.p-map__image-button {
	height: 9.18%;
	position: absolute;
	width: 21.774%;
}

.p-map__image-button.p-map__image-button--R1 {
	left: 41.935%;
	top: 3.77%;
}

.p-map__image-button.p-map__image-button--R2 {
	right: 9.677%;
	top: 48.36%;
}

.p-map__image-button.p-map__image-button--R3 {
	left: 3.7%;
	top: 43.77%;
}

.p-map__image-button.p-map__image-button--R4 {
	right: 5.16129%;
	top: 17.1154%;
}

.p-map__image-button.p-map__image-button--R5 {
	bottom: 10.577%;
	right: 39.8387%;
}

.p-map__image-button.p-map__image-button--R6 {
	left: 7.4193%;
	top: 15.3846%;
}

.p-map__image-button.p-map__image-button--R7 {
	bottom: 10.577%;
	left: 4.1935%;
}

.p-sidebar-banner + .p-sidebar-banner {
	margin-top: 1.5rem;
}

.p-sidebar-banner a {
	display: block;
	overflow: hidden;
}

.p-sidebar-banner img {
	display: block;
	height: auto;
	width: 100%;
}

.p-sidebar-menu {
	margin-top: 2.5rem;
}

.p-sidebar-menu__title {
	align-items: center;
	background-color: #003087;
	color: #FFFFFF;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	gap: 0.5625rem;
	padding: 1.0625rem 1.8125rem;
	position: relative;
}

.p-sidebar-menu__title::before {
	background-color: #F1C400;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0.25rem;
}

.p-sidebar-menu__title span {
	color: #95B6F2;
	font-size: 0.875rem;
	font-weight: 500;
}

.p-sidebar-menu__item a {
	-webkit-text-decoration: none;
	background-color: #FFFFFF;
	background-image: radial-gradient(circle, #BCBCBC 1px, transparent 1px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 6px 4px;
	color: #333333;
	display: block;
	font-size: 0.9375rem;
	padding: 1.375rem 0;
	padding-right: 2.5rem;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.p-sidebar-menu__item a::before {
	background-image: url(../images/common/arrow-right-yellow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 1rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5625rem;
}

.p-banner-list {
	padding: 4.5rem 0;
}

.p-banner-list__grid {
	grid-gap: 1.5625rem 1.25rem;
	display: grid;
	gap: 1.5625rem 1.25rem;
	grid-template-columns: repeat(4, 1fr);
}

.p-banner-list__item {
	aspect-ratio: 260/64;
	margin: 0 auto;
	max-width: 16.25rem;
}

.p-banner-list__item img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-banner-list__item a {
	transition: opacity 0.3s;
}

.p-banner-list__item a:hover {
	opacity: 0.7;
}

.p-banner {
	padding: 5.375rem 0;
	position: relative;
}

.p-banner__grid {
	grid-gap: 2.0625rem 2.375rem;
	display: grid;
	gap: 2.0625rem 2.375rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-banner__item {
	position: relative;
}

.p-banner__item a {
	-webkit-text-decoration: none;
	background-color: #F8F8F8;
	border-radius: 0.3125rem;
	display: block;
	display: flex;
	height: inherit;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-banner__item.p-banner__item--organization a::after,
.p-banner__item.p-banner__item--clubs a::after {
	background-image: url(../images/common/arrow-right-yellow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1rem;
	position: absolute;
	right: 1.0625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5625rem;
}

.p-banner__item.p-banner__item--about a,
.p-banner__item.p-banner__item--profile a {
	align-items: flex-end;
	min-height: 10.625rem;
}

.p-banner__item.p-banner__item--profile a {
	background-color: #EFEFEC;
	border: 1px solid #D0D0D0;
}

.p-banner__item.p-banner__item--organization a,
.p-banner__item.p-banner__item--clubs a {
	align-items: center;
}

.p-banner__item a:hover {
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
	transform: translateY(-0.125rem);
}

.p-banner__item.p-banner__item--about a,
.p-banner__item.p-banner__item--profile a {
	padding: 1.25rem 1.5625rem;
}

.p-banner__item.p-banner__item--about a .p-banner__image {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.p-banner__item.p-banner__item--profile a .p-banner__image {
	height: calc(100% + 1.25rem);
	position: absolute;
	right: 0;
	top: -1.25rem;
	width: 46.415%;
	z-index: 2;
}

.p-banner__item.p-banner__item--about a .p-banner__image img,
.p-banner__item.p-banner__item--profile a .p-banner__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-banner__item.p-banner__item--profile a .p-banner__image img {
	-o-object-position: top;
	object-position: top;
}

.p-banner__item.p-banner__item--about a .p-banner__content,
.p-banner__item.p-banner__item--profile a .p-banner__content {
	position: relative;
	z-index: 1;
}

.p-banner__item.p-banner__item--organization a,
.p-banner__item.p-banner__item--clubs a {
	background-color: #F7F7F4;
	border: 1px solid #D0D0D0;
	border-radius: 0.625rem;
	padding: 0.875rem 2.625rem;
}

.p-banner__item.p-banner__item--organization a .p-banner__icon,
.p-banner__item.p-banner__item--clubs a .p-banner__icon {
	flex-shrink: 0;
	height: 4.1875rem;
	margin-right: 1.3125rem;
	width: 4.1875rem;
}

.p-banner__icon img {
	height: 100%;
	width: 100%;
}

.p-banner__label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
}

.p-banner__label--yellow {
	background-color: #F5C500;
	color: #FFFFFF;
	padding: 0.25rem 1rem;
}

.p-banner__label--blue {
	background-color: #003087;
	color: #FFFFFF;
	padding: 0.1875rem 0.9375rem;
}

.p-banner__label--yellow-text {
	color: #F5C500;
}

.p-banner__title {
	align-items: center;
	display: flex;
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-banner__item.p-banner__item--about .p-banner__title,
.p-banner__item.p-banner__item--profile .p-banner__title {
	background-color: #FFFFFF;
	padding: 0.625rem 1rem;
}

.p-banner__item.p-banner__item--about .p-banner__title::after,
.p-banner__item.p-banner__item--profile .p-banner__title::after {
	background-image: url(../images/common/arrow-right-yellow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1rem;
	margin-left: 0.6875rem;
	width: 0.5625rem;
}

.p-banner__bg-text {
	color: #E2E2D9;
	font-size: 3.75rem;
	font-weight: 700;
	left: 0.875rem;
	line-height: 1.45;
	position: absolute;
	top: 0.25rem;
	z-index: 0;
}

.p-banner__bg-logo {
	height: 11.125rem;
	position: absolute;
	right: 1.3125rem;
	top: 0.625rem;
	width: 35.47%;
	z-index: 0;
}

.p-banner__item--organization::before,
.p-banner__item--clubs::before {
	background-color: #F1C400;
	border-radius: 0.625rem 0 0 0;
	content: "";
	height: 50%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0.75rem;
	z-index: 1;
}

.p-banner__item--organization::after,
.p-banner__item--clubs::after {
	background-color: #F19400;
	border-radius: 0 0 0 0.625rem;
	bottom: 0;
	content: "";
	height: 50%;
	left: 0;
	position: absolute;
	width: 0.75rem;
}

.p-banner__decoration-left {
	height: 9.625rem;
	left: 2.5rem;
	position: absolute;
	top: -6.0625rem;
	width: 10.125rem;
	z-index: 2;
}

.p-contact {
	background-color: #F5C500;
	padding: 6.25rem 0 4.4375rem;
}

.p-contact__container {
	background-color: #FFFFFF;
	border-radius: 0.9375rem;
	padding: 5rem 3.75rem 3.5rem;
}

.p-contact__header {
	position: relative;
	text-align: center;
}

.p-contact__content {
	margin: 0 auto;
	margin-top: 2.5rem;
	max-width: 53rem;
	width: 100%;
}

.p-contact__grid {
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
}

.p-contact__item {
	max-width: 23.75rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-contact__item-title {
	color: #003087;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 600;
	padding-bottom: 0.5rem;
	position: relative;
	z-index: 1;
}

.p-contact__item-title::before {
	background-color: #003087;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.p-contact__item::before {
	background-color: #EAEEF4;
	border-radius: 0.3125rem;
	content: "";
	height: calc(100% - 1.125rem);
	left: 0;
	position: absolute;
	right: 0;
	top: 0.9375rem;
	z-index: 0;
}

.p-contact__phone-box {
	margin-top: 1.25rem;
	padding-bottom: 2rem;
	position: relative;
}

.p-contact__phone-link {
	-webkit-text-decoration: none;
	align-items: center;
	display: inline-flex;
	gap: 1rem;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.p-contact__phone-link:hover {
	opacity: 0.7;
}

.p-contact__phone-icon {
	align-items: center;
	display: flex;
	height: 1.5rem;
	justify-content: center;
	width: 1.5rem;
}

.p-contact__phone-number {
	color: #003087;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.59375;
}

.p-contact__phone-hours {
	color: #003087;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.125rem;
}

.p-contact__mail-box {
	margin-top: 2.0625rem;
}

.p-contact__mail-box a {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #003087;
	border: 1px solid #003087;
	border-radius: 2.5rem;
	color: #FFFFFF;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 500;
	gap: 1rem;
	margin: 0 auto;
	max-width: 18.75rem;
	padding: 0.9375rem 1.125rem;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
}

.p-contact__mail-box a::before {
	-webkit-mask-image: url(../images/common/mail-icon.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #FFFFFF;
	content: "";
	height: 0.75rem;
	mask-image: url(../images/common/mail-icon.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background 0.3s ease;
	width: 1.125rem;
}

.p-contact__mail-box a::after {
	-webkit-mask-image: url(../images/common/arrow-right-yellow.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #F1C400;
	content: "";
	height: 1rem;
	mask-image: url(../images/common/arrow-right-yellow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.1875rem;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background 0.3s ease;
	width: 0.5625rem;
}

.p-contact__mail-box a:hover {
	background-color: #FFFFFF;
	color: #003087;
}

.p-contact__mail-box a:hover::before {
	background: #003087;
}

.p-contact__mail-box a:hover::after {
	background: #003087;
}

.p-contact__mail-icon {
	align-items: center;
	color: #FFFFFF;
	display: flex;
	height: 0.75rem;
	justify-content: center;
	width: 1.125rem;
}

.p-contact__mail-link span {
	display: inline-block;
	width: calc(100% - 1.125rem);
}

.p-faq {
	background-color: #F7F7F4;
	border-radius: 7.5rem 7.5rem 0 0;
	padding: 5.625rem 0;
}

.p-faq__title {
	display: inline-block;
	padding-left: 4rem;
	position: relative;
}

.p-faq__title::before {
	background-color: #333333;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 1.5rem;
	width: 3.5rem;
}

.p-faq__title-ja {
	color: #003087;
	display: block;
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-faq__title-en {
	color: #BCBCBC;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	margin-top: 0.25rem;
}

.p-faq__content {
	margin-top: 2.5rem;
}

.p-faq__item {
	background-color: #FFFFFF;
	border: 1px solid #D0D0D0;
	border-radius: 0.3125rem;
}

.p-faq__item + .p-faq__item {
	margin-top: 1.0625rem;
}

.p-faq__question {
	align-items: center;
	cursor: pointer;
	display: flex;
	padding: 0.5625rem 1.375rem;
	padding-right: 1.125rem;
	width: 100%;
}

.p-faq__question-label {
	color: #003087;
	flex-shrink: 0;
	font-size: 1.75rem;
	font-weight: 700;
	height: inherit;
	line-height: 1;
	padding-bottom: 0.5625rem;
	padding-right: 1.125rem;
}

.p-faq__question-text {
	border-left: 1px solid #D0D0D0;
	color: #333333;
	flex: 1;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.6;
	padding-bottom: 0.6875rem;
	padding-left: 1.1875rem;
	padding-right: 2.5rem;
	padding-top: 0.6875rem;
}

.p-faq__icon {
	flex-shrink: 0;
	height: 2rem;
	position: relative;
	width: 2rem;
}

.p-faq__icon::before,
.p-faq__icon::after {
	background-color: #D0D0D0;
	border-radius: 1.875rem;
	content: "";
	position: absolute;
	transition: all 0.3s ease;
}

.p-faq__icon::before {
	height: 0.1875rem;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 1.5rem;
}

.p-faq__icon::after {
	height: 1.5rem;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.1875rem;
}

.p-faq__question[aria-expanded=true] .p-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.p-faq__answer-inner {
	padding: 1.5rem 2.5rem 2rem;
}

.p-faq__answer-text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.8;
}

.p-faq__more {
	margin-top: 3.0625rem;
	text-align: center;
}

.p-faq__more-link {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #4A4A4A;
	border-radius: 2.5rem;
	color: #FFFFFF;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 500;
	padding: 1.25rem 3.75rem;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.p-faq__more-link:hover {
	background-color: #333;
}

.p-faq__more-arrow {
	height: 1rem;
	margin-left: 1.5rem;
	position: relative;
	width: 1.5rem;
}

.p-faq__more-arrow::before {
	background-color: #FFFFFF;
	content: "";
	height: 0.125rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.p-faq__more-arrow::after {
	border-right: 0.125rem solid #FFFFFF;
	border-top: 0.125rem solid #FFFFFF;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.5rem;
}

.p-footer {
	background-color: #F5F5F0;
	padding: 3.0625rem 0 1.4375rem;
}

.p-footer__content {
	display: flex;
	gap: 3.75rem;
	justify-content: space-between;
}

.p-footer__left {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
}

.p-footer__logo {
	flex-shrink: 0;
}

.p-footer__logo img {
	height: auto;
	width: 5.875rem;
}

.p-footer__title {
	color: #333333;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-footer__address {
	color: #333333;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.8125;
	margin-top: 1rem;
}

.p-footer__right {
	padding-top: 0.375rem;
}

.p-footer__nav {
	display: flex;
	gap: 3.5rem;
}

.p-footer__nav-list {
	grid-column-gap: 3.5rem;
	-moz-column-gap: 3.5rem;
	column-gap: 3.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.p-footer__nav-item {
	list-style: none;
	padding-left: 0.875rem;
	position: relative;
}

.p-footer__nav-item + .p-footer__nav-item {
	margin-top: 0.6875rem;
}

.p-footer__nav-item::before {
	background-color: #F1C400;
	border-radius: 50%;
	content: "";
	height: 0.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.p-footer__nav-item a {
	-webkit-text-decoration: none;
	color: #333333;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8125;
	text-decoration: none;
	transition: opacity 0.3s;
}

.p-footer__nav-item a:hover {
	opacity: 0.7;
}

.p-footer__bottom {
	border-top: 1px solid #E0E0E0;
	margin-top: 3.8125rem;
	padding-top: 0.75rem;
}

.p-footer__copyright {
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.8;
}

.p-header {
	background-color: #FFFFFF;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	left: 0;
	position: fixed;
	top: 0;
	transition: transform 0.3s;
	width: 100%;
	z-index: 100;
}

.p-header.is-hidden {
	transform: translateY(-100%);
}

.p-header__inner {
	align-items: center;
	display: flex;
	height: 5.625rem;
	padding-left: 2.5rem;
	padding-right: 0;
}

.p-header__logo {
	align-items: center;
	display: flex;
	margin-right: auto;
	position: relative;
	z-index: 301;
}

.p-header__logo a {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.p-header__logo img {
	height: 3.25rem;
	width: 3.25rem;
}

.p-header__logo-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.p-header__logo-text-main {
	color: #333333;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
}

.p-header__logo-text-sub {
	color: #333333;
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 1.2;
}

.p-header__nav-list {
	align-items: center;
	display: flex;
	gap: 1.5rem;
}

.p-header__nav-link {
	color: #333333;
	display: block;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	transition: color 0.3s;
}

.p-header__nav-link::after {
	background: #003087;
	bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
	transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
	transition: transform 0.3s; /*変形の時間*/
	width: 100%;
}

.p-header__nav-link:hover::after {
	transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.p-header__center {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	gap: 0.6875rem;
	height: inherit;
	margin-right: 1.375rem;
	padding-bottom: 0.5rem;
	padding-top: 0.875rem;
}

.p-header__sns {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.p-header__sns-link {
	align-items: center;
	color: #333333;
	display: flex;
	height: 2.25rem;
	justify-content: center;
	transition: opacity 0.3s;
	width: 2.25rem;
}

.p-header__sns-link:hover {
	opacity: 0.7;
}

.p-header__member-btn-wrap {
	height: inherit;
}

.p-header__member-btn {
	align-items: center;
	background-color: #F1C400;
	border-radius: 0 0 0 1.25rem;
	color: #333333;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	transition: background-color 0.3s, color 0.3s;
	width: 8rem;
}

.p-header__member-btn:hover {
	background-color: #606060;
	color: #FFFFFF;
}

.p-header__member-icon {
	height: 1.25rem;
	width: 1.25rem;
}

.p-header__member-btn img {
	height: 1.875rem;
	width: 1.875rem;
}

.p-header__member-btn span {
	align-items: center;
	display: flex;
	margin-top: 0.5rem;
}

.p-header__member-btn span::after {
	-webkit-mask-image: url(../images/common/icon-arrow-right.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #333333;
	content: "";
	display: block;
	height: 0.625rem;
	margin-left: 0.4375rem;
	mask-image: url(../images/common/icon-arrow-right.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background 0.3s;
	width: 0.375rem;
}

.p-header__member-btn:hover span::after {
	background: #FFFFFF;
}

.p-header__member-arrow {
	height: 1rem;
	width: 1rem;
}

.p-header__hamburger {
	align-items: center;
	background-color: #333333;
	border: none;
	cursor: pointer;
	display: none;
	flex-direction: column;
	height: 3.75rem;
	justify-content: center;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 3.75rem;
	z-index: 300;
}

.p-header__hamburger-line {
	background-color: #FFFFFF;
	display: block;
	height: 0.125rem;
	position: absolute;
	transition: all 0.3s ease;
	width: 2rem;
}

.p-header__hamburger-line:nth-child(1) {
	top: 0.6875rem;
}

.p-header__hamburger-line:nth-child(2) {
	top: 1.25rem;
}

.p-header__hamburger-line:nth-child(3) {
	top: 1.8125rem;
}

.p-header__hamburger-text {
	bottom: 0.4375rem;
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 500;
	position: absolute;
	transition: opacity 0.3s ease;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(1) {
	top: 1.4375rem;
	transform: rotate(45deg);
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(3) {
	top: 1.4375rem;
	transform: rotate(-45deg);
}

.p-header__hamburger.is-active .p-header__hamburger-text {
	content: "CLOSE";
}

.p-header__drawer {
	background-color: #FFFFFF;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	position: fixed;
	top: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 200;
}

.p-header__drawer.is-active {
	opacity: 1;
	visibility: visible;
}

.p-header__drawer-inner {
	padding: 4.1875rem 1.25rem 1.5rem;
}

.p-header__drawer-nav-list {
	display: flex;
	flex-direction: column;
}

.p-header__drawer-nav-item {
	align-items: center;
	border-bottom: 1px solid #D0D0D0;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.p-header__drawer-nav-item.p-header__drawer-nav-item--accordion {
	flex-direction: column;
}

.p-header__drawer-nav-item:not(:first-child)::after {
	background-image: url(../images/common/arrow-right-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 0.75rem;
	width: 0.4375rem;
}

.p-header__drawer-nav-button {
	position: relative;
}

.p-header__drawer-nav-bar {
	background-color: #003087;
	border-radius: 1.875rem;
	content: "";
	display: block;
	height: 0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.125rem;
}

.p-header__drawer-nav-bar:nth-child(1) {
	right: 0.3125rem;
	transition: transform 0.3s;
}

.p-header__drawer-nav-bar:nth-child(2) {
	height: 0.75rem;
	right: 0.3125rem;
	transform: translateY(-55%) rotate(90deg);
}

.p-header__drawer-nav-button.is-open .p-header__drawer-nav-bar:nth-child(1) {
	transform: translateY(-55%) rotate(90deg);
}

.p-header__drawer-nav-content {
	display: none;
	width: 100%;
}

.p-header__drawer-nav-content a {
	border-top: 1px solid #D0D0D0;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	padding: 0.75rem 0;
	width: 100%;
}

.p-header__drawer-nav-button,
.p-header__drawer-nav-link {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	padding: 0.75rem 0;
	text-align: left;
	width: 100%;
}

.p-header__drawer-nav-icon,
.p-header__drawer-nav-arrow {
	color: #333333;
	height: 1.5rem;
	transition: transform 0.3s;
	width: 1.5rem;
}

.p-header__drawer-member-btn {
	align-items: center;
	background-color: #F1C400;
	border-radius: 6.25rem;
	color: #333333;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	gap: 0.6875rem;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	max-width: 17.5rem;
	padding: 0.8125rem 0.9375rem;
	width: 100%;
}

.p-header__drawer-member-btn span {
	align-items: center;
	display: flex;
	justify-content: space-between;
	width: calc(100% - 2.5625rem);
}

.p-header__drawer-member-btn span::after {
	background-image: url(../images/common/icon-arrow-right.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 0.625rem;
	width: 0.375rem;
}

.p-header__drawer-member-icon {
	height: 1.875rem;
	width: 1.875rem;
}

.p-header__drawer-member-arrow {
	height: 1rem;
	width: 1rem;
}

.p-header__drawer-sns {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 2rem;
}

.p-header__drawer-sns-link {
	align-items: center;
	color: #003087;
	display: flex;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.p-header__drawer-overlay {
	background-color: #FFFFFF;
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 190;
}

.p-header__drawer-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

body.is-fixed {
	overflow: hidden;
}

.p-info {
	background-color: #F1C400;
	overflow: hidden;
	padding: 4rem 0;
	position: relative;
}

.p-info::before {
	color: #F1B000;
	content: "information";
	font-size: 6.25rem;
	font-weight: 700;
	left: 50%;
	line-height: 0.7;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	transform: translateX(-50%);
}

.p-info::after {
	background-color: #F1B000;
	bottom: 0;
	content: "";
	height: 0.375rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

.p-info__inner {
	align-items: center;
	display: flex;
	gap: 2.375rem;
	position: relative;
	z-index: 1;
}

.p-info__rate {
	background-color: #FFFFFF;
	border: 0.0625rem solid #D0D0D0;
	border-radius: 0.3125rem;
	box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
	flex: 0 0 auto;
	overflow: hidden;
}

.p-info__rate-header {
	align-items: center;
	display: flex;
}

.p-info__rate-icon {
	align-items: center;
	background-color: #F18200;
	border-radius: 0.3125rem 0 0 0;
	color: #333333;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	justify-content: center;
	padding: 0.5rem;
	width: 2.5rem;
}

.p-info__rate-title {
	background-color: #003087;
	color: #FFFFFF;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.8;
	padding: 0.3125rem 0.8125rem 0.375rem;
	width: calc(100% - 2.5rem);
}

.p-info__rate-text {
	color: #333333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 0.9375rem 0.75rem;
	padding-right: 0.625rem;
	white-space: nowrap;
}

.p-info__links {
	display: flex;
	flex: 1;
	gap: 2.5rem;
}

.p-info__link {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #FFFFFF;
	border: 0.125rem solid #003087;
	border-radius: 0.3125rem;
	display: flex;
	flex: 1;
	gap: 1rem;
	min-height: 6rem;
	padding: 1.5625rem;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.p-info__link::before {
	background-color: #003087;
	border-radius: 0.125rem 0 0 0.125rem;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0.375rem;
}

.p-info__link::after {
	-webkit-mask-image: url(../images/common/arrow-right-yellow.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #F1C400;
	content: "";
	height: 1rem;
	mask-image: url(../images/common/arrow-right-yellow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.4375rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 0.5625rem;
}

.p-info__link:hover::after {
	background: #003087;
}

.p-info__link:hover {
	background-color: #EAEEF4;
}

.p-info__link-icon {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}

.p-info__link:nth-child(1) .p-info__link-icon {
	height: 2.4375rem;
	width: 2.3125rem;
}

.p-info__link:nth-child(2) .p-info__link-icon {
	height: 1.9375rem;
	width: 1.9375rem;
}

.p-info__link-text {
	color: #003087;
	flex: 1;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-info__link-arrow {
	flex-shrink: 0;
	height: 1.5rem;
	position: relative;
	width: 1.5rem;
}

.p-info__link-arrow::before,
.p-info__link-arrow::after {
	background-color: #F5C500;
	content: "";
	position: absolute;
}

.p-info__link-arrow::before {
	height: 0.125rem;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

.p-info__link-arrow::after {
	border-right: 0.125rem solid #F5C500;
	border-top: 0.125rem solid #F5C500;
	height: 0.5rem;
	right: 0.125rem;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.5rem;
}

.p-interview {
	background-color: #F8F8F2;
	border-radius: 7.5rem 0 0 0;
	overflow: hidden;
	padding: 6.25rem 0 4.5625rem;
	position: relative;
}

.p-interview::before {
	background-image: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.2) 100%);
	border-radius: 7.5rem 0 0 0;
	content: "";
	height: calc(100% - 6.375rem);
	left: 6.25rem;
	position: absolute;
	top: 6.375rem;
	width: 118%;
	z-index: 1;
}

.p-interview__bg-yellow-pc {
	height: 100%;
	position: absolute;
	right: -18.43%;
	top: 0;
	width: 47%;
	z-index: 0;
}

.p-interview__bg-yellow-sp {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 29.6%;
	z-index: 0;
}

.p-interview__header {
	position: relative;
	text-align: center;
	z-index: 1;
}

.p-interview__list {
	grid-gap: 2rem;
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 3.125rem;
	position: relative;
	z-index: 1;
}

.p-interview__item {
	position: relative;
}

.p-interview__item a {
	transition: opacity 0.3s;
}

.p-interview__item a:hover {
	opacity: 0.7;
}

.p-interview__link {
	-webkit-text-decoration: none;
	display: block;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.p-interview__link:hover {
	transform: translateY(-0.25rem);
}

.p-interview__image img {
	-o-object-fit: cover;
	aspect-ratio: 25/19;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-interview__content {
	margin-top: 0.8125rem;
}

.p-interview__label {
	background-color: #003087;
	border-radius: 6.25rem;
	color: #FFFFFF;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.8;
	padding: 0 0.75rem;
}

.p-interview__name {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.375rem;
}

.p-interview__decoration-right {
	height: 10rem;
	position: absolute;
	right: 1.25rem;
	top: 0.25rem;
	width: 15.0625rem;
	z-index: 3;
}

.p-interview__more {
	margin-top: 2.75rem;
	position: relative;
	z-index: 1;
}

.p-mv {
	background-color: #F5F5F0;
	background-image: url(../images/common/mv-img.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 44.375rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-mv__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 44.375rem;
	padding-top: 15.625rem;
	position: relative;
}

.p-mv__slider {
	backface-visibility: hidden;
	left: 0;
	overflow: hidden;
	position: absolute;
	transform: translateZ(0);
	width: 100%;
}

.p-mv__slider--top {
	top: 0;
}

.p-mv__slider--bottom {
	bottom: 5.3125rem;
}

.p-mv__slider-inner {
	overflow: hidden;
	width: 100%;
	will-change: transform;
}

.p-mv__slide-track {
	align-items: center;
	display: flex;
	gap: 2.5rem;
	transform: translateZ(0);
	width: -moz-max-content;
	width: max-content;
	will-change: transform;
}

.p-mv__slider--top .p-mv__slide-track {
	animation: scrollLeft 40s linear infinite;
	transition: animation-duration 0.5s ease-in-out;
}

.p-mv__slider--bottom .p-mv__slide-track {
	animation: scrollRight 40s linear infinite;
	transition: animation-duration 0.5s ease-in-out;
}

.p-mv__slide {
	flex-shrink: 0;
	width: 10.875rem;
}

.p-mv__slide:nth-child(1),
.p-mv__slide:nth-child(9) {
	width: 10.875rem;
}

.p-mv__slide:nth-child(1) img,
.p-mv__slide:nth-child(9) img {
	-o-object-fit: contain;
	aspect-ratio: 174/207;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(2),
.p-mv__slide:nth-child(10) {
	width: 12.0625rem;
}

.p-mv__slide:nth-child(2) img,
.p-mv__slide:nth-child(10) img {
	-o-object-fit: contain;
	aspect-ratio: 193/216;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(3),
.p-mv__slide:nth-child(11) {
	width: 10.875rem;
}

.p-mv__slide:nth-child(3) img,
.p-mv__slide:nth-child(11) img {
	-o-object-fit: contain;
	aspect-ratio: 174/204;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(4),
.p-mv__slide:nth-child(12) {
	width: 12rem;
}

.p-mv__slide:nth-child(4) img,
.p-mv__slide:nth-child(12) img {
	-o-object-fit: contain;
	aspect-ratio: 192/221;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(5),
.p-mv__slide:nth-child(13) {
	width: 10.875rem;
}

.p-mv__slide:nth-child(5) img,
.p-mv__slide:nth-child(13) img {
	-o-object-fit: contain;
	aspect-ratio: 174/207;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(6),
.p-mv__slide:nth-child(14) {
	width: 12rem;
}

.p-mv__slide:nth-child(6) img,
.p-mv__slide:nth-child(14) img {
	-o-object-fit: contain;
	aspect-ratio: 192/221;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(7),
.p-mv__slide:nth-child(15) {
	width: 10.9375rem;
}

.p-mv__slide:nth-child(7) img,
.p-mv__slide:nth-child(15) img {
	-o-object-fit: contain;
	aspect-ratio: 175/204;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__slide:nth-child(8),
.p-mv__slide:nth-child(16) {
	width: 12rem;
}

.p-mv__slide:nth-child(8) img,
.p-mv__slide:nth-child(16) img {
	-o-object-fit: contain;
	aspect-ratio: 192/223;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-mv__content {
	padding: 0 1.25rem;
	position: relative;
	text-align: center;
	z-index: 10;
}

.p-mv__title {
	color: #333333;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
}

.p-mv__title-accent {
	color: #F1C400;
	font-size: 3.25rem;
	font-weight: 700;
}

.p-mv__text {
	color: #333333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.75rem;
}

.p-mv__scroll {
	align-items: center;
	bottom: 1.4375rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.p-mv__scroll-text {
	color: #333333;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
}

.p-mv__scroll-circle {
	background-color: #F1C400;
	border-radius: 50%;
	height: 0.5rem;
	overflow: hidden;
	position: relative;
	width: 0.5rem;
}

.p-mv__fixed-btn {
	height: 10.5625rem;
	position: fixed;
	right: 0;
	top: 12.5rem;
	width: 3.5rem;
	z-index: 2000;
}

.p-mv__fixed-btn a {
	background-image: url(../images/common/fixed-btn.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 100%;
	transition: background-image 0.3s ease-in-out;
	width: 100%;
}

.is-touch .p-mv__fixed-btn a:hover {
	background-image: url(../images/common/fixed-btn-sp.png) !important;
}

.p-news {
	padding: 5.5rem 0;
}

.p-news__grid {
	grid-gap: 5rem;
	align-items: flex-start;
	display: grid;
	gap: 5rem;
	grid-template-columns: 1fr 1fr;
}

.p-news__facebook {
	max-width: 31.25rem;
	width: 100%;
}

.p-news__facebook-wrapper {
	height: 49.1875rem;
	position: relative;
	width: 100%;
}

.p-news__facebook-wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-news__right {
	display: flex;
	flex-direction: column;
	max-width: 31.9375rem;
	width: 100%;
}

.p-news__banner-wrapper {
	position: relative;
}

.p-news__banner {
	background-color: #FFFFFF;
}

.p-news__banner-slider {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-news__banner-track {
	display: flex;
	transition: transform 0.5s ease;
}

.p-news__banner-slide {
	grid-gap: 1.0625rem;
	display: grid;
	flex: 0 0 100%;
	gap: 1.0625rem;
	grid-template-columns: 1fr 1fr;
}

.p-news__banner-item {
	/*aspect-ratio: 247/152;*/
	aspect-ratio: 404/304;
	background-color: #D0D0D0;
	overflow: hidden;
}

.p-news__banner-item a {
	display: block;
	height: 100%;
	transition: opacity 0.3s;
	width: 100%;
}

.p-news__banner-item a:hover {
	opacity: 0.7;
}

.p-news__banner-item img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-news__banner-buttons {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 1rem;
}

.p-news__banner-button {
	background-color: #F1C400;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	height: 2.5rem;
	transition: all 0.3s ease;
	width: 2.5rem;
}

.p-news__banner-button:hover {
	background-color: #D0D0D0;
}

.p-news__banner-button:disabled {
	background-color: #E5E3D9;
	cursor: not-allowed;
}

.p-news__banner-button span {
	display: block;
	height: 1rem;
	margin: 0 auto;
	position: relative;
	width: 1rem;
}

.p-news__banner-button--prev span::before,
.p-news__banner-button--prev span::after {
	background-color: #FFFFFF;
	border-radius: 1.875rem;
	content: "";
	height: 0.125rem;
	left: 50%;
	position: absolute;
	width: 0.5rem;
}

.p-news__banner-button--prev span::before {
	top: 35%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-news__banner-button--prev span::after {
	top: 66%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-news__banner-button--next span::before,
.p-news__banner-button--next span::after {
	background-color: #FFFFFF;
	content: "";
	height: 0.125rem;
	left: 50%;
	position: absolute;
	width: 0.5rem;
}

.p-news__banner-button--next span::before {
	top: 35%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-news__banner-button--next span::after {
	top: 66%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-news__list {
	background-color: #FFFFFF;
	border-radius: 0.5rem;
	margin-top: 1.9375rem;
}

.p-news__header {
	padding-left: 2.5rem;
	position: relative;
}

.p-news__header::before {
	background-color: #003087;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 1.1875rem;
	width: 2rem;
}

.p-news__title {
	z-index: 1;
}

.p-news__title-ja {
	color: #003087;
	font-size: 1.5625rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-news__title-en {
	color: #BCBCBC;
	font-size: 0.8125rem;
	font-weight: 500;
	margin-top: 0.5rem;
	text-transform: uppercase;
}

.p-news__items {
	margin-top: 2rem;
}

.p-news__item {
	border-bottom: 1px solid #E0E0E0;
}

.p-news__item a {
	-webkit-text-decoration: none;
	display: block;
	padding-bottom: 1.3125rem;
	padding-left: 0.625rem;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease;
	transition: opacity 0.3s;
}

.p-news__item a::after {
	background-image: url(../images/common/arrow-right-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1rem;
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5625rem;
}

.p-news__item + .p-news__item {
	margin-top: 1.5rem;
}

.p-news__item a:hover {
	opacity: 0.7;
}

.p-news__date {
	color: #818181;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
}

.p-news__text {
	color: #333333;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	margin-top: 0.1875rem;
	padding-right: 1.25rem;
}

.p-news__more {
	margin-top: 1.5rem;
	text-align: right;
}

.p-news__more a {
	-webkit-text-decoration: none;
	align-items: center;
	border-bottom: 1px solid #707070;
	color: #333333;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 500;
	gap: 2rem;
	padding-bottom: 0.375rem;
	text-decoration: none;
	transition: opacity 0.3s ease;
	transition: color 0.3s, border-bottom 0.3s;
}

.p-news__more a:hover {
	border-bottom: 1px solid #003087;
	color: #003087;
}

.p-news__more a::after {
	-webkit-mask-image: url(../images/common/icon-arrow-right.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background: #333333;
	content: "";
	height: 1rem;
	mask-image: url(../images/common/icon-arrow-right.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background 0.3s;
	width: 0.5625rem;
}

.p-news__more a:hover::after {
	background: #003087;
}

.p-news__more-arrow {
	height: 1rem;
	position: relative;
	width: 1rem;
}

.p-news__more-arrow::before {
	border-right: 0.125rem solid #333333;
	border-top: 0.125rem solid #333333;
	content: "";
	height: 0.375rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.375rem;
}

.p-news__facebook-embed {
	height: 100%;
	width: 100%;
}

.p-report {
	background-color: #fff;
	padding: 4.5rem 0;
}

.p-report__inner {
	position: relative;
}

.p-report__title {
	padding-left: 4rem;
	position: relative;
}

.p-report__title::before {
	background-color: #003087;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 1.6875rem;
	width: 3.5rem;
}

.p-report__title-ja {
	color: #003087;
	display: block;
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.4;
}

.p-report__title-en {
	color: #BCBCBC;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.25rem;
}

.p-report__slider {
	margin-top: 2.5rem;
	overflow: hidden;
}

.p-report__slider-wrapper {
	margin: 0 -1.25rem;
	overflow: hidden;
	padding: 0 1.25rem;
}

.p-report__cards {
	display: flex;
	gap: 0.75rem;
	transition: transform 0.5s ease;
}

.p-report__card {
	flex: 0 0 10.8125rem;
	list-style: none;
	transition: opacity 0.3s;
}

.p-report__card a:hover {
	opacity: 0.7;
}

.p-report__card-image {
	background-color: #E8F0FE;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-report__card-image img {
	-o-object-fit: cover;
	aspect-ratio: 172/120;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-report__card-content {
	margin-top: 0.625rem;
}

.p-report__card-label span {
	background-color: #F5C500;
	border-radius: 1.25rem;
	color: #333333;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	padding: 0.3125rem 0.75rem;
}

.p-report__card-text {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 0.5rem;
}

.p-report__button {
	background-color: #F1C400;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	height: 2.5rem;
	position: absolute;
	top: 2.3125rem;
	transition: background-color 0.3s ease, opacity 0.3s ease;
	width: 2.5rem;
	z-index: 10;
}

.p-report__button:hover {
	background-color: #F1C400;
}

.p-report__button:disabled {
	background-color: #E5E3D9;
	cursor: not-allowed;
}

.p-report__button--prev {
	right: 5.0625rem;
}

.p-report__button--next {
	right: 1.5625rem;
}

.p-report__button span {
	display: block;
	height: 1.5rem;
	margin: 0 auto;
	position: relative;
	width: 1.5rem;
}

.p-report__button span::before,
.p-report__button span::after {
	background-color: #FFFFFF;
	border-radius: 6.25rem;
	content: "";
	height: 0.125rem;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 0.75rem;
}

.p-report__button--prev span::before {
	transform: translate(-50%, -50%) rotate(-45deg);
	transform-origin: left center;
}

.p-report__button--prev span::after {
	transform: translate(-50%, -100%) rotate(45deg);
	transform-origin: left center;
}

.p-report__button--next span::before {
	transform: translate(-50%, -50%) rotate(45deg);
	transform-origin: right center;
}

.p-report__button--next span::after {
	transform: translate(-50%, -100%) rotate(-45deg);
	transform-origin: right center;
}

.p-report__more {
	margin-top: 2.5rem;
	text-align: center;
}

.p-title {
	display: inline-block;
	position: relative;
}

.p-title::before {
	background-color: #003087;
	bottom: 5.625rem;
	content: "";
	height: 3.5rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 1px;
}

.p-title__bg {
	color: #F8F8F2;
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 0.68;
	text-transform: uppercase;
}

.p-title__ja {
	color: #003087;
	display: block;
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: -2.8125rem;
}

.p-title__en {
	color: #BCBCBC;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.25rem;
	text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {

.p-mv__fixed-btn a:hover {
	background-image: url(../images/common/fixed-btn-hover.png);
}

}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {

.p-mv__fixed-btn a:hover {
	background-image: url(../images/common/fixed-btn-hover.png);
}

}

@media screen and (max-width: 1161px) {

.p-header__logo-text-sub {
	font-size: 1.25rem;
}

.p-header__nav-list {
	gap: 1rem;
}

}

@media (max-width: 1100px) {

html {
	font-size: 1.4545454545vw;
}

}

@media (max-width: 768px) {

main {
	margin-top: 3.75rem;
}

}

@media screen and (max-width: 767px) {

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 16px;
}

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

.l-inner {
	max-width: 37.5rem;
	padding-left: 16px;
	padding-right: 16px;
}

.l-lower-inner {
	max-width: 37.5rem;
	padding-left: 16px;
	padding-right: 16px;
}

.l-page-top {
	bottom: 5rem;
	right: 1.25rem;
}

.c-btn {
	font-size: 0.9375rem;
}

.c-btn {
	max-width: 11.625rem;
	padding: 0.9375rem 1.875rem;
}

.c-btn::before {
	height: 1.25rem;
	right: 1.25rem;
	width: 1.875rem;
}

.c-btn span {
	right: 1.8125rem;
}

.c-btn--dark {
	font-size: 0.9375rem;
	max-width: 10.6875rem;
	padding: 0.9375rem 1.875rem;
}

.c-breadcrumb {
	padding: 0.75rem 0;
}

.c-breadcrumb__list {
	margin-left: 0;
}

.p-article {
	padding-bottom: 3.5rem;
}

.p-article__inner {
	padding: 0;
}

.p-article__container {
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.p-article__main {
	padding: 2.5rem 1rem 3.5rem;
}

.c-page-title {
	font-size: 1.75rem;
	padding-bottom: 0.875rem;
}

.c-page-title::before {
	left: calc(50% + 0.625rem);
	width: 1.25rem;
}

.c-page-title::after {
	left: calc(50% - 0.625rem);
	width: 1.25rem;
}

.c-heading2 {
	font-size: 1.25rem;
	padding: 0.75rem 1rem;
}

.c-heading3 {
	font-size: 1.3125rem;
	margin-top: 2rem;
	padding-left: 1.75rem;
}

.c-heading4 {
	margin-top: 1.5rem;
}

.p-article__text {
	margin-top: 1.5rem;
}

.p-article__text-image {
	flex-direction: column;
	gap: 1rem;
}

.p-article__text-image__text {
	max-width: 100%;
}

.p-article__text-image__image {
	max-width: 100%;
}

.p-article__image-flex {
	flex-direction: column;
	gap: 1.5rem;
}

.p-article__image-flex__item {
	width: 100%;
}

.p-list {
	margin-top: 2.5rem;
}

.p-definition {
	margin-top: 2.5rem;
}

.p-definition__row {
	display: block;
}

.p-definition__title {
	border: none;
	display: block;
	padding: 1.25rem 0.625rem;
}

.p-definition__text {
	display: block;
	padding: 1.75rem 0.625rem;
}

.p-article__button-wrapper {
	margin-top: 3rem;
}

.p-article__download {
	margin-top: 2.5rem;
}

.p-download__link {
	font-size: 0.875rem;
	padding: 0.875rem 1.5rem;
}

.p-download__icon {
	height: 1.125rem;
	width: 1.125rem;
}

.p-article__map {
	margin-top: 2.5rem;
}

.p-map__title {
	font-size: 1.125rem;
}

.p-map__image {
	margin-top: 1rem;
}

.p-article__sidebar {
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-sidebar-banner-wrapper {
	display: flex;
	gap: 0.9375rem;
}

.p-sidebar-banner {
	width: calc(50% - 0.46875rem);
}

.p-sidebar-banner + .p-sidebar-banner {
	margin-top: 0;
}

.p-sidebar-menu {
	margin-top: 2rem;
}

.p-banner-list {
	padding: 3.5rem 0 4.5rem;
}

.p-banner-list__grid {
	gap: 0.75rem;
	grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
}

.p-banner {
	padding: 3.5rem 0 4.6875rem;
}

.p-banner__grid {
	gap: 1rem;
	grid-template-columns: 1fr;
}

.p-banner__item.p-banner__item--organization a::after,
.p-banner__item.p-banner__item--clubs a::after {
	right: 0.6875rem;
}

.p-banner__item.p-banner__item--about a,
.p-banner__item.p-banner__item--profile a {
	min-height: 8.75rem;
}

.p-banner__item.p-banner__item--about a,
.p-banner__item.p-banner__item--profile a {
	padding: 0.8125rem 0.9375rem;
}

.p-banner__item.p-banner__item--profile a .p-banner__image {
	height: calc(100% + 0.625rem);
	right: -1.25rem;
	top: -0.625rem;
	width: 50.14%;
}

.p-banner__item.p-banner__item--about a .p-banner__content,
.p-banner__item.p-banner__item--profile a .p-banner__content {
	z-index: 2;
}

.p-banner__item.p-banner__item--organization a,
.p-banner__item.p-banner__item--clubs a {
	border-radius: 0.3125rem;
	padding: 0.625rem 1.5rem;
}

.p-banner__item.p-banner__item--organization a .p-banner__icon,
.p-banner__item.p-banner__item--clubs a .p-banner__icon {
	height: 3rem;
	margin-right: 0.75rem;
	width: 3rem;
}

.p-banner__label {
	font-size: 0.75rem;
}

.p-banner__label--yellow {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
}

.p-banner__label--blue {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
}

.p-banner__title {
	font-size: 1.125rem;
}

.p-banner__item.p-banner__item--about .p-banner__title,
.p-banner__item.p-banner__item--profile .p-banner__title {
	padding: 0.5rem 0.75rem;
}

.p-banner__bg-text {
	font-size: 2.5rem;
	left: 0.8125rem;
	line-height: 1.45;
	top: 0.4375rem;
}

.p-banner__bg-logo {
	height: 7.8125rem;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 38.48%;
}

.p-banner__item--organization::before,
.p-banner__item--clubs::before {
	width: 0.5rem;
}

.p-banner__item--organization::after,
.p-banner__item--clubs::after {
	width: 0.5rem;
}

.p-banner__decoration-left {
	display: none;
}

.p-contact {
	padding: 4.375rem 0 3rem;
}

.p-contact__container {
	border-radius: 1rem;
	padding: 3.125rem 1.5rem 2.0625rem;
}

.p-contact__content {
	margin-top: 1.8125rem;
}

.p-contact__grid {
	flex-direction: column;
	gap: 1.25rem;
}

.p-contact__item-title {
	font-size: 1.125rem;
}

.p-contact__phone-box {
	margin-top: 1.125rem;
	padding-bottom: 1.125rem;
}

.p-contact__phone-link {
	gap: 0.75rem;
}

.p-contact__phone-hours {
	margin-top: 0;
}

.p-contact__mail-box {
	margin-top: 2rem;
	padding-bottom: 2.125rem;
}

.p-contact__mail-box a {
	gap: 0.75rem;
	max-width: 16.25rem;
	padding: 0.75rem 1.0625rem;
}

.p-contact__mail-box a::after {
	right: 1.25rem;
}

.p-faq {
	border-radius: 3.75rem 3.75rem 0 0;
	padding: 3.5rem 0;
}

.p-faq__title {
	padding-left: 3.375rem;
}

.p-faq__title::before {
	top: 1.375rem;
	width: 3rem;
}

.p-faq__title-ja {
	font-size: 1.875rem;
}

.p-faq__title-en {
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.p-faq__content {
	margin-top: 2rem;
}

.p-faq__item + .p-faq__item {
	margin-top: 1rem;
}

.p-faq__question {
	padding-bottom: 0.375rem;
	padding-left: 0.625rem;
	padding-right: 0.8125rem;
	padding-top: 0.3125rem;
}

.p-faq__question-label {
	font-size: 1.375rem;
	padding-bottom: 1.125rem;
	padding-right: 0.5625rem;
	padding-top: 1.1875rem;
}

.p-faq__question-text {
	font-size: 1rem;
	padding-bottom: 0;
	padding-left: 0.75rem;
	padding-right: 0;
	padding-top: 0.3125rem;
}

.p-faq__icon {
	height: 1.25rem;
	width: 1.25rem;
}

.p-faq__icon::before {
	width: 1.25rem;
}

.p-faq__icon::after {
	height: 1.25rem;
}

.p-faq__answer-inner {
	padding: 0.75rem 1.5rem 1.25rem;
}

.p-faq__answer-text {
	font-size: 1rem;
	line-height: 1.7;
}

.p-faq__more {
	margin-top: 2.0625rem;
}

.p-faq__more-link {
	font-size: 0.875rem;
	padding: 1rem 3rem;
}

.p-faq__more-arrow {
	height: 0.75rem;
	margin-left: 1rem;
	width: 1.25rem;
}

.p-faq__more-arrow::before {
	width: 1rem;
}

.p-faq__more-arrow::after {
	height: 0.375rem;
	width: 0.375rem;
}

.p-footer {
	padding: 2.5rem 0 4.6875rem;
}

.p-footer__content {
	flex-direction: column;
	gap: 2.5rem;
	justify-content: center;
}

.p-footer__left {
	align-items: center;
	flex-direction: column;
	gap: 0.625rem;
}

.p-footer__logo {
	text-align: center;
}

.p-footer__logo img {
	width: 4.625rem;
}

.p-footer__info {
	text-align: center;
}

.p-footer__title {
	font-size: 1.125rem;
	line-height: 1.5555555556;
}

.p-footer__address {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.p-footer__right {
	display: none;
}

.p-footer__nav {
	width: 100%;
}

.p-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	justify-content: center;
}

.p-footer__nav-item::before {
	height: 0.3125rem;
	left: -0.75rem;
	width: 0.3125rem;
}

.p-footer__nav-item a {
	font-size: 0.75rem;
}

.p-footer__bottom {
	margin-top: 2.8125rem;
	padding-top: 0.8125rem;
}

.p-footer__copyright {
	font-size: 0.75rem;
}

.p-header__inner {
	height: 3.75rem;
	justify-content: space-between;
	padding: 0 0 0 1rem;
}

.p-header__logo a {
	gap: 0.75rem;
}

.p-header__logo img {
	height: 2.625rem;
	width: 2.3125rem;
}

.p-header__logo-text-main {
	font-size: 0.6875rem;
}

.p-header__logo-text-sub {
	font-size: 1.0625rem;
}

.p-header__nav {
	display: none;
}

.p-header__center {
	display: none;
}

.p-header__member-btn {
	display: none;
}

.p-header__hamburger {
	display: flex;
}

.p-info {
	padding: 2.5rem 0;
}

.p-info::before {
	font-size: 3.0625rem;
}

.p-info__inner {
	flex-direction: column;
	gap: 1rem;
}

.p-info__rate {
	width: 100%;
}

.p-info__links {
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.p-info__link {
	min-height: 5rem;
	padding: 1.25rem 1.25rem 1.1875rem;
}

.p-info__link::after {
	right: 1.0625rem;
}

.p-info__link-icon {
	height: 2.5rem;
	width: 2.5rem;
}

.p-info__link-text {
	font-size: 1.125rem;
	line-height: 1.4;
}

.p-info__link-arrow {
	height: 1.25rem;
	width: 1.25rem;
}

.p-info__link-arrow::before {
	width: 0.875rem;
}

.p-info__link-arrow::after {
	height: 0.375rem;
	width: 0.375rem;
}

.p-interview {
	border-radius: 3.75rem 0 0 0;
	padding: 5rem 0 3.5rem;
}

.p-interview::before {
	border-radius: 3.75rem 0 0 0;
	height: 100%;
	left: 1rem;
	top: 5rem;
	width: calc(100% - 1rem);
}

.p-interview__list {
	gap: 1.1875rem;
	grid-template-columns: 1fr;
	margin-top: 1.8125rem;
	padding: 0 1.25rem;
}

.p-interview__image {
	border-radius: 0.5rem;
}

.p-interview__image img {
	aspect-ratio: 300/228;
}

.p-interview__name {
	margin-top: 0.5625rem;
}

.p-interview__decoration-right {
	display: none;
}

.p-interview__more {
	margin-top: 2rem;
}

.p-mv {
	background-image: url(../images/common/mv-sp-img.png);
	min-height: 38.375rem;
}

.p-mv__inner {
	height: 38.375rem;
	padding-top: 12.25rem;
}

.p-mv__slider {
	width: 100%;
}

.p-mv__slider--bottom {
	bottom: 3.5625rem;
}

.p-mv__slider-inner {
	gap: 1.25rem;
}

.p-mv__slide-track {
	gap: 1.25rem;
}

.p-mv__slider--top .p-mv__slide-track {
	animation: scrollLeft-sp 40s linear infinite;
}

.p-mv__slider--bottom .p-mv__slide-track {
	animation: scrollRight-sp 40s linear infinite;
}

.p-mv__slide {
	width: 9.0625rem;
}

.p-mv__slide:nth-child(1),
.p-mv__slide:nth-child(9) {
	width: 9.0625rem;
}

.p-mv__slide:nth-child(2),
.p-mv__slide:nth-child(10) {
	width: 10.0625rem;
}

.p-mv__slide:nth-child(3),
.p-mv__slide:nth-child(11) {
	width: 9.0625rem;
}

.p-mv__slide:nth-child(4),
.p-mv__slide:nth-child(12) {
	width: 10rem;
}

.p-mv__slide:nth-child(5),
.p-mv__slide:nth-child(13) {
	width: 9.0625rem;
}

.p-mv__slide:nth-child(6),
.p-mv__slide:nth-child(14) {
	width: 10rem;
}

.p-mv__slide:nth-child(7),
.p-mv__slide:nth-child(15) {
	width: 9.125rem;
}

.p-mv__slide:nth-child(8),
.p-mv__slide:nth-child(16) {
	width: 10rem;
}

.p-mv__title {
	font-size: 2.125rem;
	letter-spacing: 0.04em;
	line-height: 1.2352941176;
}

.p-mv__title-accent {
	font-size: 2.125rem;
}

.p-mv__text {
	font-size: 0.875rem;
	line-height: 1.8;
}

.p-mv__scroll {
	bottom: 0.3125rem;
	gap: 0.625rem;
}

.p-mv__fixed-btn {
	bottom: 0;
	height: 14.93vw;
	top: auto;
	width: 100%;
}

.p-mv__fixed-btn a {
	background-image: url(../images/common/fixed-btn-sp.png);
}

.p-news {
	padding: 3.75rem 0 3.4375rem;
}

.p-news__grid {
	gap: 2.125rem;
	grid-template-columns: 1fr;
}

.p-news__facebook-wrapper {
	height: 25.25rem;
	text-align: center;
}

.p-news__banner-slide {
	gap: 0.75rem;
}

.p-news__banner-buttons {
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.p-news__banner-button {
	height: 2rem;
	width: 2rem;
}

.p-news__banner-button span {
	height: 0.875rem;
	width: 0.875rem;
}

.p-news__banner-button--prev span::before,
.p-news__banner-button--prev span::after {
	width: 0.4375rem;
}

.p-news__banner-button--next span::before,
.p-news__banner-button--next span::after {
	width: 0.4375rem;
}

.p-news__list {
	margin-top: 2rem;
}

.p-news__header::before {
	top: 1.0625rem;
	width: 2rem;
}

.p-news__title {
	gap: 0.75rem;
}

.p-news__title-en {
	font-size: 0.8125rem;
	margin-top: 0.3125rem;
}

.p-news__items {
	margin-top: 0;
}

.p-news__item a {
	padding: 1.5rem 0.6875rem 1.4375rem;
}

.p-news__item + .p-news__item {
	margin-top: 0;
}

.p-news__more {
	margin-top: 0.9375rem;
}

.p-report {
	padding: 3rem 0 3.5rem;
}

.p-report__title {
	padding-left: 3.375rem;
}

.p-report__title::before {
	top: 1.3125rem;
	width: 3rem;
}

.p-report__title-ja {
	font-size: 1.875rem;
}

.p-report__title-en {
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.p-report__slider {
	margin-top: 1.9375rem;
}

.p-report__slider-wrapper {
	margin: 0 -1.25rem;
	padding: 0 1.25rem;
}

.p-report__cards {
	gap: 1rem;
}

.p-report__card {
	flex: 0 0 10.8125rem;
}

.p-report__card-content {
	margin-top: 0.5rem;
}

.p-report__card-label span {
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
}

.p-report__card-text {
	margin-top: 0.625rem;
}

.p-report__button {
	height: 2rem;
	width: 2rem;
}

.p-report__button--prev {
	right: 3.75rem;
}

.p-report__button--next {
	right: 1rem;
}

.p-report__button span {
	height: 1.25rem;
	width: 1.25rem;
}

.p-report__button span::before,
.p-report__button span::after {
	width: 0.5rem;
}

.p-report__more {
	margin-top: 1.8125rem;
}

.p-title::before {
	bottom: 4.6875rem;
	height: 3rem;
}

.p-title__bg {
	font-size: 3.25rem;
}

.p-title__ja {
	font-size: 1.875rem;
	margin-top: -1.125rem;
}

.p-title__en {
	font-size: 0.875rem;
	margin-top: 0.3125rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes transformLeftRight {

0% {
	transform: translate(-100%, -50%);
}

100% {
	transform: translate(0, -50%);
}

}

@keyframes transformRightLeft {

0% {
	transform: translate(0, -50%);
}

100% {
	transform: translate(100%, -50%);
}

}

@keyframes scrollLeft {

0% {
	transform: translate3d(0, 0, 0);
}

99.999% {
	transform: translate3d(-50.55%, 0, 0);
}

100% {
	transform: translate3d(-50.55%, 0, 0);
}

}

@keyframes scrollLeft-sp {

0% {
	transform: translate3d(0, 0, 0);
}

99.999% {
	transform: translate3d(-50.4%, 0, 0);
}

100% {
	transform: translate3d(-50.4%, 0, 0);
}

}

@keyframes scrollRight {

0% {
	transform: translate3d(-50.55%, 0, 0);
}

99.999% {
	transform: translate3d(0, 0, 0);
}

100% {
	transform: translate3d(0, 0, 0);
}

}

@keyframes scrollRight-sp {

0% {
	transform: translate3d(-50.4%, 0, 0);
}

99.999% {
	transform: translate3d(0, 0, 0);
}

100% {
	transform: translate3d(0, 0, 0);
}

}

@keyframes scrollIndicator {

0% {
	transform: translateY(-100%);
}

100% {
	transform: translateY(100%);
}

}


/*# sourceMappingURL=style.css.map */
