@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
    width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	/* position: fixed; */
	top: 0;
	left: 0;
	z-index: 999;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
/* header.is-no-fixed {
	height: 100px;
} */
header .header-inn {
    width: 90%;
    margin: 0 auto;
    display: flex;
	align-items: center;
	justify-content: space-between;
}

/*ロゴ*/
header .header-logo {
    /* width: 230px; */
    /* display: block; */
	  width: clamp(120px,25vw,220px);
}

header .header-ac-logo {
	  width: clamp(120px,25vw,220px);
    /* display: block; */
}

/* header .gnav {
	width: calc(100% - 250px);
}
header .gnav ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
header .gnav ul li {
	padding: 0 10px;
	border-right: 1px solid #fff;
	line-height: 1;
}
header .gnav ul li:first-child {
	padding: 0 10px 0 0;
}
header .gnav ul li:last-child {
	padding: 0 0 0 10px;
	border-right: none;
}
header .gnav ul li a {
    padding: 0;
    display: block;
    font-size: 15px;
	color: #fff;
	line-height: 1;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
} */

@media (max-width: 768px) {
    header {
        width: 100%;
		height: 10vw;
    }
	header.is-no-fixed {
		height: 10vw;
	}
    header .header-inn {
        width: 90%;
        margin: 0 auto;
        padding: 3vw 0;
        /* position: relative; */
    }

header .header-inn {
    width: 90%;
    margin: 0 auto;
    display: flex;
	align-items: center;
	justify-content: space-between;
}
    /*ロゴ*/
    header .header-logo, header .header-ac-logo{
        width: 35%;
        /* margin: 0 auto 0; */
        display: block;
    }
	header .gnav {
        width: 100%;
        height: calc(100vh - 10vw);
        padding: 0;
		display: none;
        background: rgba(45,72,126,0.85);
        position: fixed;
        top: 10vw;
        left: 0;
        z-index: 998;
	}
	header .gnav ul {
		width: 100%;
        padding: 0;
        display: block;
        position: relative;
        z-index: 999;
	}
	header .gnav ul li {
		padding: 0;
		border-right: none;
		border-bottom: 1px solid #fff;
		line-height: 1;
		text-align: center;
	}
	header .gnav ul li:first-child {
		padding: 0;
	}
	header .gnav ul li:last-child {
		padding: 0;
		border-right: none;
	}
	header .gnav ul li a {
		padding: 4vw 2vw;
		display: block;
		font-size: 3.2vw;
		color: #fff;
		line-height: 1;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition: 0.3s ease-in-out;
		-o-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
    header .menu-trigger-wrap {
        width: 12vw;
        position: absolute;
        top: calc(50% - 2vw);
        right: 0;
        text-align: right;
    }
    header .menu-trigger {
        width: 5vw;
        height: 4vw;
        display: inline-block;
        position: relative;
        cursor: pointer;
        z-index: 999;
    }
    header .menu-trigger span {
        width: 100%;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
    }
    header .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    header .menu-trigger span:nth-of-type(2) {
        top: calc(50% - 1px);
    }
    header .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    header .menu-trigger.is-active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    header .menu-trigger.is-active span:nth-of-type(2) {
        opacity: 0;
    }
    header .menu-trigger.is-active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }

}


/*---------- コンテンツ レイアウト ----------*/
.sec-inn {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flex-box {
    display: flex;
}

@media (max-width: 768px) {
    .sec-inn {
        width: 90%;
        max-width: initial;
        margin: 0 auto;
        position: relative;
    }

	.flex-box {
		display: block;
	}
}


/*---------- CV ----------*/
.sec-cv {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: #fff;
}
.sec-cv .cv-ttl {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
}

.sec-download {
	width: 100%;
	padding: 50px 0;
	background: #56b2eb;
}
.sec-download .flex-box {
	align-items: flex-start;
	justify-content: space-between;
}
.sec-download .box-left {
	width: 300px;
}
.sec-download .box-right {
	width: calc(100% - 350px);
	display: block;
}
.sec-download .box-right .cv-txt-bold {
	width: 100%;
	margin: 30px auto 0;
	font-size: 18px;
	font-weight: 700;
}
.sec-download .box-right .cv-txt {
	margin: 15px auto 40px;
	line-height: 2;
	word-break: break-all;
}
.sec-download .box-right .btn-navy {
	margin-left: auto;
}

.sec-contact {
	width: 100%;
	padding: 55px 0;
	/* background: #5eb0b1; */
    background: linear-gradient(90deg, #4bb1ff, #9a4dff);
	text-align: center;
}
.sec-contact img {
	width: 50%;
	max-width: 65px;
	margin: 0 auto 25px;
}
.sec-contact .cv-txt {
	margin: 25px auto;
}
.sec-contact .btn-navy {
	margin: 0 auto;
}

/* .sec-tel {
	width: 50%;
	padding: 35px 0 40px;
	background: #2d487e;
	text-align: center;
}
.sec-tel img {
	width: 50%;
	max-width: 65px;
	margin: 0 auto 25px;
} */
.sec-tel .cv-tel a {
	margin: 15px auto 10px;
	display: inline-block;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
}
.sec-tel .cv-tel-caption {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
}

.sec-cv-thanks .sec-tel {
	width: 100%;
	padding: 35px 0 40px;
	background: #2d487e;
	text-align: center;
	color: #fff;
}
.sec-cv-thanks .cv-ttl {
	font-size: 30px;
	font-weight: 900;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.sec-cv {
		width: 100%;
		display: block;
	}
	.sec-cv .cv-ttl {
		font-size: 4.8vw;
	}

	.sec-download {
		width: 100%;
		padding: 5vw 0;
		background: #56b2eb;
	}
	.sec-download .flex-box {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
	}
	.sec-download .box-left {
		width: 35%;
		position: absolute;
		top: 11vw;
		left: 0;
	}
	.sec-download .box-right {
		width: 100%;
		display: block;
	}
	.sec-download .box-right .cv-ttl {
		text-align: center;
	}
	.sec-download .box-right .cv-txt-bold {
		margin: 8vw auto 8vw;
		padding-left: 41%;
		font-size: 3.6vw;
	} 
	.sec-download .box-right .cv-txt {
		display: none;
	}
	.sec-download .box-right .btn-navy {
		margin: 4vw auto 0;
	}

	/* .sec-contact {
		width: 100%;
		padding: 5vw 0;
		background: #5eb0b1;
		text-align: center;
	} */
	.sec-contact img {
		width: 50%;
		max-width: 65px;
		margin: 0 auto 3vw;
	}
	.sec-contact .cv-txt {
		margin: 2vw auto 4vw;
	}
	.sec-contact .btn-navy {
		margin: 0 auto;
	}

	.sec-tel {
		width: 100%;
		padding: 5vw 0;
	}
	.sec-tel img {
		width: 50%;
		max-width: 65px;
		margin: 0 auto 3vw;
	}
	.sec-tel .cv-tel a {
		margin: 4vw auto 4vw;
		font-size: 10vw;
	}
	.sec-tel .cv-tel-caption {
		margin-bottom: 2vw;
		font-size: 3.4vw;
	}
	
	.sec-cv-thanks .sec-tel {
		width: 100%;
		padding: 5vw 0;
	}
	.sec-cv-thanks .cv-ttl {
		font-size: 4.8vw;
	}
}



/*---------- テキスト ----------*/
.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
}

@media (max-width: 768px) {
}


/*---------- ボタン ----------*/
a.btn-navy {
	width: 360px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2d487e;
	border-radius: 35px;
	color: #fff;
	font-weight: 400;
	line-height: 1;
	position: relative;
	font-size:18px;
}
a.btn-navy::after {
	content: '';
	width: 25px;
	height: 25px;
	background: url("../../img/common/icon_arrow_white.svg") center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 12.5px);
	right: 23px;
}

@media (max-width: 768px) {
	a.btn-navy {
		width: 100%;
		max-width: 300px;
		height: 12vw;
		border-radius: 6vw;
	}
	a.btn-navy::after {
		content: '';
		width: 3vw;
		height: 3vw;
		background: url("../../img/common/icon_arrow_white.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.5vw);
		right: 4vw;
	}
}

/*---------- footer ----------*/

/* pagetop
-----------------------------------------------------*/
@media (max-width: 768px) {
    
}

footer {
    width: 100%;
}

footer .copyright {
    width: 100%;
    padding: 30px 0;
    text-align: center;
	color: #333;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
    font-size: 13px;
}

@media (max-width: 768px) {
    footer {
        width: 100%;
    }

    footer .copyright {
        width: 100%;
        padding: 4vw 0;
        font-size: 2.8vw;
    }
}




.button {
  width: 360px;
  margin: 0 auto;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: .3s;
}

.button-text {
  font-size: 18px;
  font-weight: 600;
}

.bg-extend-left {
  padding: 25px;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-extend-left::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: -100%;
  top: 0;
  transition: .4s;
  z-index: -1;
}

.bg-extend-left:hover::before {
  left: 0;
}

.button-link:hover {
  color: rgb(70, 101, 255);
  transition: .3s;
}