@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@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 (max-width: 768px) {
	html {
		font-size: 15px;
	}
}
@media (max-width: 375px) {
    html {
        font-size: 3.68vw;
    }
}
body {
	margin: 0;
	color: #333;
	font-family: "Montserrat", 'Noto Sans JP', sans-serif;
	font-weight: 400;
	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;
}
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;
}
@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}
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;
}
.fade_in.visible {
	opacity: 1;
	/* transform: translateY(0); */
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(3rem);
	}
	to {
		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;

}
/* -------------------------------- */
.delay100 {
	animation-delay: .1s;
}
.delay200 {
	animation-delay: .2s;
}
.delay300 {
	animation-delay: .3s;
}
/* -------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 90px;
	background-color: #fff;
	z-index: 97;
}
.scrolled header {
	/* background-color: rgba(255, 255, 255, .6); */
	/* backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px); */
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
}
.header__logo {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 404px;
	height: 90px;
	padding-left: 65px;
	background-color: #19B2C3;
}
.header__logo .triangle.left {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border: 49px solid transparent;
	border-left: 404px solid #19B2C3;
	transform: translateY(50%);
}
.header__logo img {
	position: relative;
	width: 100%;
	max-width: 298px;
	z-index: 2;
}
.header__details {
	display: flex;
	align-items: center;
	gap: 0 40px;
}
.header__nav ul {
	display: flex;
	align-items: center;
	gap: 0 45px;
}
.header__nav ul li a {
	position: relative;
	display: block;
	color: #333;
	font-size: 15px;
	font-weight: bold;
	line-height: 22px;
	letter-spacing: .05em;
}
/* .scrolled .header__nav ul li a ,
.sub-header .header__nav ul li a {
	color: #333;
} */
.header__nav ul li a.this {
	font-weight: bold;
}
.header__nav ul li a:hover {
	opacity: .5;
	transition: .3s;
}
.header__nav ul li a.this::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background-color: #333;
	transition: .3s;
}
/* .scrolled .header__nav ul li a.this::before ,
.sub-header .header__nav ul li a.this::before {
	background-color: #333;
} */
/* -------------------------------- */
.header__contacts {
	display: flex;
	align-items: center;
}
.header__contacts a:hover {
	opacity: .5;
	transition: .3s;
}
.header__contacts-tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	width: 160px;
	height: 90px;
	background: #1B8DCB;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: .1em;
}
.header__contacts-tel .icon {
	width: 26px;
	min-width: 21px;
}
/* -------------------------------- */
.hamburger {
	position: relative;
	display: none;
	width: 90px;
	height: 90px;
	background-color: #fff;
	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) {
	transform: rotate(-45deg) translate(-50%, -50%);
	transform-origin: 0% 50%;
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	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;
	/* transition: .3s ease; */
	z-index: 99;
}
.hamburger-nav.open {
	transform: translateX(0);
}
.hamburger-nav ul li a {
	position: relative;
	display: block;
	padding: 12px 24px;
	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 ul li a.this {
	/* padding-left: 34px; */
}
.hamburger-nav ul li a.this span {
	position: relative;
}
.hamburger-nav ul li a.this span::after {
	position: absolute;
	content: "";
	left: 0px;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background-color: #333;
	transition: .3s;
}
/* -------------------------------- */
.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: 7px;
	width: 100%;
	max-width: 411px;
	height: 60px;
	margin: 0 auto;
	background-color: #1B8DCB;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 10px;
}
.hamburger-nav__contacts-button-icon {
	width: 20px;
	min-width: 20px;
}
.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: 14px;
	min-width: 14px;
}
.hamburger-nav__contacts-tel-number-value {
	color: #1B8DCB;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: .04em;
}
.hamburger-nav__contacts-tel-date {
	margin-top: 6px;
	font-size: 12px;
	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__details {
		gap: 0;
	}
	.header__nav {
		display: none;
	}
	.hamburger {
		display: flex;
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: auto;
		/* padding: 0; */
	}
	/* .header__logo img {
		height: 90px;
	}
	.scrolled .header__logo img {
		height: 60px;
	} */
	.header__details {
		gap: 0;
	}
	.header__nav, .header__contacts {
		font-size: 12px;
	}
	.header__contacts-tel a {
		gap: 3px;
		width: 60px;
		height: 60px;
	}
	.header__contacts-tel .icon {
		width: 20px;
		min-width: 20px;
	}
	.header__contacts-line a {
		gap: 3px;
		width: 60px;
		height: 60px;
	}
	.header__contacts-line .icon {
		width: 20px;
		min-width: 20px;
	}

	.hamburger {
		/* position: fixed;
		top: 10px;
		right: 10px; */
		width: 60px;
		height: 60px;
	}
	.hamburger-nav {
		padding-top: 60px;
	}
}
@media screen and (max-width: 767px) {
	.header__logo {
		width: 204px;
		height: 60px;
		padding: 0 16px;
	}
	.header__logo .triangle.left {
		border: 25px solid transparent;
		border-left: 204px solid #19B2C3;
	}
	.header__logo img {
		max-width: 298px;
	}
	.hamburger-nav {
		max-width: 90%;
	}
}
/* -------------------------------- */
.mv-sub {
}
.mv-sub__inner {
	position: relative;
}
.mv-sub__texts {
	position: relative;
	display: flex;
	align-items: center
	;justify-content: center;
	flex-direction: column;
	height: 400px;
    color: #fff;
	z-index: 2;
}
.mv-sub__text1 {
    font-size: 92px;
    letter-spacing: .13em;
	z-index: 2;
}
h1.mv-sub__text2 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: .065em;
	z-index: 2;
}
.mv-sub__visual {
	position: absolute;
	content: "";
	top: 0;
	left: 50%;
	transform: translate(-50%, 0)!important;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.mv-sub__visual img {
	height: 100%;
	-webkit-object-fit: cover;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	.mv-sub {
	}
	.mv-sub__inner {
	}
	.mv-sub__texts {
		height: 260px;
	}
	.mv-sub__text1 {
		font-size: 40px;
		letter-spacing: .13em;
	}
	h1.mv-sub__text2 {
		font-size: 20px;
		letter-spacing: .065em;
	}
}
/* -------------------------------- */
.breadcrumb {
	position: relative;
    padding: 20px 5% 0;
	z-index: 2;
}
.breadcrumb__inner {
	display: flex;
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumb__inner ul {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.breadcrumb__inner ul li a {
    display: block;
    color: #333;
    font-size: 12px;
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .05em;
}
.breadcrumb__inner ul li.this a {
	color: #1B8DCB;
}
.breadcrumb__inner ul li a:hover {
	opacity: .5;
}
.breadcrumb__inner ul li img {
	max-width: 5px;
}
@media screen and (max-width: 767px) {
	.breadcrumb {
		padding: 24px;
	}
}
/* -------------------------------- */
footer {
	background-color: #fff;
	border-top: 2px solid #333;
}
.footer__inner {
	padding: 36px 5% 40px;
	text-align: center;
}
.footer__logo {
	max-width: 298px;
	margin: 0 auto;
}
.footer__address {
	margin-top: 15px;
	letter-spacing: .08em;
}
.footer__copyright {
	margin-top: 34px;
	font-size: 10px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: .08em;
}
@media screen and (max-width: 767px) {
	footer {
	}
	.footer__inner {
		padding: 50px 2rem;
	}
	.footer__logo {
		max-width: 200px;
	}
	.footer__address {
		margin-top: 15px;
		font-size: 12px;
		letter-spacing: .08em;
	}
	.footer__copyright {
		margin-top: 40px;
		font-size: 10px;
		letter-spacing: .08em;
	}
}