/*
2025-10-28
front-style.css
*/
.post-password-form{
	width:300px;
	margin:50px auto;
}
.post-password-form input{
	border:1px solid #000;
}
.top_mv{
	padding-top:74px;
	padding-bottom: 40px;
	background: #F5F8F8;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 599px) {
	.top_mv{
		padding-bottom: 0;
	}
}
.top_mv:after{
	content: '';
	background: url(images/top-mv.jpg);
	display: block;
	width: 50vw;
	height: 100%;
	background-size: cover;
	position: absolute;
	top:0;
	right: 0;
	z-index: -1;
}
@media screen and (max-width: 599px) {
	.top_mv:after{
		display: none;
	}
}
.top_mv_content{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:64px;
	align-items: flex-end;
	height: 520px;
}
@media screen and (max-width: 599px) {
	.top_mv_content{
		grid-template-columns: 1fr;
		height: auto;
		align-items: flex-start;
		gap:40px;
	}
}
.top_mv_txt{
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
@media screen and (max-width: 599px) {
	.top_mv_txt{
		padding-top: 50px;
	}
}
.top_mv_txt h1{
	color:#202020;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 10px;
	border-bottom: 1px solid #1498D3;
	display: inline-block;
	padding-bottom: 5px;
	white-space: nowrap;
}
@media screen and (max-width: 1099px) {
	.top_mv_txt h1{
		font-size: 3.73vw;
	}
}
@media screen and (max-width: 599px) {
	.top_mv_txt h1{
		font-size: 40px;
	}
}
@media screen and (max-width: 440px) {
	.top_mv_txt h1{
		font-size: 8.2vw;
	}
}
.top_mv_txt h1 small{
	font-size: 20px;
	display: block;
	letter-spacing: 2.3px;
	margin-bottom: 5px;
}
@media screen and (max-width: 1099px) {
	.top_mv_txt h1 small{
		font-size: 1.9vw;
		letter-spacing: .2vw;
	}
}
@media screen and (max-width: 599px) {
	.top_mv_txt h1 small{
		font-size: 20px;
		letter-spacing: 2.3px;
	}
}
@media screen and (max-width: 440px) {
	.top_mv_txt h1 small{
		font-size: 3.8vw;
	}
}
.top_mv_txt h1 span{
	color:#1498D3;
}
.top_mv_txt p{
	font-size: 20px;
	font-weight: bold;
	white-space: nowrap;
}
@media screen and (max-width: 1099px) {
	.top_mv_txt p{
		font-size: 1.87vw;
	}
}
@media screen and (max-width: 599px) {
	.top_mv_txt p{
		font-size: 20px;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 440px) {
	.top_mv_txt p{
		font-size: 4vw;
	}
}
@media screen and (max-width: 599px) {
	.top_mv_visual{
		position: relative;
		padding: 60px 0;
	}
	.top_mv_visual:after{
		content: '';
		background: url(images/top-mv.jpg);
		display: block;
		width: 101vw;
		height: 100%;
		background-size: cover;
		position: absolute;
		bottom:0;
		left: -6%;
		z-index: -1;
	}
}
.top_mv_link{
	width:100%;
	text-align: center;
	color:#005183;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}
.top_mv_link a{
	border-radius: 80px;
	padding: 8px;
	height: 64px;
	color:#fff;
	background: #005183;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 8px;
	align-items: center;
	font-weight: bold;
}
.top_mv_link._white{
	color:#fff;
}
.top_mv_link._white a{
	background: #fff;
	color:#1498D3;
}

.top_slider p{
	font-weight: bold;
	padding-top:30px;
}
.top_slider_container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px 40px; /* 上下のスライダー間隔 */
  padding: 40px 0 80px;

}

/* 各スライダー */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slides {
  display: flex;
  width: max-content;
  animation: slide-left 60s linear infinite;
}

.slides.alternate {
  animation: slide-right 60s linear infinite;
}

/* スライド内の画像配置 */
.slide {
  display: flex;
  align-items: center;
  gap: 40px 50px; /* ロゴ間の余白 */
  margin-right: 50px;
}

/* ロゴ画像：比率維持＆高さ統一 */
.slide img {
  height: 40px; /* ← 全ロゴの高さを統一（調整OK） */
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.slide img._h30{
	height: 30px
}
.slide img._h25{
	height: 25px
}
.slide img._h20{
	height: 20px
}


/* 左→右流れ */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 右→左流れ（下段交互） */
@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ▼レスポンシブ対応（スマホでロゴを小さく） */
@media screen and (max-width: 768px) {
  	.slide img {
   		height: 20px;
   	 	gap: 40px 20px;
  	}
	.slide img._h30{
		height: 15px
	}
	.slide img._h25{
		height: 10px
	}
	.slide img._h20{
		height: 10px
	}
  	.top_slider_container {
    	gap: 24px;
    	padding: 20px 0;
  	}
}



.top_service_menu{
	display: grid;
  	grid-auto-columns: 1fr;
  	grid-auto-flow: column;
  	border-left: 1px solid #0169D3;
  	border-right: 1px solid #0169D3;
  	margin:80px 0;
}
@media screen and (max-width: 799px) {
	.top_service_menu{
		grid-auto-columns: auto;
		grid-auto-flow: row;
		grid-template-columns: 1fr 1fr;
		gap:20px 0;
		border:0;
	}
}
.top_service_menu li{
	text-align: center;
	height: 56px;
}
@media screen and (max-width: 799px) {
	.top_service_menu li:nth-child(1){
		border-left: 1px solid #0169D3;
		border-right: 1px solid #0169D3;
	}
	.top_service_menu li:nth-child(3){
		border-left: 1px solid #0169D3;
	}
}
.top_service_menu li + li{
	border-left: 1px solid #0169D3;
}
@media screen and (max-width: 799px) {
	.top_service_menu li + li{
		border-left: 0;
		border-right: 1px solid #0169D3;
	}
}
.top_service_menu li a{
	display: block;
	color:#0169D3;
	font-size: 22px;
	font-weight: bold;
	position: relative;
}
@media screen and (max-width: 1099px) {
	.top_service_menu li a{
		font-size: 20px;
	}
}
@media screen and (max-width: 599px) {
	.top_service_menu li a{
		font-size: 17px;
	}
}
.top_service_menu li a:after {
	content:'';
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right:8px solid transparent;
	border-top: 8px solid #0169D3;
	position: absolute;
	bottom:-13px;
	left: 50%;
	transform: translateX(-50%);
}
.top_service_title h2{
	font-family: 'Noto Sans JP', sans-serif;
	font-size:32px;
	color:#B9CBD3;
	font-weight: bold;
}
.top_service_title h2 span{
	font-size:40px;
	color:#1498D3;
}
.top_service_title p{
	font-weight: bold;
	font-size: 20px;
}
@media screen and (max-width: 991px) {
	.top_service_title p br{
		display: none;
	}
}
.top_service_content{
	width: 1140px;
	margin-left: -20px;
	padding-top: 40px;
}
@media screen and (max-width: 1150px) {
	.top_service_content{
		width: 100%;
		margin-left: 0;
	}
}
.top_service_box{
	border:0.2px solid #1498D3;
	margin: 0 auto 40px;
	padding: 65px 0;
}
@media screen and (max-width: 1099px) {
	.top_service_box{
		padding: 50px 0;
	}
}
.service_info{
	padding: 0 105px;
	margin-bottom: 40px;
	display: grid;
	gap:64px;
	grid-template-columns: 2fr minmax(180px, 1fr);
}
@media screen and (max-width: 1099px) {
	.service_info{
		padding: 0 50px;
	}
}
@media screen and (max-width: 799px) {
	.service_info{
		grid-template-columns: 1fr;
		padding: 0 25px;
	}
}
@media screen and (max-width: 599px) {
	.service_info{
		padding: 0 25px;
	}
}
.service_info_txt h3{
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 8px;
	color:#0169D3;
}
.service_info_txt dl{
	display: grid;
	grid-template-columns: 54px 1fr;
	margin:8px 0;
	grid-gap: 8px;
	align-items: self-start;
	font-weight: normal;
}
.service_info_txt dl dt{
	font-size: 12px;
	color:#0169D3;
	border:1px solid;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 7px;
	margin-top: 2px;
}
.service_info_txt ul{
	list-style:none;
	list-style-position: inside;
}
.service_info_txt ul li+li{
	margin-top: 30px;
}
.service_info_txt ul li{
	font-weight:bold;
}
.service_info_img{
	width: 100%;
	max-width: 300px;
	margin: auto;
}

.service_option{
	padding: 0 105px;
}
@media screen and (max-width: 1150px) {
	.service_option{
		padding: 0 50px;
	}
}
@media screen and (max-width: 599px) {
	.service_option{
		padding: 0 25px;
	}
}
.service_option_title{
	display: flex;
	align-items: baseline;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.service_option_title h4{
	font-family: 'Noto Sans JP', sans-serif;
	font-size:24px;
	color:#B9CBD3;
	font-weight: bold;
	margin-right: 16px;
}
@media screen and (max-width: 599px) {
	.service_option_title h4{
		width: 100%;
		margin-right: 0;
	}
}
.service_option_title h4 span{
	font-size: 32px;
	color:#1498D3;
}
.service_option_title p{
	font-weight: bold;
	font-size: 20px;
	margin-left: 8px;
}
@media screen and (max-width: 599px) {
	.service_option_title p{
		font-size: 16px;
	}
}
.service_option_list dt{
	background: #0169D3;
	color:#fff;
	font-weight: bold;
	padding: 4px 10px;
	margin-bottom: 8px;
	display: inline-block;
	border-radius: 7px;
}
.service_option_list dd{
	margin-bottom: 16px;
}
.service_btn{
	margin-top: 24px;
	display: block;
	border:1px solid;
	border-radius: 64px;
	padding:16px 0;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	max-width: 100%;
}
.service_btn._short{
	display: inline-block;
	padding:9px 32px;
}
@media screen and (max-width: 599px) {
	.service_btn._short{
		width: 100%;
	}
}
.service_btn._long{
	max-width: 520px;
}
.service_channel{
	padding: 20px 60px 0;
}
@media screen and (max-width: 1099px) {
	.service_channel{
		padding: 20px 30px 0;
	}
}
@media screen and (max-width: 599px) {
	.service_channel{
		padding: 20px 25px 0;
	}
}
.service_channel + .service_channel{
	margin-top: 20px;
}
.service_channel_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	width: 420px;
}
@media screen and (max-width: 599px) {
	.service_channel_title{
		display: block;
		width: 100%;
	}
}
.service_channel_title h4{
	font-weight: bold;
	font-size: 24px;
}
@media screen and (max-width: 599px) {
	.service_channel_title h4{
		text-align: center;
		margin-bottom: 10px;
	}
}
.service_channel_title .service_btn{
	margin-top: 0;
}
.service_channel_list{
	margin-top: 10px;
	width:calc(100% + 20px);
	margin-left:-10px;
}
.service_contact{
	max-width: 815px;
	width: 100%;
	margin: 56px auto 0;
}
@media screen and (max-width: 1099px) {
	.service_contact{
		padding: 0 30px;
	}
}
@media screen and (max-width: 599px) {
	.service_contact{
		padding: 0 25px;
	}
}
.service_contact_title{
	color: #0069D3;
	font-weight: bold;
	font-size: 26px;
	text-align: center;
	margin-bottom: 8px;
}
@media screen and (max-width: 799px) {
	.service_contact_title {
		font-size: 3.5vw;
	}
}
@media screen and (max-width: 599px) {
	.service_contact_title {
		font-size: 23px;
		text-align: left;
	}
	.service_contact_title  br{
		display: none;
	}
}
.service_contact .service_btn{
	margin: 24px auto 0;
}

.top_info{
	padding: 70px 0;
}
.top_info_title{
	display: flex;
	color:#000;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 8px;
}
.top_info_title h2{
	font-size: 36px;
	color:#000;
	font-weight: bold;
}
.top_info_list{
	display: flex;
}
@media screen and (max-width: 1099px) {
	.top_info_list{
		gap:30px;
	}
}
@media screen and (max-width: 799px) {
	.top_info_list{
		display: block;
	}
}
.top_info_title{
	font-weight: bold;
}
.top_info_company{
	width: 630px;
}
@media screen and (max-width: 1099px) {
	.top_info_company{
		width: 50%;
	}
}
@media screen and (max-width: 799px) {
	.top_info_company{
		width: 100%;
	}
}
.top_info_company .top_info_title{
	margin-right: 30px;
}
@media screen and (max-width: 1099px) {
	.top_info_company .top_info_title{
		display: block;
		margin-right: 0;
	}
}

.top_info_img{
	position: relative;
}
.top_info_img:after{
	content:'';
	background: #fff;
	width: 30px;
	height: 100%;
	border-top-left-radius: 32px;
	border-bottom-left-radius: 32px;
	position: absolute;
	right:0;
}
@media screen and (max-width: 799px) {
	.top_info_img:after{
		display: none;
	}
}

.top_info_img img{
	border-top-left-radius: 32px;
	border-bottom-left-radius: 32px;
	width: 100%;
	position: relative;
}
@media screen and (max-width: 799px) {
	.top_info_company img{
		border-radius: 32px;
	}
}
.top_info_sns{
	width: calc(100% - 600px);
	display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
@media screen and (max-width: 1099px) {
	.top_info_sns{
		width: 50%;
	}
}
@media screen and (max-width: 799px) {
	.top_info_sns{
		width: 100%;
	}
}
.top_info_sns .top_info_title{
	margin-left: 30px;
}
@media screen and (max-width: 1099px) {
	.top_info_sns .top_info_title{
		display: block;
		margin-left: 0;
	}
}
.top_info_link{
	height: 100%;
	width: 100%;
}
.top_info_link a{
	margin-left: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
}
@media screen and (max-width: 799px) {
	.top_info_link a{
		margin-left: 0;
		padding-top: 30px;
	}
}

