@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@keyframes fadeIn {
	0% {
	  display: none;
	  opacity: 0;
	}
  
	1% {
	  display: block;
	  opacity: 0;
	}
  
	100% {
	  display: block;
	  opacity: 1;
	}
}
html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
/* @media screen and (max-width: 767px) {
	html {
		font-size: 15px;
	}
} */
@media (max-width: 375px) {
    html {
        font-size: 3.68vw;
    }
}
body {
	margin: 0;
	color: #333;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
picture {
	display: block;
}
main {
	display: block;
}
h1, h2, h3, h4, h5 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}
p {
	margin: 0;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
dl, dt, dd {
	margin: 0;
}
a {
	text-decoration: none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
	cursor: pointer;
}
button {
	all: unset;
	cursor: pointer;
	box-sizing: border-box;
}
input, textarea {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	margin: 0;
    padding: 0;
    background: none;
    color: inherit;
    font: inherit;
    resize: none;
    outline: none;
	border: none;
	border-radius: 0;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: transparent;
	color: #333;
	font-size: 1rem;
	border: none;
	outline: none;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.sp_none {
		display: none!important;
	}
}
@media screen and (min-width: 768px) {
	.pc_none {
		display: none!important;
	}
}
.fade_in {
	opacity: 0;
	/* transform: translateY(3rem); */
	transition: .5s ease-out, transform .8s ease-out;
}
.fade_in.visible {
	opacity: 1;
	/* transform: translateY(0); */
}
.scroll_fade_in {
	opacity: 0;
}
.scroll_fade_in.visible {
	animation-name: fadeUpAnime;
	animation-duration: .8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.scroll_fade_in.size.visible {
	animation-name: fadeUpAnimeSize;
	animation-duration: .8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(3rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeUpAnimeSize {
	from {
		opacity: 0;
		transform: translateY(3rem) scale(.7);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
/* -------------------------------- */
.pink {
	color: #F36385;
}
/* -------------------------------- */
.delay100 {
	animation-delay: .1s;
}
.delay200 {
	animation-delay: .2s;
}
.delay300 {
	animation-delay: .3s;
}
/* -------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	padding: 0 30px;
	transition: .3s;
	z-index: 97;
}
header::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 10px 10px rgba(0,0,0,.05);
	transition: .3s;
	z-index: -1;
	opacity: 0;
}
header.scrolled::after {
	transition: .3s;
	opacity: 1;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1600px;
	margin: 0 auto;
}
.header__logo {
	display: flex;
	width: 122px;
	min-width: 122px;
}
.header__logo a {
}
.header__logo a img {
}
.header__details {
	display: flex;
	align-items: center;
	gap: 0 30px;
}
/* .header__nav ul {
	display: flex;
	align-items: center;
	gap: 0 30px;
}
.header__nav ul li a {
	position: relative;
	display: block;
	color: #111;
	font-size: 15px;
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 22px;
	letter-spacing: .05em;
}
.header__nav ul li a.this {
}
.header__nav ul li a:hover {
	opacity: .5;
	transition: .3s;
}
.header__nav ul li a.this::after {
	position: absolute;
	content: "";
	left: 50%;
	bottom: -4px;
	transform: translate(-50%,0);
	width: 100%;
	height: 1px;
	background-color: #333;
	transition: .3s;
} */
/* -------------------------------- */
/* .header__contacts {
	display: flex;
	align-items: center;
	gap: 0 20px;
}
.header__contacts-tel a {
	display: block;
}
.header__contacts-tel a:hover {
	opacity: .5;
	transition: .3s;
}
.header__contacts-tel-number {
	display: flex;
	align-items: center;
	gap: 0 3px;
}
.header__contacts-tel-number-icon {
	width: 23px;
	min-width: 23px;
}
.header__contacts-tel-number-value {
	color: #333;;
	font-size: 25px;
	font-weight: bold;
	font-family: 'Helvetica', 'Noto Sans JP', sans-serif;
	line-height: 1.1;
	letter-spacing: .05em;
}
.header__contacts-tel-date {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 194px;
	height: 23px;
	margin-top: 4px;
	background-color: rgba(255,255,255,.52);
	color: #333;
	font-size: 13px;
	font-family: 'Helvetica', 'Noto Sans JP', sans-serif;
	line-height: 19px;
	letter-spacing: .05em;
	text-align: center;
	border-radius: 99rem;
} */
.header__contacts-button {
	width: 300px;
}
.header__contacts-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 6px;
	width: 100%;
	height: 46px;
	background-color: #F36385;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 23px;
}
.header__contacts-button a:hover {
	opacity: .5;
	transition: .3s;
}
.header__contacts-button-icon {
	width: 8px;
	min-width: 8px;
}
/* -------------------------------- */
/* .hamburger {
	position: relative;
	display: none;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 100;
}
.hamburger span {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 26px;
	height: 2px;
	background-color: #333;
	border-radius: 99rem;
}
.hamburger span:nth-child(2) {
	transform: translate(-50%, calc(-50% - 7px));
	transition: .3s;
}
.hamburger span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 7px));
	transition: .3s;
}
.hamburger.open span:nth-child(1) {
	background-color: #333;
	transform: rotate(-45deg) translate(-50%, -50%);
	transform-origin: 0% 50%;
}
.hamburger.open span:nth-child(2) {
	background-color: #333;
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	background-color: #333;
	transform: rotate(45deg) translate(-50%, -50%);
	transform-origin: 0% 50%;
} */
/* -------------------------------- */
/* .hamburger-nav {
	position: fixed;
	top: 0;
	right: 0;
	transition: transform .8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
	transform: translateX(100%);
	width: 100%;
	max-width: 500px;
	height: 100%;
	padding-top: 100px;
	background-color: #fff;
	overflow-y: scroll;
	z-index: 99;
}
.hamburger-nav.open {
	transform: translateX(0);
}
.hamburger-nav ul li a {
	position: relative;
	display: block;
	padding: 15px 20px;
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.hamburger-nav.open ul li a {
	opacity: 1;
	transform: translateX(0);
}
.hamburger-nav.open ul li a span {
	position: relative;
}
.hamburger-nav ul li a.this span::after {
	position: absolute;
	content: "";
	left: 0px;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background-color: #333;
} */
/* -------------------------------- */
/* .hamburger-nav__contacts {
	padding: 30px;
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.hamburger-nav.open .hamburger-nav__contacts {
	opacity: 1;
	transform: translateX(0);
}
.hamburger-nav__contacts-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 3px;
	padding: 13px 30px;
	background-color: #FFEB00;
	color: #333;
	font-weight: bold;
	border: 2px solid #333;
	border-radius: 99rem;
}
.hamburger-nav__contacts-button-icon {
	width: 19px;
	min-width: 19px;
}
.hamburger-nav__contacts-tel a {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
	color: #333;
}
.hamburger-nav__contacts-tel-number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 3px;
}
.hamburger-nav__contacts-tel-number-icon {
	width: 18px;
	min-width: 18px;
}
.hamburger-nav__contacts-tel-number-value {
	color: #333;
	font-size: 24px;
	font-weight: bold;
	font-family: "Helvetica";
	line-height: 1.5;
	letter-spacing: .04em;
}
.hamburger-nav__contacts-tel-date {
	margin-top: 10px;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: .05em;
} */
/* -------------------------------- */
/* .hamburger-nav-mask {
	display: none;
}
.hamburger-nav-mask.open {
	display: block;
	position: fixed;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
	opacity: 1;
	animation: fadeIn 0.3s ease-in 0s forwards;
	z-index: 98;
} */
/* @media screen and (max-width: 1480px) {
	.header__nav ul li a {
		font-size: 13px;
	}
}
@media screen and (max-width: 1400px) {
	.header__nav {
		display: none;
	}
	.hamburger {
		display: flex;
	}
} */
@media screen and (max-width: 767px) {
	header {
		height: 74px;
		padding: 0 1rem;
	}
	.header__logo {
		width: 100px;
		min-width: 100px;
	}
	/* .header__logo a img {
		width: 40px;
		min-width: 40px;
	} */
	/* .header__logo p {
		font-size: 12px;
	}
	.header__nav, .header__contacts {
		display: none;
	}
	.hamburger-nav {
		padding-top: 60px;
	} */
	.header__contacts-button {
		width: 220px;
	}
	.header__contacts-button a {
		font-size: 13px;
	}
}
@media screen and (max-width: 767px) {
	/* .hamburger-nav {
		max-width: 90%;
	} */
}
/* -------------------------------- */
.breadcrumb {
	padding: 0 5%;
	border-top: 1px solid #EAEAEA;
	border-bottom: 1px solid #EAEAEA;
}
.breadcrumb__inner {
    max-width: 1100px;
    margin: 0 auto;
	padding: 4px 0;
}
.breadcrumb li {
	display: inline;
	min-width: 0;
	font-size: 12px;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	line-height: 1;
}
.breadcrumb li + li::before {
	content: '/';
	margin: 0 6px;
}
.breadcrumb a {
	display: inline;
	max-width: 100%;
	color: #333;
	letter-spacing: .05em;
}
.breadcrumb a:hover {
	opacity: .5;
	transition: .3s;
}
.breadcrumb li:nth-of-type(1) a {
	color: #F36385;
}
@media screen and (max-width: 767px) {
	.breadcrumb li {
		font-size: 10px;
	}
}
/* -------------------------------- */
/* .mv-sub {
	padding: 146px 5% 85px;
}
.mv-sub__inner {
}
.mv-sub h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.mv-sub__title-en {
	font-size: 90px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	letter-spacing: .08em;
	line-height: 110px;
}
.mv-sub__title-ja {
	font-size: 30px;
	font-weight: bold;
	letter-spacing: .08em;
	line-height: 45px;
}

@media screen and (max-width: 767px) {
	.mv-sub {
		padding: 120px 5% 80px;
	}
	.mv-sub__inner {
	}
	.mv-sub__title-en {
		font-size: 40px;
		letter-spacing: .08em;
		line-height: 1.7;
	}
	.mv-sub__title-ja {
		font-size: 18px;
		letter-spacing: .08em;
		line-height: 1.7;
	}
} */
/* -------------------------------- */
.banners {
	padding: 50px 5%;
}
.banners ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}
.banners ul li a {
	display: block;
}
.banners ul li a:hover {
	opacity: .5;
	transition: .3s;
}
@media screen and (max-width: 767px) {
	.banners {
		padding: 50px 5%;
	}
	.banners ul {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* -------------------------------- */
footer {
	border-top: 1px solid #EAEAEA;
}
.footer__inner {
	padding: 50px 5% 30px;
}
.footer__flex {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
}
.footer__logo {
	width: 236px;
	min-width: 236px;
}
.footer__logo a {
	display: block;
}
.footer__text {
	font-size: 14px;
	line-height: 26px;
}
.footer__text a {
	color: #333;
}
.footer__copyright {
	margin-top: 50px;
	font-size: 12px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.footer__inner {
		padding: 40px 1rem 30px;
	}
	.footer__flex {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.footer__logo {
		width: 236px;
		margin: 0 auto;
	}
	.footer__text {
		font-size: 12px;
		line-height: 21px;
		text-align: center;
	}
	.footer__copyright {
		margin-top: 30px;
		font-size: 10px;
		text-align: center;
	}
}