@charset "UTF-8";
/* ----------------------------------------------------------------
共通
---------------------------------------------------------------- */
#contents {
  min-height: 100%;
}
#contents > .wrap {
  height: 100%;
}
@media screen and (max-width: 767px) {

}

/* ----------------------------------------------------------------
fv
---------------------------------------------------------------- */
#fv {
    position: fixed;
    z-index: -1;
    top: 0;   /* 画面上端から表示（ヘッダー分下げる場合は 75px 等に調整） */
    left: 0;
    width: 100vw;  /* ウィンドウの幅 100% */
    height: 100vh; /* ウィンドウの高さ 100% */
    overflow: hidden; /* 拡大した時のはみ出し防止 */
}

#fv .inner {
    width: 100%;
    height: 100%;
}

#fv img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を隙間なく、比率を保って表示 */
    transition: filter 0.4s ease, transform 0.4s ease; /* アニメーションを滑らかに */
}

/* スクロール時のスタイル（JSでクラスを付与） */
#fv.is-blurred img {
    filter: blur(10px);
    transform: scale(1.15); /* 白い縁を隠すために少し大きめに拡大 */
}

/* ----------------------------------------------------------------
tl_area
---------------------------------------------------------------- */
#tl_area {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 57px;
    padding: 100px 30px;
}#tl_area h2{
	    letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
	#tl_area {
    font-size: 27px;
    padding: 40px 0;
}
	#tl_area > .inner{
		padding-top: 0 !important;
	}
}
/* ----------------------------------------------------------------
list_area
---------------------------------------------------------------- */
.list_area{
	max-width: 780px;
	margin: 0 auto 100px;
	padding: 0 20px;
}
.list_area .tl {
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-weight: 500;
	margin-bottom: 20px;
}
.list_area .box dl{
	border-bottom: solid 1px #072D69;
	display: flex;
}
.list_area .box dl dt {
    width: 220px;
    position: relative;
    text-align: center;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list_area .box dl dt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #EAEDF3;
    z-index: -1;
    left: 0;
    top: 0;
	    opacity: 0.8;
}
.list_area .box dl dd{
	background: #fff;
	width: calc(100% - 220px);
	 padding: 35px 30px;
	    line-height: 1.5;
}
@media screen and (max-width: 767px) {
.list_area .tl {
    font-size: 19px;
    margin-bottom: 30px;
}
	.list_area .box dl {
    border-bottom: none;
    display: block;
}
.list_area .box dl dt {
    width: 100%;
    padding: 14px 10px;
}
.list_area .box dl dd {
    width: 100%;
    padding: 23px 25px;
}
.list_area {
    margin: 0 auto 50px;
}
}
/* ----------------------------------------------------------------
entry_btn
---------------------------------------------------------------- */
#entry_btn{   
background: #fff;
	padding: 100px 0;
	text-align: center;
}
#entry_btn > .inner{
		max-width: 780px;
	margin: 0 auto;
}
#entry_btn a{
	margin: auto;
	padding-right: 34px;
}
@media screen and (max-width: 767px) {
	#entry_btn {
    background: transparent;
    padding: 0 0 100px;
}
}