@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?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;
	/* 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: #222;
	font-family: '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;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
	padding: 0;
}
th, td {
	margin: 0;
	padding: 0;
	border: none;
	font-weight: normal;
}
@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: sticky;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 9999;
}
/* header.scrolled {
	height: 90px;
	background: rgba( 255,255,255 , .8 );
	transition: .3s;
}
.header__inner {
	
} */

/* -------------------------------- */
.header__bar {
	padding: 0 5%;
	background-color: #0088d6;
	color: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.header__bar-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 6px 0;
	font-size: 12px;
}
@media screen and (max-width: 767px) {
	.header__bar {
		padding: 0;
	}
	.header__bar-inner {
		padding: 6px 16px;
		font-size: 12px;
		line-height: 1.35;
	}
}
/* -------------------------------- */
.header__main {
	padding: 15px 5%;
}
.header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.header__logo {
	width: 255px;
	min-width: 255px;
}
.header__contact {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header__contact a {
	display: block;
}
.header__tel {
	width: 100%;
	max-width: 380px;
}
.header__mail {
	width: 100%;
	max-width: 202px;
}
.header__mail a:hover {
	opacity: .7;
	transition: .3s;
}
@media screen and (max-width: 767px) {
	.header__main {
		position: relative;
		padding: 0 16px;
	}
	.header__main-inner {
		height: 60px;
	}
	.header__logo {
		width: 155px;
		min-width: 155px;
	}
}
/* -------------------------------- */
.header__nav {
	padding: 15px 5%;
}
.header__nav ul {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	border-left: 1px solid #e2e2e2;
}
.header__nav ul li {
	flex: 1;
	border-right: 1px solid #e2e2e2;
}
.header__nav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
}
.header__nav ul li a.this {
	/* color: #024b9e; */
}
.header__nav ul li a:hover {
	opacity: .5;
	transition: .3s;
}
/* -------------------------------- */
.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: 58px 5%;
	background: url("/_common/img/home/cta-bg.jpg") 50% 50% / auto auto repeat;
}
.mv-sub__inner {
}
.mv-sub h1 {
    color: #fff;
	text-align: center;
}
.mv-sub .en {
	display: block;
	font-size: 21px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-weight: bold;
}
.mv-sub .ja {
	display: block;
	margin-top: 5px;
	font-size: 45px;
	font-weight: 600;
}
.mv-sub .ja small {
	display: block;
	font-size: 16px;
	font-weight: 600;
}
@media screen and (max-width: 767px) {
	.mv-sub {
		padding: 50px 16px;
	}
	.mv-sub .en {
		display: block;
		font-size: 21px;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		font-weight: bold;
	}
	.mv-sub .ja {
		display: block;
		margin-top: 5px;
		font-size: 30px;
		font-weight: 600;
	}
	.mv-sub .ja small {
		display: block;
		font-size: 16px;
		font-weight: 600;
	}
}
 /* -------------------------------- */
.footer-cta {
	padding: 100px 5% 80px;
	background: url("/_common/img/home/cta-bg.jpg") 50% 50% / auto auto repeat;
}
.footer-cta__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-cta h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	letter-spacing: .05em;
}
.footer-cta h2 span {
	color: #ffd200;
}
.cta__contents {
	display: flex;
	gap: 32px;
	max-width: 880px;
	margin: 16px auto 0;
}
.cta__tel {
	flex: 1;
}
.cta__mail {
	flex: 1;
}
.cta__mail a:hover {
	opacity: .6;
	transition: .3s;
}
.footer-cta .banners {
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 80px;
    padding: 50px;
    background-color: #38a5ea;
}
.footer-cta .banners__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
    max-width: 880px;
    margin: 0 auto;
}
.footer-cta .banners a {
    display: block;
}
.footer-cta .banners a:hover {
	opacity: .6;
	transition: .3s;
}
@media screen and (max-width: 767px) {
	.footer-cta {
		padding: 50px 16px;
	}
	.footer-cta h2 {
		font-size: 16px;
	}
	.footer-cta h2 span {
		color: #ffd200;
	}
	.cta__contents {
		flex-direction: column;
		gap: 16px;
		max-width: 320px;
		margin: 20px auto 0;
	}
	.footer-cta .banners {
		margin-top: 30px;
		padding: 16px;
		background-color: #38a5ea;
	}
	.footer-cta .banners__inner {
		gap: 20px;
	}
}
/* -------------------------------- */
.footer__main {
	padding: 65px 5% 50px;
	background: #eff3f3;
}
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
.footer__logo {
	width: 430px;
	min-width: 430px;
}
.footer__logo a {
	display: block;
	max-width: 380px;
}
.footer__logo-info {
	margin-top: 20px;
	font-size: 14px;
}
.footer__logo-info b {
	font-size: 16px;
}
.footer__nav ul {
	display: flex;
	gap: 24px;
}
.footer__nav ul li a {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #333;
	font-size: 14px;
}
.footer__nav ul li a .icon {
	width: 12px;
	min-width: 12px;
}
.footer__nav-btns {
	display: flex;
	gap: 16px;
	max-width: 650px;
	margin-top: 30px;
}
.footer__nav-btns a {
	display: block;
}
a.footer__nav-btn {
	width: 246px;
	min-width: 246px;
}
a.footer__nav-btn:hover {
	opacity: .7;
	transition: .3s;
}
.footer__copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 5%;
	background-color: #0088d6;
	color: #fff;
	font-size: 12px;
}
@media screen and (max-width: 767px) {
	.footer__main {
		padding: 50px 5%;
		background: #eff3f3;
	}
	.footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer__logo {
		width: 100%;
		min-width: initial;
	}
	.footer__logo a {
		max-width: 280px;
	}
	.footer__logo-info {
		margin-top: 20px;
		font-size: 14px;
	}
	.footer__logo-info b {
	}
	.footer__nav {
		width: 100%;
		margin-top: 30px;
	}
	.footer__nav ul {
		flex-direction: column;
		gap: 12px;
	}
	.footer__nav ul li a {
	}
	.footer__nav ul li a .icon {
		width: 12px;
		min-width: 12px;
	}
	.footer__nav-btns {
		flex-direction: column;
		gap: 20px;
		max-width: 320px;
		margin: 30px auto 0;
	}
	.footer__nav-btns a {
		display: block;
	}
	a.footer__nav-btn {
		width: 100%;
		min-width: initial;
	}
}
/* .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;
	}
} */

/* -------------------------------- */
.hamburger {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: 60px;
	height: 60px;
	/* background-color: #f2f6fd; */
	cursor: pointer;
	z-index: 98;
}
.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-sp {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	width: 60px;
	height: 60px;
	/* background-color: #f2f6fd; */
	cursor: pointer;
	z-index: 100;
}
.hamburger-sp span {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 26px;
	height: 2px;
	background-color: #333;
	border-radius: 99rem;
}
.hamburger-sp span:nth-child(2) {
	transform: translate(-50%, calc(-50% - 7px));
	transition: .3s;
}
.hamburger-sp span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 7px));
	transition: .3s;
}
.hamburger-sp span:nth-child(1) {
	transform: rotate(-45deg) translate(-50%, -50%);
	transform-origin: 0% 50%;
}
.hamburger-sp span:nth-child(2) {
	opacity: 0;
}
.hamburger-sp 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: 60px 0 40px;
	background-color: #fff;
	overflow-y: scroll;
	/* transition: .3s ease; */
	z-index: 99;
}
.hamburger-nav.open {
	transform: translateX(0);
}
.hamburger-nav ul {
	border-top: 1px solid #f2f6fd;
}
.hamburger-nav ul li a {
	position: relative;
	display: block;
	padding: 15px 20px;
	color: #3f342d;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .04em;
	border-bottom: 1px solid #f2f6fd;
	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;
	color: #024b9e;
}
.hamburger-nav ul li a.this::after {
	position: absolute;
	content: "";
	left: 20px;
	top: 50%;
	transform: translate(0,-50%);
	width: 8px;
	height: 8px;
	background-color: #024b9e;
	border-radius: 99rem;
	transition: .3s;
}
/* -------------------------------- */
.hamburger-nav__contacts {
	margin-top: 20px;
	padding: 0 20px;
}
.hamburger-nav__contacts a {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}
.hamburger-nav__contacts-tel {

}
.hamburger-nav__contacts-email {
	margin-top: 30px;
}
/* -------------------------------- */
.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;
}