@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 2;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q,
blockquote {
	quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
	content: "";
	content: none;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

a img {
	border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
	word-break: break-word;
}

html,
body {
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	font-size: 10px;
}

a {
	display: inline-block;
	color: black;
	cursor: pointer;
	font-size: 100%;
	color: inherit;
	font-weight: inherit;
}

a,
a:hover {
	text-decoration: none;
}

button {
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
}

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

.italic {
	font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	letter-spacing: 0;
}

/*
p, dt, dd {
  overflow-wrap: break-word;
}
*/
body {
	margin: auto;
}

small {
	font-size: 70%;
	color: grey;
}

/*--------------------------responsive ---------------------*/
.clearfix::before,
.clearfix::after {
	display: block;
	content: "";
	clear: both;
}

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

.pci {
	display: inline-block !important;
}

.spi {
	display: none !important;
}

.pcf {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.spf {
	display: none !important;
}

@media screen and (max-width: 767px) {
	.sp {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	.pci {
		display: none !important;
	}
	.spi {
		display: inline-block !important;
	}
	.pcf {
		display: none !important;
	}
	.spf {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		font-size: 100%;
		pointer-events: none;
		text-decoration: none;
		cursor: default;
		color: inherit;
	}
}
.opacity {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
}
.opacity:hover {
	opacity: 0.8;
}

/*--------------------------------------------------------------------------*/
/* Common
---------------------------------------------------------------------------------*/
body {
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
}

p,
label,
div,
strong,
input {
	display: block;
}

main {
	position: relative;
}

@media screen and (max-width: 1600px) {
	html,
	body {
		font-size: 0.625vw !important;
	}
}
@media screen and (max-width: 767px) {
	html,
	body {
		font-size: 2.5641025641vw !important;
	}
}
:root {
	--font-en: "Funnel Display", "Noto Sans JP", sans-serif;
}

/*--------------------------------------------------------------------------*/
/* content
---------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	body.is-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
	}
}

/* header start */

.header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	.header__inner {
		align-items: flex-start;
	}
}

.header__logo {
	width: clamp(14.5rem, calc(100vw * 350 / 1280), 35rem);
	display: grid;
	place-items: center;
	height: auto;
	aspect-ratio: 35/12;
	border-radius: 0 0 clamp(2rem, calc(100vw * 40 / 1280), 4rem) 0;
	background: #fff;
}

.header__logo-link {
	width: clamp(10rem, calc(100vw * 220 / 1280), 22rem);
}
/* .header__logo-image {
} */

.header__nav {
	display: flex;
	align-items: center;
	border-radius: 9999px;
	margin-right: 9rem;
	padding: 2rem 7rem;
	gap: 5.5rem;
	background: #fff;
	box-shadow: 0px 0px 8px rgba(88, 88, 88, 0.16);
}
@media screen and (max-width: 767px) {
	.header__nav {
		display: none;
	}
}
.header__menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 4rem;
}

/* .header__menu-item {
} */

.header__menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: bold;
	font-size: 1.5rem;
}

.header__menu-link.is-disabled,
.header__drawer-link.is-disabled {
	color: #d1d1d1;
	pointer-events: none;
	cursor: default;
}

.header__menu-link.is-disabled::after {
	opacity: 0;
	transform: translateX(-50%) scaleX(0);
}

.header__menu-link::after {
	content: "";
	position: absolute;
	top: calc(100% + 1.6rem);
	left: 50%;
	width: 4.4rem;
	height: 0.4rem;
	background: #ff4281;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	opacity: 0;
	transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.header__menu-link.is-current::after {
	transform: translateX(-50%) scaleX(1);
	opacity: 1;
}

@media (any-hover: hover) {
	.header__menu-link:hover::after {
		transform: translateX(-50%) scaleX(1);
		opacity: 1;
	}
}

.header__sns {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 1.5rem;
}

.header__sns-link {
	width: 2.4rem;
}

.header__drawer-button {
	width: 3.8rem;
	height: auto;
	aspect-ratio: 1;
	background: #ff007d;
	position: relative;
	z-index: 150;
	border: none;
	cursor: pointer;
}
.header__drawer-line {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__drawer-line:nth-child(1) {
	transform: translate(-50%, calc(-50% - 0.5rem));
}

.header__drawer-line:nth-child(2) {
	transform: translate(-50%, -50%);
}

.header__drawer-line:nth-child(3) {
	transform: translate(-50%, calc(-50% + 0.5rem));
}

.header__drawer-button.is-open .header__drawer-line:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.header__drawer-button.is-open .header__drawer-line:nth-child(2) {
	opacity: 0;
}

.header__drawer-button.is-open .header__drawer-line:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header__drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.header__drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.3s ease;
}

.header__drawer-inner {
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 4rem 2rem;
	overflow: scroll;
	position: relative;
	z-index: 1;
}
.header__drawer-logo {
	width: 18rem;
	margin: 0 auto;
}
.header__drawer-nav {
	margin-top: 4.5rem;
}
.header__drawer-menu {
	display: grid;
	list-style: none;
	justify-items: center;
	gap: 2.5rem;
}

.header__drawer-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: bold;
	font-size: 2.2rem;
	text-align: center;
}

.header__drawer-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	border: 0;
	cursor: pointer;
}

.header__drawer-sns {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin-top: 6.5rem;
	gap: 2.5rem;
}

/* .header__drawer-sns-icon {
} */

.header__drawer-sns-link {
	width: 4.2rem;
}

/* header end */
/* footer start */

.footer {
	background: #f8f8f8;
}
@media screen and (max-width: 767px) {
	.footer {
		padding-top: 5rem;
	}
}

.footer__inner {
	--container-width: 140rem;
	padding: 5rem 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5rem 3.5rem;
}

@media screen and (max-width: 767px) {
	.inner.footer__inner {
		border-radius: 1rem;
		background: #fff;
		padding: 5rem 2rem;
		max-width: calc(100% - (2rem * 2));
		margin: 0 auto 5rem;
	}
}

.footer__contents {
	display: flex;
	align-items: center;
	border-radius: 1rem;
	background: #fff;
	padding: 3rem;
	gap: 1.5rem 3rem;
}
@media screen and (max-width: 767px) {
	.footer__contents {
		padding: 0;
		border-radius: 0;
		flex-direction: column;
		background: unset;
	}
}
.footer__logo {
	max-width: 25rem;
}
.footer__contact {
	display: flex;
	align-items: center;
}

.footer__contact-link {
	width: 18rem;
	height: 4.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.6rem;
	background: #c20814;
	transition: opacity 0.3s;
	font-weight: bold;
	font-size: 1.7rem;
	text-align: center;
	color: #fff;
}

.footer__contact-link:focus-visible {
	opacity: 0.8;
}

@media (any-hover: hover) {
	.footer__contact-link:hover {
		opacity: 0.8;
	}
}

.footer__tel {
	display: grid;
}

a.footer__tel-link {
	font-weight: bold;
	font-size: 3.4rem;
	color: #c20814;
}

.footer__tel-note {
	font-weight: bold;
	font-size: 1.3rem;
	text-align: left;
}
@media screen and (max-width: 767px) {
	.footer__tel-note {
		text-align: center;
	}
}

.footer__logo--sub {
	width: clamp(27.5rem, calc(100vw * 287 / 1280), 28.7rem);
}
.footer__copyright {
	background: #09abd0;
	padding: 3rem 2rem;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	text-align: center;
	color: #fff;
}

.footer__sns {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.footer__sns-link {
	width: 4.3rem;
}

/* .footer__sns-link--facebook {
}

.footer__sns-link--instagram {
} */

.footer__pagetop {
	position: fixed;
	display: none;
	bottom: 2rem;
	right: 2rem;
	z-index: 100;
}

.footer__pagetop-link {
	width: 3.5rem;
}

/* footer end */

/* component start */
.inner {
	width: 100%;
	max-width: calc(var(--container-width, 126rem) + calc(var(--padding-inline, 2rem) * 2));
	padding-inline: var(--padding-inline, 2rem);
	margin-inline: auto;
}
.title {
	display: grid;
	justify-items: center;
	color: #05a6cb;
	text-align: center;
	line-height: 1.5;
}

.title__ja {
	font-weight: normal;
	font-size: clamp(3rem, calc(100vw * 30 / 1280), 3rem);
	line-height: calc(36 / 28);
	font-weight: 900;
}

.title__en {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(2rem, calc(100vw * 22 / 1280), 2.2rem);
}
/* component end */

/* mv */
.mv {
	position: relative;
	max-height: 100dvh;
	padding-bottom: clamp(3rem, calc(100vw * 80 / 1280), 8rem);
}
@media screen and (max-width: 767px) {
	.mv {
		padding-top: 3.5rem;
	}
}

.mv__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #ffc3c1;
}

.mv__image {
	position: absolute;
	inset: 50% 0 0 0;
}
.mv__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv__logo {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	width: clamp(21.4rem, calc(100vw * 352 / 1280), 35.2rem);
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff;
	padding: clamp(1rem, calc(100vw * 20 / 1280), 2rem);
	display: grid;
	place-items: center;
}

.swiper.mv__swiper {
	--margin: 6rem;
	position: relative;
	padding-bottom: clamp(3rem, calc(100vw * 40 / 1280), 4rem);
	z-index: 1;
	margin: 0 var(--margin);
	max-width: calc(100% - (var(--margin) * 2));
}
@media screen and (max-width: 767px) {
	.swiper.mv__swiper {
		--margin: 2rem;
	}
}
.swiper-slide.swiper-slide {
	overflow: hidden;
	border-radius: 0 0 8rem 8rem;
}
@media screen and (max-width: 767px) {
	.swiper-slide.swiper-slide {
		border-radius: 3rem;
	}
}
.mv__slide.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transform-origin: center;
	transition: transform 12s linear;
	will-change: transform;
}

.mv__slide.swiper-slide.swiper-slide-active img {
	transform: scale(1.08);
}

.mv__pagination.swiper-pagination {
	position: absolute;
	bottom: 0;
	gap: 1rem;
}
.mv__pagination .swiper-pagination-bullet {
	width: 4rem;
	height: 0.6rem;
	background: #e5e5e5;
	opacity: 1;
	margin: 0;
	border-radius: 0;
}

.mv__pagination .swiper-pagination-bullet-active {
	background: #ff4281;
}

.mv__scroll {
	position: absolute;
	z-index: 2;
	inset: auto 2rem -2.5rem auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	.mv__scroll {
		inset: auto auto -12rem 2rem;
	}
}
.mv__scroll-line {
	width: 1px;
	height: clamp(13rem, calc(100vw * 300 / 1280), 30rem);
	background: #d8d8d8;
	overflow: hidden;
	position: relative;
}

.mv__scroll-line::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #ff007d;
	transform: translateY(-5rem);
	animation: mv-scroll-line 2s ease-in-out infinite;
}

@keyframes mv-scroll-line {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.mv__scroll-text {
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	text-transform: capitalize;
	color: #fff;
	writing-mode: vertical-rl;
}
/* mv end */

/* about start */
.about {
	padding-top: clamp(2rem, calc(100vw * 40 / 1280), 4rem);
	padding-bottom: 8rem;
}

/* .about__inner {
} */

.about__title {
	margin-top: 5.5rem;
}

.about__name {
	font-family: var(--font-en);
	font-weight: 700;
	font-size: clamp(3.2rem, calc(100vw * 34 / 1280), 3.4rem);
	line-height: calc(40 / 32);
	text-align: center;
	color: #000;
}

.about__date {
	font-weight: 700;
	font-size: clamp(1.6rem, calc(100vw * 25 / 1280), 2.5rem);
	line-height: 3;
	text-align: center;
	color: #c20814;

	b {
		font-weight: 900;
		font-size: 3.2rem;
	}
	strong {
		display: inline;
		font-weight: 900;
		font-size: clamp(5rem, calc(100vw * 77 / 1280), 7.7rem);
		line-height: 1;
	}
	span {
		display: inline;
		margin-inline: -0.6em;
	}
}

.about__fee {
	font-weight: 700;
	font-size: clamp(2.4rem, calc(100vw * 26 / 1280), 2.6rem);
	text-align: center;
	color: #c20814;
}

.about__note {
	font-weight: 700;
	margin-top: 0.5rem;
	font-size: 1.7rem;
	text-align: center;
}

.about__text {
	font-weight: 700;
	margin-top: 3rem;
	font-size: clamp(1.5rem, calc(100vw * 16 / 1280), 1.6rem);
	line-height: 2.25;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 767px) {
	.about__text {
		text-align: left;
	}
}

/* about end */

/* entry start */

.entry {
	position: relative;
	padding-top: clamp(4.5rem, calc(100vw * 80 / 1280), 8rem);
}
.entry::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: clamp(4rem, calc(100vw * 80 / 1280), 8rem) clamp(4rem, calc(100vw * 80 / 1280), 8rem) 0 0;
	background: #fff200;
	z-index: -1;
}

.entry__title .title__ja {
	font-size: clamp(2.4rem, calc(100vw * 30 / 1280), 3rem);
	color: #000;
}
.entry__lead {
	margin-top: clamp(2rem, calc(100vw * 25 / 1280), 2.5rem);
	font-weight: bold;
	font-size: clamp(1.5rem, calc(100vw * 17 / 1280), 1.7rem);
	line-height: calc(36 / 17);
	text-align: center;
}
.entry__list {
	margin-top: clamp(4.5rem, calc(100vw * 50 / 1280), 5rem);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(3rem, calc(100vw * 60 / 1280), 6rem) 4rem;
}

@media screen and (max-width: 767px) {
	.entry__list {
		grid-template-columns: 1fr;
	}
}
.entry__card {
	margin-top: clamp(2rem, calc(100vw * 40 / 1280), 4rem);
	position: relative;
	transition: opacity 0.3s;
}

.entry__card:focus-visible {
	opacity: 0.8;
}

@media (any-hover: hover) {
	.entry__card:hover {
		opacity: 0.8;
	}
}

.entry__icon {
	position: absolute;
	inset: 0 auto auto clamp(2rem, calc(100vw * 30 / 1280), 3rem);
	width: clamp(10rem, calc(100vw * 180 / 1280), 18rem);
	translate: 0 -25%;
	border: solid 0.4rem #fff;
	border-radius: 50%;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.entry__image {
	width: 100%;
	height: clamp(17.2rem, calc(100vw * 300 / 1280), 30rem);
	border-radius: 2rem;
	overflow: hidden;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.entry__card-title {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	align-items: center;
	font-weight: bold;
	font-size: 1.9rem;
	color: #ff007d;

	img {
		width: 2.5rem;
	}
}

.entry__bg {
	position: relative;
	z-index: 1;
	width: 100vw;
	margin-top: clamp(9rem, calc(100vw * 145 / 1280), 14.5rem);
	height: clamp(29rem, calc(100vw * 420 / 1280), 42rem);
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* entry end */
/* news start */

.news {
	padding-top: clamp(6rem, calc(100vw * 90 / 1280), 9rem);
	padding-bottom: clamp(8rem, calc(100vw * 120 / 1280), 12rem);
}
.news__inner {
	--container-width: 100rem;
}
.news__row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem 8rem;
}

.news__title {
	justify-items: start;
	align-content: start;
}
.news__title .title__en {
	font-size: 6rem;
}
.news__title .title__ja {
	font-size: 1.6rem;
}

.news__content {
	ul {
		list-style: none;
		display: grid;
		gap: clamp(2rem, calc(100vw * 30 / 1280), 3rem);
	}
	li {
		display: grid;
		grid-template-columns: 12rem 1fr;
		gap: 1rem 0;
	}

	.date {
		font-weight: bold;
		font-size: 1.4rem;
		color: #05a6cb;
	}

	.txt {
		font-weight: normal;
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 767px) {
	.news__row {
		grid-template-columns: 1fr;
	}

	.news__content li {
		grid-template-columns: 1fr;
	}
}

/* news end */
