@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
/*font-family*/
.promo .mds,.promo-main-heading,.promo-subheading,.search h2,.news-header__more-btn,.news-header__title,.voice h2,.advantage h2 {
    font-family: serif;
	font-family: 'Noto Sans JP', sans-serif;
}
/* fvエリアのスタイル */
.fv {
    position: relative;
    height: 100vh;
    max-height: 700px; /* PCでの最大高さ */
    max-width: 1500px; /* 最大横幅を設定 */
    margin: 0 auto; /* 中央寄せ */
    overflow: hidden;
}
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-background-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* アスペクト比を保ちつつ全体をカバー */
}
.video-mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/home/mask.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.text-container {
    position: absolute; /* 他のレイヤーと重なるように変更 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* マスクより手前に表示 */
}
.fv_txt {
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
    .fv {
		max-height: 500px; /* 最大高さを変更 */
    }
	.fv_txt img {
		height: 450px !important;
		width: auto;
	}
}
.circle {
	position: absolute;
	z-index: 100;
	left: -12%;
	top: 20%;
	width: 30%;
}
.txt {
	position: absolute;
	z-index: 100;
	width: 95%;
	left: 2%;
	top: 55%;
	font-size:min(2.8vw,28px);
	line-height: 160%;
	color: #fff;
	font-weight: bold;
}
.txt img {
	margin-left: -2%;
}
@media screen and (max-width: 480px) {
.txt {
	width: 95%;
	top: 55%;
	font-size:min(4.5vw,28px);
	left: 2.5%;
}
.circle {
	top: 40%;
	width: 40%;
}
}
@media screen and (min-width: 481px) and (max-width: 767px) {
.txt {
	width: 90%;
	top: 35%;
	font-size:min(3.6vw,22px);
	left: 2.5%;
}
.circle {
	top: 20%;
	width: 40%;
	left: -20%;
}
}
/*NEWS*/
.news-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
	padding: 20px;
}
.news-header {
    flex-shrink: 0;
	text-align: center;
}
.news-header__title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.news-header__more-btn {
    display: inline-block;
    text-decoration: none;
    color: #444;
    padding: 0 35px;
    border-style: solid;
    border-width: 2px;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #F8A53B, #E65A26);
	font-size: 14px;
}
.news-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.news-item {
    display: flex;
    align-items: center;
    padding: 0 0;
}
.news-item__date {
    font-size: 1rem;
    color: #333;
    margin-right: 20px;
}
.news-item__category {
    background-color: #F37321;
    color: #fff;
    font-size: 0.875rem;
    padding: 0 5px;
	line-height: 150%;
    margin-right: 20px;
    white-space: nowrap;
}
.news-item__link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}
.news-item__link:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .news-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
    }
    .news-header {
		text-align: left !important;
        width: 100%;
    }
    .news-list {
		padding-top: 0;
		width: 100%;
    }
    .news-item {
		gap: 8px;
		border-bottom: 1px solid #dee2e6;
		padding-bottom: 16px;
    }
    .news-list li:last-child .news-item {
		border-bottom: none;
    }
    .news-item__date,
    .news-item__category {
		margin-right: 0;
    }
	.news-header__title {
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		font-size:200%;
	}
	.news-header__more-btn {
		font-size: 80%;
	}
}
.search {
	background-image: linear-gradient(45deg, #f15a24, #f7931e);
	text-align: center;
	padding: 30px 20px;
	color: #fff;
	max-width: 1500px;
	margin: auto;
}
.search h2 {
	font-size: min(5vw,33px);
	font-weight: bold;
	line-height: 170%;
}
@media (max-width: 480px) {
.search p {
	text-align: left;
}
}

.promo {
	background: #005b90;
	padding: 30px 0;
    color: #fff;
	max-width: 1500px;
	margin: auto;
}
.promo-container {
    text-align: center;
    max-width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.promo-subheading {
	font-size: min(4.5vw,33px);
    margin-bottom: 20px;
	font-weight: 500;
}

.promo-main-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.promo-tag {
    background: #fff;
    color: #f15a24;
	font-size: min(5.5vw,50px);
    padding: 10px;
    white-space: nowrap;
	font-weight: bold;
	margin-top: -0.8%;
}

.promo-title {
	font-size:5vw;
	font-size: min(6vw,55px);
    color: #fff;
    font-weight: bold;
}

.promo-divider {
    height: 3px;
    border: none;
    background: #fff;
	margin: 0 auto 10px;
	width: 90%;
}
.promo .mds {
	font-size: 150%;
	font-weight: bold;
}
.promo-container ol {
	margin: 10px 0;
}
.promo-container ol li {
	display: inline-block;
	font-size:80%;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0 5px;
	font-weight: bold;
	width: 18%;
	line-height: 120%;
}
.promo-container ol li img {
	display: block;
	border: 2px solid #f15a24;
	border-radius: 100%;
	padding: 15px;
	margin: 0 auto;
	background: #fff;
}

@media (max-width: 480px) {
	.promo-tag {
		padding: 0 5px;
		margin-top: -1.3%;
	}
.promo-container p.promo_txt {
	text-align: left;
	margin: 0 10px;
}
.promo-container ol li {
	font-size:2.5vw;
	width: 20%;
}
.promo-subheading {
    margin-bottom: 5px;
}
.promo .mds {
	font-size:3.5vw;
	line-height: 150%;
}
.promo_img {
	width: 95%;
}
}
.advantage {
	background: #ffffea;
	padding: 3% 10px 1%;
	position: relative;
	max-width: 1500px;
	margin: auto;
}
.advantage h2 {
    background: linear-gradient(90deg, #F8A53B, #E65A26);
	color:#fff;
	padding:10px;
	font-size:min(5vw,35px);
	font-weight: bold;
	line-height:150%;
	margin-bottom: 20px;
	display: inline-block;
}
/*voice*/
.voice {
	margin: 20px 0;
}
.voice h2 {
    background: #005b90;
	display: inline-block;
	margin: 0 auto 30px;
	color:#fff;
	padding:10px;
	font-size:min(5vw,35px);
	font-weight: bold;
	line-height:150%;
}
.voice ul li {
	text-align: center;
}
.voice ul li img {
	display: block;
	margin: auto;
}
.voice ul li p {
	display: block;
	margin: 1em auto;
	padding: 0;
	min-width: 120px;
	max-width: 412px;
	width: 100%;
	color: #005b90;
	font-weight: bold;
	font-size: 14px;
	background: #fff;
	line-height: 170%;
	text-align: center;
}
.slide-arrow {
	position:absolute;
	top:50%;
	margin-top:-25px;
	left:0;
	background: #005b90;
	width:50px;
	line-height:50px;
	padding:0;
	font-size:30px;
	color:#fff;
	z-index: 100;
	text-align: center;
}
.next-arrow {
	right: 0;
	left: auto;
}
.slick-dotted.slick-slider {
    margin-bottom: 70px !important;
}
/*5つのポイント*/
.point {
	max-width: 1200px;
	margin: 5% auto;
	position: relative;
	padding: 10px;
}
.point h2 {
	color: #009a7c;
	padding:10px;
	font-size:min(5vw,30px);
	font-weight: bold;
	text-align:left;
	line-height:150%;
	margin-bottom: 10px;
}
.point h2::after {
	content: "";
	display: block;
	width: 80%;
	border-bottom: 4px solid #009a7c;
	margin:5px 0;
}
.point h2 .sub {
	display: block;
	font-size: 80%;
}
.point ul li {
	color: #f7931eff;
	font-weight: bold;
}
.point ul li span {
	line-height: 100%;
	vertical-align: -6px;
	font-weight: bold;
}
.point .point_box {
	width: 60%;
	float: left;
}
.point .paral2 {
	float: right;
	width:40%;
	right: 0;
	top: 0;
	position: relative;
}
.point .paral2 .item1 {
	position: absolute;
	margin-top: 0%;
	width: 100%;
	z-index: -1;
}
.point .paral2 .item2 {
	position: absolute;
	margin-top: 70%;
	right: -35%;
	width: 80%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
.point .point_box {
	width: 100%;
	float: none;
}
.point .paral2 {
	width: 100%;
	float: none;
	right: 0;
	top: 0;
	position: relative;
	overflow: hidden;
}
.point .paral2 .item1 {
	position: relative;
	margin-top: 0%;
	width: 75%;
	z-index: -1;
}
.point .paral2 .item2 {
	position: absolute;
	margin-top: -60%;
	right: -15%;
	width: 65%;
	z-index: -1;
}
}