/**************************************************************
 共通事項
**************************************************************/
:root {
	--color01: #237FC9;
	--color02: #EEF9FF;
	--color03: #116B8F;
	--color04: #0060A0;
	--color05: #29C2E0;
	--main-gradient: linear-gradient(0deg, rgba(41, 194, 224, 1) 0%, rgba(40, 123, 212, 1) 100%);
	--reverse-gradient: linear-gradient(0deg, rgba(40, 123, 212, 1)  0%,  rgba(41, 194, 224, 1) 100%);
	--font-family-en: "Montserrat" , sans-serif;
  /* カラー */
  --color-primary: #0077c8;
  --color-secondary: #eaf6ff;
  --color-text-primary: #000;
  --color-text-secondary: #0077c8;
  --color-text-tertiary: #fff;
  --color-text-accent: #949494;
  --color-white: #fff;
  --color-accent: #116b8f;
  --color-accent-02: #ff5757;

  /* フォントサイズ */
  --font-size-small: 1.4rem;
  --font-size-base: 1.8rem;
  --font-size-large: 2rem;
  --font-size-xlarge: 3rem;
  --font-size-xxlarge: 4rem;

  /* コンテンツ幅 */
  --content-width: calc(1100px + 20px * 2);

  /* コンテンツパディング */
  --content-padding: 20px;
}
body , html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;	color: #333;
	font-size: 62.5%;
    letter-spacing: 0.1em;
	overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
* {
	scroll-margin-top: 60px;
}
ol,
ul {
	list-style: none;
}
img{
	max-width: 100%;
	padding: 0;
	object-fit: cover;
	vertical-align: bottom;
}
p {
	font-size: 1.8rem;
	line-height: 1.6;
}
a {
    color: #888;
}
a:link,
a:visited,
a:active {
	text-decoration: none;
}
		a.call {
			color: #fff;
			text-decoration: underline;
		}
.red{
	color:#ff7280;
}
.small {
    font-size: 0.7em;
}
.forSp{
	display: none !important;;
}
.forPc{
	display: block !important;;
}
.lock {
	overflow: hidden;
	height: 100svh;
}
.nowrap {
	white-space: nowrap;
}
/* button */
.linkBtnWrapper {
}
.linkBtn {
	display: inline-block;
	line-height:40px;
	width: 190px;
	border-radius: 45px;
	font-size: 1.6rem;
	text-align: center;
	padding-left: 1.5em;
	padding-right: 2em;
	position: relative;
	transition: all ease .4s;
	color: var(--color01);
	border: solid 1px var(--color01);
	background-color: #fff;
}

.linkBtn__txt {}
.linkBtn::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 11px;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../images/arrow_blue.svg);
	background-size: cover;
	transition: all ease .4s;
}
.linkBtn--white {
	color: #fff;
	border: solid 1px #fff;
	background-color: inherit;
}
.linkBtn--white::after {
	background-image: url(../images/arrow_white.svg);
}
.linkBtn:hover {
	background-color: var(--color01);
	color: #fff;
}
.linkBtn--white:hover {
	background-color: #fff;
	color: var(--color01);
}
.linkBtn:hover::after {
	right: 13px;
	background-image: url(../images/arrow_white.svg);
}
.linkBtn--white:hover::after {
	background-image: url(../images/arrow_blue.svg);
}

.linkBtn {
	transition: ease-in-out .4s;
	box-shadow: 0.3rem 0.3rem 0px 0.1rem  var(--color01);
}
.linkBtn:hover {
	transform: translate3d(0.3rem, 0.3rem, 0);
	box-shadow: none;
}
@media screen and (max-width: 767px) {
	.linkBtn {
		line-height: 35px;
		font-size: 1.5rem;
	}
}
/* scroll bar */
.scroll {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.scroll-text {
	color: #fff;
		font-size: 1.6rem;
		transform: translateY(20px) rotate(90deg);
		margin-left: -10px;
}
.scroll-border {
  position: relative;
  position: relative;
  width: 10px;
  height: 160px;
  overflow: hidden;
}
.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  margin: auto;
}
.scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 50%;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    bottom: 170px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -10px;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
	.scroll {
		right: 0;
	}
	.scroll-border {
		height: 120px;
	}
	.scroll-text {
  font-size: 1.2rem;
}
}

/* section共通 */
section{
	overflow: hidden;
	margin: 0 auto;
}



@media screen and (max-width: 1024px) {
	img{
		width: 100%;
	}
	.forSp{
		display: block !important;
	}
	.forPc{
		display: none!important;
	}
	
}
@media screen and (max-width: 767px) {
p {
	font-size: 1.5rem;
}
}
/* 共通 end */

/**************************************************************
 header
**************************************************************/
.header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 1600px;
margin: 0 auto;
padding: 20px 50px;
position: relative;
z-index: 2;
}
.header__logo {
}
.header__logo a {
		display: block;
}
.header__logo a img {
	width: 240px
}
.header__logo .blue {
	display: none;
}


.gnav {
	display: flex;
	justify-content: flex-end;
	align-content: center;
	gap: 10%;
	width: calc(100% - 380px);
	max-width: 780px;
    /* padding: 1em 0; */
}

.gnav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	width: calc(90% - 200px);
	gap: 14%;
}

.gnav li {
    width: fit-content;
    font-size: 1.6rem;
    text-align: center;
}
.gnav a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
transition: all ease .4s;
position: relative;
overflow: hidden;
}
.gnav a:hover {
	color: var(--color01);
}
.ctaBtn a {
	width: 200px;
    text-align: center;
    border-radius: 36px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	gap: 10px;
	color: var(--color01);
	background-color: #fff;
	transition: all ease .4s;
	border: solid 1px #fff;
		color: #fff;
	background-color: transparent;

}
.ctaBtn--message a::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 16px;
	background-image: url(../images/icon_message.svg);
	background-image: url(../images/icon_mail.svg);
	background-size: cover;
	transition: all ease .4s;
}
.ctaBtn__txt {
	font-size: 1.6rem;
}
.ctaBtn a:hover {
	background-color: var(--color01);
	color: #fff;
	border: solid 1px var(--color01);
}

.ctaBtn--message a:hover::before {
	background-image: url(../images/icon_mail.svg);
}

/* ハンバーガーボタンのスタイル */
.hamburger {
    width: 20px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 100;
}
/* 各ラインの共通スタイル */
.hamburger_line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    transition: all 0.4s ease-in-out;
}

/* 上のライン */
.hamburger_line:nth-child(1) {
    top: 10px;
}

/* 中央のライン */
.hamburger_line:nth-child(2) {
    top: 15px;
}

/* 下のライン */
.hamburger_line:nth-child(3) {
    top: 20px;
}

/* ハンバーガーが「×（バツ）」に変形するアニメーション */
.hamburger.active .hamburger_line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active .hamburger_line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger_line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}
@media screen and (max-width: 1440px) {
.header__logo a img {
	width: 200px
}
	.gnav {
	gap: 40px;
	width: inherit;
}

.gnav ul {
	width: inherit;
	gap: 40px;
}
}
@media screen and (max-width: 1024px) {
.gnav {
	position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--main-gradient);
    z-index: 10;
    max-width: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	opacity: 0;
	transform: translateX(-100px);
	visibility: hidden;
	transition: transform ease .4s , opacity ease .4s;
}
.gnav.active {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}
.gnav ul {
	flex-direction: column;
}
}
@media screen and (max-width: 767px) {
.header {
	padding: 20px;
	height: 80px;
}
.header__logo a img {
	width: 150px;
}
}

@media screen and (max-width: 400px) {


}


/**************************************************************
 footer
**************************************************************/
.footer {
	background: var(--reverse-gradient);
	padding: 70px 0;
	color: #fff;
}
.footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
}
.footer__left {}
.footer__ttl {
	font-size: 3.2rem;
	font-weight: 600;
	margin-bottom: 30px;
}
.footer__ttl a {
	color: #fff;
}
.footer__addressList {}
.footer__addressList__item {
	margin-bottom: 30px;
}
.addressItem__ttl {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
}
.footer__addressList__item p {
	line-height: 1.8;
	font-size: 1.4rem;
}
.addressItem__tel {}
.addressItem__address {}
.addressItem__map a {
	color: #fff;
	font-size: 1.2rem;
}
.footer__right {
	max-width: 570px;
}
.footer__nav {}
.footer__navList {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	margin-bottom: 90px;
}
.footer__navList li {
	font-size: 1.6rem;
}
.footer__navList li a {
	color: #fff;
	transition: all ease .4s;
}
.footer__navList li a:hover {
	color: var(--color01);
}
.footer__copy {
	text-align: right;
	font-size: 1.2rem;
}


@media screen and (max-width: 767px) {
	.footer {
		padding: 50px 0 0;
	}
	.footer__container {
		padding: 0 20px;
		display: block;
	}

    .footer__copy {
        padding-bottom: 20px;
    }
	.footer__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
}
.footer__addressList__item {
    margin-bottom: 20px;
}
.footer__right {
    margin-top: 30px;
}
.footer__navList {
    margin-bottom: 50px;
    gap: 20px 0px;
}
.footer__navList li {
    font-size: 1.5rem;
    width: calc(50% - 10px);
}
}

/*----- pagetobtn -----*/
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: inline-block;
	/* background-color: var(--color04); */
	/* color: #fff; */
	/* text-align: center; */
	/* line-height: 40px; */
	/* width: 40px; */
	/* height: 40px; */
	/* border-radius: 50%; */
	text-decoration: none;
	font-size: 1.8rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 1000;
}

.back-to-top {
	color: var(--color01);
	transform: rotate(90deg);
	bottom: 80px;
	right: 0;
}

.back-to-top::after {
	content: "";
	display: inline-block;
	width: 120px;
	height: 10px;
	border-top: solid 1px var(--color01);
	border-left: solid 1px var(--color01);
	position: absolute;
	left: -10px;
	bottom: -12px;
	transform: scale(1, -1) skew(45deg);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 600px) {
	.back-to-top {
		bottom: 70px;
		right: -10px;
		font-size: 1.4rem;
	}
	.back-to-top::after {
		bottom: -8px;
	}
}

/*----- pagetobtn end -----*/
/*----- fadein -----*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}
/*----- fadein end -----*/
/*----- google recaptcha -----*/
.grecaptcha-badge {
	display: none!important;
}
/*----- google recaptcha end -----*/