@charset "utf-8";

/* fadein
---------------------------------------------------- */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 500ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


/* main
---------------------------------------------*/
main {
	width: 100%;
	height: 700px;
	background-image: url(../images/mv.jpg);
	background-position: center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 70px;
	box-sizing: border-box;
}
main .mv_text {
	text-align: center;
}
main .mv_text .mv_title div:nth-child(1) {
	font-size: 45px;
	line-height: 1.5;
	font-weight: 600;
	padding-bottom: 15px;
}
main .mv_text .mv_title div:nth-child(2) {
	font-size: 18px;
}
main .mv_text .mv_title-en div:nth-child(1) {
	font-size: 102px;
	line-height: 1.5;
	font-weight: 600;
}
main .mv_text .mv_title-en div:nth-child(2) {
	font-size: 18px;
	font-weight: 600;
}

main .mv_text .mv_title div:nth-child(1) {
	clip-path: inset(0 100% 0 0);
	animation: textanimation 1.5s 0s forwards;
	margin: 0;
}
main .mv_text .mv_title div:nth-child(2) {
	clip-path: inset(0 100% 0 0);
	animation: textanimation 1.75s 0.25s forwards;
	margin: 0;
}
main .mv_text .mv_title-en div:nth-child(1) {
	clip-path: inset(0 100% 0 0);
	animation: textanimation 2s 0.5s forwards;
	margin: 0;
}
main .mv_text .mv_title-en div:nth-child(2) {
	clip-path: inset(0 100% 0 0);
	animation: textanimation 2.25s 0.75s forwards;
	margin: 0;
}

@keyframes textanimation {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0);
    }
}


/* worries
---------------------------------------------*/
.worries {
	padding-top: 100px;
}
.worries h2 {
	font-size: 48px;
	line-height: 1.5;
	text-align: center;
	font-weight: 700;
}
.worries ul {
	margin: 40px 0;
	display: grid;
	column-gap: 30px;
	grid-template-columns: 1fr 1fr 1fr;
}
.worries ul li {
	border: 1px solid #33405a;
	padding: 10px;
	border-radius: 15px;
}
.worries ul li figure {
	position: relative;
}
.worries ul li figure img {
	width: 100%;
}
.worries ul li figure .inner {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 170px;
	padding-top: 30px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/worries_bg.png);
	background-position: center top;
	background-size: cover;
}
.worries ul li figure .inner p {
	font-size: 18px;
	text-align: center;
}
.worries p.lead {
	font-size: 48px;
	line-height: 1.5;
	text-align: center;
	font-weight: 700;
}
.worries p.lead span {
	color: #cf683c;
}


/* about
---------------------------------------------*/
.about {
	padding: 160px 0 100px;
	background-image: url(../images/about_arr.png), url(../images/about_bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 81px, cover;
	background-position: center top, center center;
}
.about h2 + p {
	margin-top: 25px;
}
.about p {
	text-align: center;
	font-size: 20px;
	line-height: 2.2;
	margin-top: 50px;
}
.about .js-scrollable {
	max-width: 100%;
	margin-top: 50px;
}


/* offer
---------------------------------------------*/
.offer {
	padding: 80px 0 100px;
}
.offer ul {
	margin-top: 30px;
}
.offer ul li {
	counter-increment: reason;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
	gap: 50px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 20px 60px 20px 20px;
	background: linear-gradient(to right, rgba(0, 10, 40, 0.15), rgba(120, 0, 255, 0.15));
}
.offer ul li:nth-of-type(even) {
	padding: 20px 20px 20px 60px;
}
.offer ul li:nth-of-type(even) figure {
	order: 2;
}
.offer ul li figure {
	width: 100%;
	max-width: 542px;
	flex-shrink: 0;
	margin-bottom: auto;
	border: 1px solid #33405a;
	padding: 10px;
	border-radius: 15px;
}
.offer .block__text {
	box-sizing: border-box;
	width: 100%;
	max-width: calc(100% - 620px);
}
.offer ul li h3 {
	font-size: 36px;
	line-height: 1.4em;
	color: #fff;
	padding-bottom: 12px;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	margin: 0 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
}
.offer ul li h3:before {
	content: "";
	width: 120px;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	background: #e58e68;
}
.offer ul li h3:after {
	content: counter(reason, decimal-leading-zero);
	font-family: "Roboto";
	font-weight: 900;
	-webkit-text-stroke: 1px rgba(180, 210, 255, 0.5);
	font-size: 108px;
	line-height: 1em;
	color: transparent;
}
.offer ul li h4 {
	font-size: 18px;
	color: #e58e68;
	padding-top: 10px;
}


/* reason
---------------------------------------------*/
.reason {
	padding: 80px 0 100px;
	background-image: url(../images/reason_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.reason h2 + p {
	margin-top: 25px;
}
.reason p {
	text-align: center;
	font-size: 20px;
	line-height: 2.2;
	margin-top: 50px;
}


/* swiper
---------------------------------------------*/
.swiper {
	padding: 36px 0;
	width: 100%;
	overflow: hidden;
	background-color: #0b0f42;
	border-top: 1px solid #303d58;
	border-bottom: 1px solid #303d58;
	position: relative;
}
.swiper .ttl {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	height: 100%;
}
.swiper .swiper-wrapper {
	transition-timing-function: linear;
}
.swiper .swiper-wrapper .swiper-slide {
	width: 180px;
	height: 80px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.swiper .swiper-wrapper .swiper-slide img {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}


/* service
---------------------------------------------*/
.service {
	padding: 80px 0 100px;
}
.service ul {
	margin-top: 30px;
	display: grid;
	column-gap: 40px;
	grid-template-columns: 1fr 1fr;
}
.service ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border-radius: 12px;
	border-bottom: 5px solid #e58e68;
	background-image: url(../images/service_arr.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	transition: all .2s ease-in;
}
.service ul li:hover {
	opacity: 0.7;
}
.service ul li a {
	padding: 40px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.service ul li p {
	font-size: 16px;
	line-height: 2.1;
	color: #333333;
}
.service ul li img {
	padding-right: 25px;
	max-width: 40%;
}


/* news
---------------------------------------------*/
.news {
	padding: 100px 0;
	background-image: url(../images/news_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.news .contents {
	display: grid;
	grid-template-columns: 250px 1fr;
}
.news .contents ul {
	border-top: 1px solid #3b3f67;
}
.news .contents ul li {
	border-bottom: 1px solid #3b3f67;
}
.news .contents ul li a {
	padding: 20px 60px 20px 15px;
	display: block;
	position: relative;
}
.news .contents ul li a::before,
.news .contents ul li a::after{
	position: absolute;
	content: "";
}
.news .contents ul li a::before{
	width: 25px;
	height: 25px;
	right: 20px;
	bottom: 20px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #FFF;
}
.news .contents ul li a::after{
	width: 7px;
	height: 7px;
	right: 28px;
	bottom: 28px;
	border-top: 2px solid #d05f2f;
	border-right: 2px solid #d05f2f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.news .contents ul li a .date {
	margin-bottom: 10px;
}
.news .contents ul li a .date span {
	background: linear-gradient(to right, #e16732, #ec916a);
	padding: 5px 20px;
	border-radius: 50px;
	margin-left: 25px;
	color: #FFF;
}


/* ttl_h2
---------------------------------------------*/
.ttl_h2 {
	display: table;
	margin: 0 auto;
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	background: linear-gradient(90deg, #cf683c 0%, #f2a483 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* btn_area
---------------------------------------------*/
.btn_area {
	padding: 80px 0;
}
.btn_area a {
	display: block;
	width: 600px;
	line-height: 80px;
	text-align: center;
	font-size: 24px;
	color: #FFF;
	margin: 0 auto;
	border-radius: 10px;
	background: linear-gradient(to right, #e16732, #ec916a);
	position: relative;
	background-color: #e16732;
}
.btn_area a:hover {
	background: #FFF;
	background-color: #FFF;
	color: #cf683c;
}
.btn_area a::before,
.btn_area a::after{
	position: absolute;
	content: "";
}
.btn_area a::before{
	width: 25px;
	height: 25px;
	right: 20px;
	top: 50%;
	margin-top: -12px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #FFF;
}
.btn_area a::after{
	width: 7px;
	height: 7px;
	right: 28px;
	top: 50%;
	margin-top: -4px;
	border-top: 2px solid #d05f2f;
	border-right: 2px solid #d05f2f;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



@media screen and (max-width: 1200px){

/* main
---------------------------------------------*/
main .mv_text .mv_title div:nth-child(1) {
	font-size: 30px;
}
main .mv_text .mv_title-en div:nth-child(1) {
	font-size: 90px;
}


/* about
---------------------------------------------*/
.about p {
	text-align: left;
}


/* offer
---------------------------------------------*/
.offer ul li {
	gap: 30px;
	padding: 20px;
}
.offer ul li:nth-of-type(even) {
	padding: 20px;
}
.offer ul li figure {
	max-width: calc(50% - 30px);
}
.offer .block__text {
	max-width: calc(50% - 30px);
}
.offer ul li h3:after {
	font-size: 80px;
}


/* reason
---------------------------------------------*/
.reason p {
	text-align: left;
}

}

@media only screen and (max-width: 767px) {

/* main
---------------------------------------------*/
main {
	height: 400px;
	padding-top: 75px;
}
main .mv_text {
	text-align: center;
}
main .mv_text .mv_title div:nth-child(1) {
	font-size: 20px;
}
main .mv_text .mv_title div:nth-child(2) {
	font-size: 16px;
}
main .mv_text .mv_title-en div:nth-child(1) {
	font-size: 45px;
}
main .mv_text .mv_title-en div:nth-child(2) {
	font-size: 16px;
}


/* worries
---------------------------------------------*/
.worries {
	padding-top: 50px;
}
.worries h2 {
	font-size: 24px;
}
.worries ul {
	margin: 40px 0;
	row-gap: 30px;
	grid-template-columns: 1fr;
}
.worries ul li figure .inner p {
	font-size: 16px;
}
.worries p.lead {
	font-size: 24px;
}


/* about
---------------------------------------------*/
.about {
	padding: 80px 0 50px;
	background-size: 100% 30px, cover;
}
.about h2 + p {
	margin-top: 25px;
}
.about p {
	text-align: left;
	font-size: 16px;
	margin-top: 30px;
}
.about p br {
	display: none;
}
.about .js-scrollable {
	margin-top: 30px;
}


/* offer
---------------------------------------------*/
.offer {
	padding: 50px 0 20px;
}
.offer ul {
	margin-top: 30px;
}
.offer ul li {
	padding: 10px;
}
.offer ul li:nth-of-type(even) {
	padding: 10px;
}
.offer ul li:nth-of-type(even) figure {
	order: inherit;
}
.offer ul li figure {
	max-width: 100%;
}
.offer .block__text {
	max-width: 100%;
}
.offer ul li h3 {
	font-size: 24px;
}
.offer ul li h3:after {
	font-size: 60px;
}


/* reason
---------------------------------------------*/
.reason {
	padding: 50px 0;
}
.reason h2 + p {
	margin-top: 20px;
}
.reason p {
	text-align: left;
	font-size: 16px;
	margin-top: 30px;
}


/* swiper
---------------------------------------------*/
.swiper {
	padding: 10px 0;
}


/* service
---------------------------------------------*/
.service {
	padding: 50px 0;
}
.service ul {
	margin-top: 30px;
	row-gap: 40px;
	grid-template-columns: 1fr;
}
.service ul li a {
	display: block;
}
.service ul li p {
	font-size: 15px;
}
.service ul li img {
	padding-right: 0;
	max-width: 50%;
	display: block;
	margin: 0 auto 20px;
}


/* news
---------------------------------------------*/
.news {
	padding: 50px 0;
}
.news .contents {
	display: block;
}
.news .contents ul {
	margin-top: 30px;
}
.news .contents ul li a {
	padding: 10px 0;
}


/* ttl_h2
---------------------------------------------*/
.ttl_h2 {
	font-size: 28px;
}


/* btn_area
---------------------------------------------*/
.btn_area {
	padding: 30px 0;
}
.btn_area a {
	width: 90%;
	line-height: 60px;
	font-size: 18px;
}


/* scrollable
---------------------------------------------*/
.js-scrollable img {
	margin: 0!important;
	max-width: 720px!important;
}


}