@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --main-blue: #0050AB;
  --lite-blue: #5890D1;
  --blue: #1e74d4;
  --white: #fff;
}

html {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #252525;
  background-color: #f5f6f8;
  min-height: 100vh;
  font-size: 1rem;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }

}

a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  opacity: 0.7;
}

.bg--wt {
  background-color: var(--white);
}

.bg--bl {
  background-color: rgba(94, 152, 202, 0.12);

}


.grecaptcha-badge {
  visibility: hidden;
}

.header {
	padding: 20px 20px 0;
}

@media only screen and (max-width: 768px) {
	.header {
		padding: 20px min(26.7vw, 20px);
		height: 80px;
	}
}

.header__inner {
	max-width: 1440px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 10px;
}

@media only screen and (max-width: 768px) {
	.header__inner {
		position: fixed;
		left: 0;
		right: 0;
		width: calc(100vw - 40px);
		height: min(13.4vw, 100px);
		padding: 30px 10px 30px min(4vw, 30px);
		gap: 0 10px;
		border-radius: 18px;
		background-color: var(--white);
		overflow: hidden;
		box-shadow: none;
		z-index: 10000;
	}
}


.header__logo-image {
	height: 100px;
}

@media only screen and (max-width: 768px) {
	.header__logo-image {
		height: min(18.7vw, 140px);
		width: auto;
		margin-top: 20%;
	}
}


.header__nav {
	width: min(100%, 780px);
	background-color: var(--white);
	border-radius: 16px;
	padding-left: min(2.7vw, 40px);
	height: 66px;
	box-shadow: 0px 0px 7.5px 10px rgba(123, 143, 184, 0.1);
}

.header__nav-list {
	display: flex;
	width: 100%;
	gap: 0 min(2.22vw, 2rem);
	justify-content: space-between;
	font-size: min(1.1vw, 0.8125rem);
	line-height: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}

@media only screen and (max-width: 768px) {
	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 200;
		width: 100%;
		height: 100%;
		padding: 0;
	}

	.header__nav.in {
		position: fixed;
		top: min(24vw, 130px);
		left: 0;
		right: 0;
		z-index: 200;
		width: strech;
		max-height: 300vh;
		overflow-y: auto;
		padding: 0 min(26.7vw, 20px) 260px;
		background-color: #F5F6F8;
		border-radius: 0;
	}

	.header__nav-list {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 0;
		padding: 0;
		margin: 0;
		height: auto;
	}
}

.header__nav-list> :last-child {
	margin-left: auto;
}

@media only screen and (max-width: 768px) {
	.header__nav-list> :last-child {
		margin-left: auto;
	}
}

.header__nav-item {
	display: flex;
}

.header__nav-item:nth-child(n+2):nth-child(-n+6) {
	padding-left: 3px;
}

@media only screen and (max-width: 768px) {
	.header__nav-item {
		width: 100%;
	}

	.header__nav-item:first-child {
		border-radius: 20px 20px 0 0;
	}

	.header__nav-item:nth-last-child(2) {
		border-radius: 0 0 20px 20px;
	}

	.header__nav-item:not(:last-child) {
		background-color: var(--white);
		position: relative;
		padding: min(6vw, 50px) min(26.7vw, 20px);
		margin-inline: 20px;
		font-size: min(4vw, 2rem);
	}

	.header__nav-item:nth-child(n+2):nth-child(-n+6) {
		padding-left: min(26.7vw, 20px);
	}

	.header__nav-item:not(:nth-last-child(-n+2))::after {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
		width: calc(100% - 40px);
		height: 1px;
		background: #e2e3e8;
	}

	.header__nav-link::before {
		content: "";
		position: absolute;
		width: 8vw;
		height: 8vw;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 50%;
		border: 1px solid var(--blue);
	}

	.header__nav-link::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		width: 1.73vw;
		height: 2vw;
		background: var(--blue);
		transform: translate(-160%, -50%) rotate(0deg);
		clip-path: polygon(0 0,
				0 100%,
				100% 50%);
	}

	.header__nav-link:hover {
		opacity: 1;
	}

	.header__nav-link:hover::before {
		background: var(--blue);
	}

	.header__nav-link:hover::after {
		background: var(--white);
	}
}

.header__nav-link {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
}

.header__nav-link--icon {
	gap: 8px;
}

.header__nav-icon {
	width: 16px;
	object-fit: contain;
}

.header__nav-item--active .header__nav-link::after {
	content: "";
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 7px;
	background-color: #d04ea9;
	border-radius: 50%;
}

@media only screen and (max-width: 768px) {
	.header__nav-link--icon {
		gap: 0 10px;
	}

	.header__nav-icon {
		width: min(4vw, 2rem);
		;
	}

	.header__nav-item--active .header__nav-link::after {
		left: auto;
		right: 0;
		top: 50%;
		width: 1.73vw;
		height: 2vw;
		background: var(--blue);
		border-radius: 0;
		transform: translate(-165%, -50%) rotate(0deg);
		clip-path: polygon(0 0,
				0 100%,
				100% 50%);
	}

	.header__nav-item--active .header__nav-link:hover::after {
		background: var(--white);
	}
}

/* イラスト */
.header__illustration-image {
	max-width: 184px;
	width: 100%;
	height: auto;
}

.header__nav-item--highlight .header__nav-link {
	background-color: #1564bd;
	padding: 0 20px;
	color: var(--white);
	border-radius: 0 16px 16px 0;
}

@media only screen and (max-width: 768px) {
	.header__nav-item--highlight .header__nav-link {
		background-color: var(--blue);
		width: 100%;
		margin: 0;
		padding: min(6vw, 50px) min(26.7vw, 20px);
		border-radius: 20px;
		font-size: min(4vw, 2rem);
	}

	.header__nav-item--highlight .header__nav-link::before {
		content: "";
		position: absolute;
		width: 8vw;
		height: 8vw;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		border-radius: 50%;
		background-color: var(--blue);
		border: 1px solid var(--white);
	}

	.header__nav-item--highlight .header__nav-link::after {
		content: "";
		position: absolute;
		right: 20px;
		top: 50%;
		width: 1.73vw;
		height: 2vw;
		background: var(--white);
		transform: translate(-165%, -50%) rotate(0deg);
		clip-path: polygon(0 0,
				0 100%,
				100% 50%);
	}

	.header__nav-item--highlight .header__nav-link:hover {
		opacity: 1;
	}

	.header__nav-item--highlight .header__nav-link:hover::before {
		background: var(--white);
	}

	.header__nav-item--highlight .header__nav-link:hover::after {
		background: var(--blue);
	}
}

.header__nav--fixed {
	position: fixed;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	transition: top 0.3s ease;
}

.header__nav--fixed.is-visible {
	top: 30px;
}

.burger__btn {
	display: none;
}

@media only screen and (max-width: 768px) {
	.nav-btn-o.in {
		display: none;
	}

	.menu__button {
		margin: 0 auto;
	}

	.menu__button a {
		padding: 1rem 25%;
	}

	.burger__btn img {
		width: 50px;
		height: 50px;
	}
}

@media only screen and (max-width: 768px) {
	.header__sp {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 0 10px;
		width: auto;
	}

	.kaiin__btn {
		cursor: pointer;
		z-index: 300;
		width: calc(90 / 768 * 100vw);
		height: auto;
		margin-left: 30vw;
	}
}

@media only screen and (max-width: 768px) {
	.kaiin__btn.in {
		display: none;
	}

	.burger__btn {
		display: block;
		cursor: pointer;
		z-index: 100000;
	}
}

@media only screen and (max-width: 768px) {
	.nav-btn-o {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 1.3vw;
	}

	.nav-btn-o span {

		width: calc(50 / 768 * 100vw);
		height: 2px;
		background: var(--blue);
		border-radius: 2px;
		transition: all .4s;
	}
}

@media only screen and (max-width: 768px) {
	.burger__btn .nav-btn-o .close_svg {
		display: none;
	}

	.burger__btn .nav-btn-o .burger__btn .open_svg {
		display: block;
	}

	.burger__btn.open .nav-btn-o .close_svg {
		display: block;
	}

	.burger__btn.open .nav-btn-o .open_svg {
		display: none;
	}

	.burger__btn .nav-btn-o span:nth-of-type(3) {
		width: 60%;
	}
}

@media only screen and (max-width: 768px) {
	.burger__btn.open .nav-btn-o span:nth-of-type(1) {
		transform: rotate(33.3deg);
	}

	.burger__btn.open .nav-btn-o span:nth-of-type(2) {
		transform: translateY(-1.7vw) rotate(-33.3deg);
	}

	.burger__btn.open .nav-btn-o span:nth-of-type(3) {
		display: none;
	}

	.burger__btn.open .nav-btn-o img {
		transform: translateY(1vw);
	}

	.nav-btn-o img {
		width: calc(60 / 768 * 100vw);
		height: auto;
		line-height: 1;
	}
}

@media only screen and (max-width: 768px) {
	.header__nav-list--contact {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 20px 0;
		padding: 0;
		margin-top: min(7.5vw, 100px);
		align-items: center;
		font-size: min(3vw 1.5rem);
		line-height: 1.2;
		width: 100%;
		height: auto;
		text-align: center;
	}

	.header__nav-item--phone {
		background: url('../img/header/header__nav-item_bg.svg') no-repeat center top / 100%;
		width: 100%;
		padding: min(5.3vw, 40px) 20px 0;
		margin-inline: auto;
		aspect-ratio: 7 / 2.1;
	}

	.header__nav-item--phone img {
		width: 63%;
		margin: 0 auto 2.6vw;
	}

	.header__nav-link--phone {
		width: 100%;
		height: 100%;
	}

	.header__nav-item--form {
		background: url('../img/header/header__nav-item_bg.svg') no-repeat center top / 100%;
		padding: min(5.3vw, 40px) 20px 0;
		width: 100%;
		height: 100%;
		margin-inline: auto;
		aspect-ratio: 7 / 2.1;
	}

	.header__nav-item--form img {
		width: 63%;
		margin-inline: auto;
	}

	.header__nav-link--form {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
	}

	.header__nav-link--form::before {
		content: "";
		position: absolute;
		width: 8vw;
		height: 8vw;
		left: 50%;
		transform: translateX(-50%);
		bottom: 35%;
		background: var(--white);
		border-radius: 50%;
		border: 1px solid var(--blue);
	}

	.header__nav-link--form::after {
		content: "";
		position: absolute;
		bottom: 35%;
		left: 50%;
		width: 1.73vw;
		height: 2vw;
		background: var(--blue);
		transform: translate(-30%, -145%);
		clip-path: polygon(0 0,
				0 100%,
				100% 50%);
	}

	.header__nav-link--form:hover {
		opacity: 1;
	}

	.header__nav-link--form:hover::before {
		background: var(--blue);
	}

	.header__nav-link--form:hover::after {
		background: var(--white);
	}
}

/* .footer .bg {
  width: 100%;
  background: #1ea651 url(../img/footer/footer_bg.jpg) no-repeat center top / cover;
  aspect-ratio: 36/19;
  padding: 22% 10px 20px;
}

@media only screen and (max-width: 768px) {
  .footer .bg {
    background: #1ea651 url(../img/footer/footer_bg-sp.jpg) no-repeat center top / cover;
    aspect-ratio: auto;
    padding: 64% min(23.3vw,20px) min(26.6vw,200px);
  }
} */

.footer .bg {
  width: 100%;
  background: #1ea651 url(../img/footer/footer_bg.jpg) no-repeat center top / cover;
    aspect-ratio: 72/28;
  padding: 22% 10px 20px;
}

@media only screen and (max-width: 768px) {
  .footer .bg {
    background: #1ea651 url(../img/footer/footer_bg-sp.jpg) no-repeat center top / cover;
    aspect-ratio: auto;
    padding: 64% min(23.3vw,20px) min(26.6vw,200px);
  }
}

.footer .l-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
}

.contact-wrapper {
  position: relative;
  max-width: 804px;
  margin-inline: auto;
}

.contact-bg {
  width: 100%;
  height: auto;
  display: block;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .contact-overlay {
    flex-direction: column;
  }
}

.overlay-item {
  flex: 1;
  display: flex;
  flex-direction: column;

  align-items: center;
  padding-top: 80px;
}

@media only screen and (max-width: 768px) {
  .overlay-item {
    padding-top: 11%;
  }
}

.value {
  padding-top: min(21.3vw,16px);
  font-size: 0.8125rem;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .value {
    padding-top: min(26.7vw,20px);
    font-size: min(3.2vw, 1.5rem);
  }
}

.contact-link {
  position: relative;

}

.contact-link::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--blue);
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50%;

  width: 8.66px;
  height: 10px;
  background: var(--blue);
  transform: translate(-40%, -155%);
  clip-path: polygon(0 0,
      0 100%,
      100% 50%);
}

@media only screen and (max-width: 768px) {
  .contact-link::before {
  width: 7.8vw;
  height: 7.8vw;
    bottom: 4vw;
  }

  .contact-link::after {
	    width: 1.69vw;
  height: 1.95vw;
    bottom: 4vw;
 transform: translate(-40%, -160%);
  }
}

			.contact-link:hover {
  opacity: 1;

}
		
.contact-link:hover::before {
  background: var(--blue);

}

.contact-link:hover::after {
  background: var(--white);

}

.footer-tel {
  width: 273px;
}

.footer-contact {
  width: 237px;
}

@media only screen and (max-width: 768px) {
  .footer-tel {
    padding-top: 3.5%;
    width: 64%;
  }

  .footer-contact {
    width: 64%;
  }
}

/* .footer__inner {
  padding: 50px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 40px 0;
  color: var(--white);
}

@media only screen and (max-width: 768px) {
  .footer__inner {
    padding: 80px 0 0;
    gap: 60px 0;
  }
} */

.footer__inner {
  padding: 50px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 40px 0;
  color: var(--white);
}

@media only screen and (max-width: 768px) {
  .footer__inner {
    padding: 80px 0 0;
    gap: 60px 0;
  }
}

.footer__organization {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0 30px;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
}


@media only screen and (max-width: 768px) {
  .footer__organization {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
    font-size: 2.85vw;
  }
}

.footer__copyright {
  font-size: 0.6875rem;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 2.6vw;
  }
}

.page-top {
  position: absolute;
  right: 7.5%;
  top: -8.8vw;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .page-top {
    right: -6.5%;
    top: -35.5vw;
  }
}

@media only screen and (max-width: 480px) {
  .page-top {
    right: -2.5vw;
    top: -34.5vw;
    transform: translate(0, -50%);
  }
}

.page-top__link {
  display: inline-block;
}

			.page-top__link:hover {
  opacity: 1;
}
		
.page-top__image {
  width: 3vw;
  max-width: 50px;
  height: auto;
  display: block;
}

@media only screen and (max-width: 768px) {
  .page-top__image {
    width: 9vw;
    max-width: 70px;

  }
}