@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,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;
	/* scroll-behavior: smooth; */
}
@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: "Poppins", 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", 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;
}
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;
	  color: inherit;
	  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 ease-out, transform .8s ease-out;
}
.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: 110px;
	transition: .3s;
	z-index: 97;
}
header.scrolled {
	height: 90px;
	background: rgba( 255,255,255 , .8 );
	transition: .3s;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 50px;
}
.header__logo {
	width: 297px;
	min-width: 297px;
}
.header__details {
	display: flex;
	align-items: center;
	/* gap: 0 30px; */
}
.header__nav ul {
	display: flex;
	align-items: center;
	gap: 0 30px;
	margin-right: 30px;
}
.header__nav ul li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	color: #333;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: .05em;
}
.header__nav ul li a.this {
	color: #01A4E4;
	font-weight: bold;
}
.header__nav ul li a:hover {
	opacity: .5;
	transition: .3s;
}
/* .header__nav ul li a::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 8px;
	height: 8px;
	background-color: #333;
	border-radius: 99rem;
	transition: .3s;
}
.header__nav ul li a:hover::before {
	width: 100%;
	transition: .3s;
} */
.header__nav ul li a.this::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #01A4E4;
	transition: .3s;
}
/* -------------------------------- */
.header__contacts {
	display: flex;
	align-items: center;
	gap: 0 20px;
}
.header__contacts-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 180px;
	height: 48px;
	background-color: #01A4E4;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: .05em;
	border-radius: 24px;
}
.header__contacts-button a:hover {
	opacity: .5;
	transition: .3s;
}
.header__contacts-button-icon {
	width: 12px;
	min-width: 12px;
}
/* -------------------------------- */
.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: 1px;
	background-color: #333;
}
.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;
	/* transition: .3s ease; */
	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 ul li.inline a {
	padding-left: 40px;
}
.hamburger-nav ul li.inline a::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 20px;
	transform: translate(0,-50%);
	width: 10px;
	height: 1px;
	background-color: #888;
}
.hamburger-nav.open ul li a {
	opacity: 1;
	transform: translateX(0);
}
.hamburger-nav ul li a span {
	position: relative;
}
.hamburger-nav ul li a.this {
	color: #05A3E4;
	font-weight: bold;
}
.hamburger-nav ul li a.this span::after {
	position: absolute;
	content: "";
	left: 0;
	bottom: -6px;
	transform: translate(0,-50%);
	width: 100%;
	height: 1px;
	background-color: #05A3E4;
	transition: .3s;
}
/* -------------------------------- */
.hamburger-nav__contacts {
	padding: 30px 5%;
	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: 6px;
	height: 60px;
	/* margin-top: 30px; */
	padding: 13px 30px;
	background-color: #05A3E4;
	color: #fff;
	font-weight: bold;
	border-radius: 30px;
}
.hamburger-nav__contacts-button-icon {
	width: 19px;
	min-width: 19px;
}
.hamburger-nav__contacts-tel a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 16px;
	color: #333;
	border: 1px solid #333;
}
.hamburger-nav__contacts-tel-number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 8px;
}
.hamburger-nav__contacts-tel-number-icon {
	
}
.hamburger-nav__contacts-tel-number-value {
	color: #333;
	font-size: 22px;
	line-height: 1.5;
	letter-spacing: .05em;
	font-weight: 600;
}
.hamburger-nav__contacts-tel-date {
	font-size: 12px;
	line-height: 1.5;
	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__inner {
		padding-right: 0;
	}
	.header__nav {
		display: none;
	}
	.hamburger {
		display: flex;
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: 60px;
		padding: 0;
	}
	.header__inner {
		padding: 0 0 0 5%;
	}
	.header__logo {
		width: 120px;
		min-width: initial;
	}
	.header__nav, .header__contacts {
		display: none;
	}
	.hamburger-nav {
		padding-top: 60px;
	}
}
@media screen and (max-width: 767px) {
	header.scrolled {
		height: 60px;
	}
	.hamburger-nav {
		max-width: 90%;
	}
}
/* -------------------------------- */
.breadcrumb {
	padding: 0 5%;
}
.breadcrumb__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumb__inner ul {
    display: flex;
    align-items: center;
    gap: 0 10px;
	width: 100%;
	overflow: hidden;
}
.breadcrumb__inner ul li a {
    display: block;
	max-width: 300px;
    color: #333;
    font-size: 12px;
	font-weight: bold;
    line-height: 17px;
	letter-spacing: .05em;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.breadcrumb__inner ul li:nth-child(1) a ,
.breadcrumb__inner ul li:nth-child(3) a {
}
.breadcrumb__inner ul li:nth-child(5) {
    display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	white-space: initial;
	overflow: hidden;
}
.breadcrumb__inner ul li.this a {
	color: #05A3E5;
	font-weight: 400;
}
.breadcrumb__inner ul li a:hover {
	opacity: .5;
}
.breadcrumb__inner ul li:nth-child(even) {
	min-width: 5px;
}
.breadcrumb__inner ul li img {
	max-width: 5px;
}
@media screen and (min-width: 1200px) and (max-width: 1201px) {
	.breadcrumb {
		max-width: 1100px;
	}
}
@media screen and (max-width: 767px) {
	.breadcrumb__inner {
	}
}
/* -------------------------------- */
.mv-sub {
	padding: 110px 50px 20px;
}
.mv-sub__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 390px;
    color: #fff;
	border-radius: 30px;
	overflow: hidden;
}
.mv-sub__inner::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #05A3E5;
	opacity: .5;
}
.mv-sub h1 {
	position: relative;
	font-size: 72px;
	font-weight: bold;
	letter-spacing: .13em;
	line-height: 108px;
	z-index: 2;
}
.mv-sub p {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: .065em;
	line-height: 63px;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.mv-sub {
		padding: 60px 5% 20px;
	}
	.mv-sub__inner {
		height: 200px;
		border-radius: 30px;
	}
	.mv-sub h1 {
		font-size: 30px;
		letter-spacing: .13em;
		line-height: 1.7;
	}
	.mv-sub p {
		font-size: 18px;
		letter-spacing: .065em;
		line-height: 1.7;
	}
}
/* -------------------------------- */
.mv-sub-product {
	padding: 110px 50px 22px;
}
.mv-sub-product__inner {
	padding: 67px 5% 31px;
	background: url("/_common/img/product/mv-bg.webp") 50% 50% / cover no-repeat;
	border-radius: 30px;
	overflow: hidden;
}
.mv-sub-product__visual {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
.mv-sub-product__chara {
	position: absolute;
	top: 17px;
	right: -123px;
	width: 100%;
	max-width: 204px;
}
@media screen and (min-width: 768px) and (max-width: 1560px) {
	.mv-sub-product__chara {
		width: 17%;
		right: -10%;
		max-width: initial;
	}	
}
@media screen and (max-width: 767px) {
	.mv-sub-product {
		padding: 60px 5% 20px;
	}
	.mv-sub-product__inner {
		padding: 0;
		background: none;
		border-radius: 30px;
		overflow: hidden;
	}
	.mv-sub-product__visual {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
	}
	.mv-sub-product__chara {
		position: absolute;
		top: 17px;
		right: -123px;
		width: 100%;
		max-width: 204px;
	}
}
/* -------------------------------- */
.tabs {
    margin-top: 80px;
    padding: 0 5%;
}
.tabs ul {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}
.tabs ul li button ,
.tabs ul li a {
    display: block;
	width: 100%;
    padding: 15px;
    background: #F3FAFF url("/_common/img/product/tabs-icon-blue.png") calc(100% - 12px) 50% / 21px 20px no-repeat;
    color: #05A3E5;
    font-weight: bold;
    border-radius: 10px;
}
.tabs ul li button.this ,
.tabs ul li a.this {
    background: #05A3E5 url("/_common/img/product/tabs-icon-white.png") calc(100% - 12px) 50% / 21px 20px no-repeat;
    color: #fff;
}
.tabs ul li button:hover ,
.tabs ul li a:hover {
	opacity: .5;
	transition: .3s;
}
@media screen and (max-width: 767px) {
	.tabs {
		margin-top: 40px;
	}
	.tabs ul {
		grid-template-columns: repeat(1,1fr);
		gap: 10px;
	}
	.tabs ul li a {
		padding: 15px;
		background: #F3FAFF url("/_common/img/product/tabs-icon-blue.png") calc(100% - 12px) 50% / 21px 20px no-repeat;
		border-radius: 10px;
	}
}
/* -------------------------------- */
.cta {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
}
.cta__bg {
    position: absolute;
    top: -367px;
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
    max-width: 976px;
}
.cta__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}
.cta__visual {
    max-width: 857px;
    margin: 0 auto;
}
.cta ul {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}
.cta ul li {
    width: 50%;
}
.cta ul li p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: .065em;
}
.cta ul li p span {
    width: 28px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #333;
}
.cta ul li p span.right {
    transform: rotate(-45deg);
}
.cta ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 30px;
    background-color: #FABE00;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: .05em;
    border-radius: 60px;
}
.cta ul li a:hover {
    opacity: .5;
    transition: .3s;
}
.cta ul li a img {
    width: 25px;
    min-width: 25px;
}
.cta ul li:last-child a {
    background-color: #05A3E4;
    color: #fff;
}
.cta__tel-number a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    color: #08A2E4;
    font-size: 39px;
    font-weight: bold;
}
.cta__tel-number a:hover {
    opacity: .5;
    transition: .3s;
}
.cta__tel-number img {
    width: 37px;
    min-width: 37px;
}
.cta__tel-time {
    font-size: 19px;
    font-weight: bold;
    letter-spacing: .065em;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .cta {
        padding: 60px 5%;
    }
    .cta__bg {
        top: 0;
        transform: translate(-50%,-50%);
    }
    .cta ul {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .cta ul li {
        width: 100%;
    }
    .cta ul li p {
        gap: 12px;
        font-size: 15px;
        text-align: center;
    }
    .cta ul li a {
        padding: 20px;
        font-size: 18px;
    }
    .cta ul li a img {
        width: 20px;
        min-width: 20px;
    }
    .cta__tel-number a {
        margin-top: 40px;
        font-size: 26px;
    }
    .cta__tel-number img {
        width: 26px;
        min-width: 26px;
    }
    .cta__tel-time {
        font-size: 15px;
    }
}
/* -------------------------------- */
.footer__inner {
	padding: 70px 5%;
	background: #F3FAFF;
}
.footer__texts {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.footer__logo {
	width: 297px;
	min-width: 297px;
}
.footer__logo a {
	display: block;
}
.footer__asconnex {
	width: 322px;
	min-width: 322px;
}
.footer__logo a:hover {
	opacity: .5;
	transition: .3s;
}
.footer__copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	background-color: #05A3E4;
	color: #fff;
	font-size: 10px;
	letter-spacing: .08em;
}

@media screen and (max-width: 767px) {
	.footer__inner {
		padding: 40px 5%;
	}
	.footer__texts {
		flex-direction: column;
		gap: 30px;
	}
	.footer__logo {
		width: 200px;
		min-width: initial;
	}
	.footer__logo a {
		display: block;
	}
	.footer__asconnex {
		width: 200px;
		min-width: initial;
	}
	.footer__copyright {
		height: 30px;
		font-size: 10px;
	}
    .tel__link span {
        color: #000;
    }
}
.pagetop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    gap: 6px;
    width: 100px;
    height: 100px;
    background: #05A3E5;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 1000;
}
.pagetop__inner {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	width: 100%;
	height: 100%;
}
.pagetop img {
    width: 12px;
}
.pagetop:hover {
    opacity: .5;
    transition: .3s;
}
@media screen and (max-width: 767px) {
	.pagetop {
		bottom: 5%;
		right: 5%;
		gap: 6px;
		width: 70px;
		height: 70px;
		font-size: 12px;
	}
	.pagetop:hover {
		opacity: initial;
		transition: initial;
	}
}