@charset "utf-8";

/*===============================================
●画面の横幅が769px以上
===============================================*/
@media screen and (min-width : 769px ){
#pc------------------------------------------- {
}
.helo {
	position: relative; /* 背景を絶対配置するための基準 */
	overflow: hidden;   /* ズームした画像が外にはみ出さないようにする */
	height: 95vh;
	margin-top: 70px;
	z-index: 0;         /* テキストが裏に隠れないようにする */
}

/* 追加: 背景画像共通のスタイル */
.helo-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-size: cover;
	opacity: 0;
	z-index: -1; /* テキストより後ろに配置 */
	transition: opacity 1.5s ease-in-out; /* ふわっと切り替わる秒数 */
	transform: scale(1.1);
}

/* 追加: 画像1と画像2の指定 */
.slide01 { background-image: url("../images/index/slide01.webp"); }
.slide02 { background-image: url("../images/index/slide02.webp"); } /* 2枚目のパス */

/* 追加: アクティブな背景にズームアニメーションを付与 */
.helo-bg.active {
	opacity: 1;
	animation: zoomUp 5s linear forwards; /* 6秒かけてズーム */
}

@keyframes zoomUp {
	0% { transform: scale(1); }
	100% { transform: scale(1.1); } /* 1.1倍までズーム */
}

/* --- 元のCSS（そのまま） --- */
.helo .inner {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row-reverse;
	padding-top: 80px;
}

/* 追加: 2枚目の時のレイアウト変更 */
/* ※いただいたCSSでは flex-direction が .inner にかかっていたため、.inner を操作しています */
.helo.is-slide2 .inner {
	flex-direction: row; 
}

.helo .inner h1 {
	writing-mode: vertical-rl;
	text-align: left;
	opacity: 1;
	transition: opacity 1s ease-in-out;
}
.helo .inner h1 span {
	display: inline-block;
	background-color: #fff;
	font-size: 28px;
	font-weight: 500;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left: 25px;
}
.helo .inner h1 span em {
	position: relative;
}





.about_section {
	margin-top: 110px;
	width: 1150px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 120px;
}
.about_section div {
	width: 390px;
}
.about_section h3 {
	font-size: 29px;
	font-weight: 500;
	line-height: 1.5em;
	margin-top: 25px;
}
.about_section div p {
	line-height: 2em;
	margin-top: 10px;
}
.about_section figure {
	width: 705px;
}





.service_section {
	background-color: #DFF5FA;
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}
.service_section .ttl {
	text-align: center;
}
.service_section .ttl span {
	font-size: 52px;
	color: #0096d2;
}
.service_section ul {
	display: flex;
	justify-content: space-between;
	width: 1150px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 45px;
}
.service_section ul li {
	width: 366px;
}
.service_section ul li a {
	color: #444444;
	font-size: 21px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}
.service_section ul li a figure {
	position: relative;
}
.service_section ul li a figcaption {
	transition: 0.3s;
	margin-top: 15px;
}
.service_section ul li a figcaption::after {
	content: "";
	background-image: url("../images/arrow_blue.svg");
	width: 11px;
	height: 14px;
	background-position: center center;
	background-size: cover;
	display: inline-block;
	margin-left: 10px;
	transition: 0.3s;
}
.service_section ul li a:hover figcaption {
	opacity: 0.7;
	transition: 0.3s;
}





.recruit_section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1098px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
	margin-bottom: 70px;
}
.recruit_section div {
	text-align: center;
}
.recruit_section div .ttl {
	text-align: center;
}
.recruit_section div .ttl span {
	font-size: 49px;
}
.recruit_section div .btn a {
	margin-top: 30px;
	background-color: #00D5B5;
}
.recruit_section figure {
	width: 700px;
}





.company_section {
	background-color: #009AD0;
	padding-top: 100px;
	padding-bottom: 100px;
}
.company_section .flex {
	display: flex;
	justify-content: space-between;
	width: 1155px;
	margin-left: auto;
	margin-right: auto;
}
.company_section .flex div {
	background-color: #fff;
	width: 550px;
	border-radius: 16px;
	padding-top: 55px;
	padding-bottom: 45px;
}
.company_section .flex div .ttl {
	text-align: center;
}
.company_section .flex div .ttl span {
	font-size: 43px;
	color: #009AD0;
	margin-bottom: 15px;
}
.company_section .flex div figure {
	margin-top: 30px;
	width: 441px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 35px;
}
.company_section .flex div+div .btn a {
	width: 360px;z
}





.news_section {
	padding-top: 100px;
	padding-bottom: 100px;
}
.news_section .ttl {
	text-align: center;
	margin-bottom: 25px;
}
.news_section .ttl span {
	font-size: 50px;
}
.news_section li {
	width: 870px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #000;
}
.news_section li:last-child {
	border-bottom: 1px solid #000;
}
.news_section li a {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: left;
	color: #343434;
	text-decoration: none;
	padding-left: 25px;
	padding-right: 25px;
	transition: 0.3s;
}
.news_section li a:hover {
	background-color: #DDFFF9;
	transition: 0.3s;
}
.news_section li a time {
	font-weight: 500;
	color: #000;
}
.news_section li a span.icon {
	background-color: #DFE0E0;
	font-size: 13px;
	font-weight: bold;
	width: 100px;
	height: 22px;
	line-height: 22px;
	display: inline-block;
	text-align: center;
	color: #000;
	margin-left: 35px;
	margin-right: 20px;
}
.news_section .btn a {
	background-color: #20D6B7;
	margin-top: 50px;
}
}



/*===============================================
●画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px){
	
/*===============================================
●sp-tablet
===============================================*/
#sptablet------------------------------------------- {
}
body {
	overflow-x: hidden;
}
.helo {
	position: relative; /* 背景を絶対配置するための基準 */
	overflow: hidden;   /* ズームした画像が外にはみ出さないようにする */
	height: 100vw;
	margin-top: 13.3333333333vw;
	z-index: 0;         /* テキストが裏に隠れないようにする */
}

/* 追加: 背景画像共通のスタイル */
.helo-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-size: cover;
	opacity: 0;
	z-index: -1; /* テキストより後ろに配置 */
	transition: opacity 1.5s ease-in-out; /* ふわっと切り替わる秒数 */
	transform: scale(1.1);
}

/* 追加: 画像1と画像2の指定 */
.slide01 { background-image: url("../images/index/slide01_sp.webp"); }
.slide02 { background-image: url("../images/index/slide02_sp.webp"); } /* 2枚目のパス */

/* 追加: アクティブな背景にズームアニメーションを付与 */
.helo-bg.active {
	opacity: 1;
	animation: zoomUp 5s linear forwards; /* 6秒かけてズーム */
}

@keyframes zoomUp {
	0% { transform: scale(1); }
	100% { transform: scale(1.1); } /* 1.1倍までズーム */
}

/* --- 元のCSS（そのまま） --- */
.helo .inner {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row-reverse;
	padding-top: 7vw;
}

/* 追加: 2枚目の時のレイアウト変更 */
/* ※いただいたCSSでは flex-direction が .inner にかかっていたため、.inner を操作しています */
.helo.is-slide2 .inner {
	flex-direction: row; 
}

.helo .inner h1 {
	writing-mode: vertical-rl;
	text-align: left;
	opacity: 1;
	transition: opacity 1s ease-in-out;
	color: #000;
}
.helo .inner h1 span {
	display: inline-block;
	background-color: #fff;
	font-size: 4.06666666667vw;
	font-weight: bold;
	padding-left: 1.5vw;
	padding-right: 1.5vw;
	padding-top: 2.5vw;
	padding-bottom: 5vw;
	margin-left: 2.5vw;
}
.helo .inner h1 span em {
	position: relative;
}





.about_section {
	margin-top: 10vw;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	margin-bottom: 10vw;
}
.about_section .ttl {
	margin-left: 8vw;
}
.about_section h3 {
	font-size: 5.06666666667vw;
	font-weight: 500;
	line-height: 1.5em;
	margin-top: 25px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.about_section div p {
	line-height: 2em;
	margin-top: 10px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.about_section figure {
	width: 90%;
	margin-top: 5vw;
}





.service_section {
	background-color: #DFF5FA;
	text-align: center;
	padding-top: 15vw;
	padding-bottom: 15vw;
}
.service_section .ttl {
	text-align: center;
}
.service_section .ttl span {
	color: #0096d2;
}
.service_section ul {
	margin-left: auto;
	margin-right: auto;
	margin-top: 5vw;
	margin-bottom: 8vw;
}
.service_section ul li {
	width: 80vw;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 6vw;
}
.service_section ul li a {
	color: #444444;
	font-size: 4.4vw;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}
.service_section ul li a figure {
	position: relative;
}
.service_section ul li a figure img {
	height: 52.8vw;
	object-fit: cover;
	border-radius: 3.06666666667vw;
}
.service_section ul li a figcaption {
	transition: 0.3s;
	margin-top: 3.5vw;
}
.service_section ul li a figcaption::after {
	content: "";
	background-image: url("../images/arrow_blue.svg");
	width: 3vw;
	height: 3.3vw;
	background-position: center center;
	background-size: cover;
	display: inline-block;
	margin-left: 2vw;
	transition: 0.3s;
}
.service_section ul li a:hover figcaption {
	opacity: 0.7;
	transition: 0.3s;
}





.recruit_section {
	margin-left: auto;
	margin-right: auto;
	margin-top: 15vw;
	margin-bottom: 15vw;
	width: 90%;
}
.recruit_section div {
	text-align: center;
}
.recruit_section div .ttl {
	text-align: center;
}
.recruit_section div .ttl span {
}
.recruit_section div .btn a {
	margin-top: 30px;
	background-color: #00D5B5;
}
.recruit_section figure {
	margin-top: 5vw;
}





.company_section {
	background-color: #009AD0;
	padding-top: 15vw;
	padding-bottom: 15vw;
}
.company_section .flex {
	margin-left: auto;
	margin-right: auto;
}
.company_section .flex div {
	background-color: #fff;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 4vw;
	padding-top: 8vw;
	padding-bottom: 6vw;
}
.company_section .flex div .ttl {
	text-align: center;
}
.company_section .flex div .ttl span {
	color: #009AD0;
}
.company_section .flex div figure {
	margin-top: 3vw;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5vw;
}
.company_section .flex div+div {
	margin-top: 10vw;
}
.company_section .flex div+div .btn a {
	width: 84%;
}





.news_section {
	padding-top: 15vw;
	padding-bottom: 15vw;
}
.news_section .ttl {
	text-align: center;
	margin-bottom: 5vw;
}
.news_section li {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #000;
}
.news_section li:last-child {
	border-bottom: 1px solid #000;
}
.news_section li a {
	display: block;
	padding-top: 3vw;
	padding-bottom: 3vw;
	text-align: left;
	color: #343434;
	text-decoration: none;
	transition: 0.3s;
}
.news_section li a:hover {
	background-color: #DDFFF9;
	transition: 0.3s;
}
.news_section li a time {
	font-weight: 500;
	color: #000;
}
.news_section li a span.icon {
	background-color: #DFE0E0;
	font-size: 3.5vw;
	font-weight: bold;
	display: inline-block;
	padding-left: 3vw;
	padding-right: 3vw;
	text-align: center;
	color: #000;
	margin-left: 3vw;
	margin-right: 20px;
}
.news_section li a span.icon+span {
	display: block;
	margin-top: 1vw;
}
.news_section .btn a {
	background-color: #20D6B7;
	margin-top: 7vw;
}
}



/*===============================================
●画面の横幅が400pxまで
===============================================*/
@media screen and (max-width:400px){
/*===============================================
●sp400
===============================================*/
#sp400------------------------------------------- {
}
}



/*===============================================
●画面の横幅が320pxまで
===============================================*/
@media screen and (max-width:320px){
/*===============================================
●sp320
===============================================*/
#sp320------------------------------------------- {
}
}



/*===============================================
●画面の横幅が481pxから768pxまで
===============================================*/
@media screen and (min-width:481px) and (max-width:768px) {
/*===============================================
●tablet
===============================================*/
#tab------------------------------------------- {
}
}