@charset "UTF-8";
/* ----------------------------------------------------------------
共通
---------------------------------------------------------------- */

/* ----------------------------------------------------------------
FV
---------------------------------------------------------------- */
#fv {
    width: 100%;
    height: 100lvh;
    position: relative;
    overflow: hidden;
}
#fv .inner{
	    height: 100%;
}
#fv .inner:before{
	    content: "";
    position: absolute;
	width: 100%;
	height: 10%;
    bottom: 75px;
	background: #072D69;
	z-index: 2;
}
#fv .video_bg video{
   width: 100%;
    height: calc(100% - 75px);
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
	    z-index: -1;
}
#fv .video_bg:before{
		    content: "";
    position: absolute;
	width: 50%;
	height:calc(100% - 75px);
		background: #072D69;
	z-index: 0;
	top: 0;
	left: 0;
}
#fv .fv_img {
    transform: skewX(-15deg);
    width: 57%;
    margin-left: auto;
    transform-origin: 100% 0%;
    height: 90%;
    overflow: hidden;
    position: relative;
    right: 211px;
}
#fv .fv_img img {
    display: none;
    position: absolute;
    top: 0;
    width: 110vw;
    object-fit: cover;
    transform-origin: 100% 0%;
    transform: skewX(15deg);
    height: 66vh;
    left: -5%;
    scale: 1.4;
}
#fv .fv_img img.active {
  display: block;
}
#fv .red_line {
    position: absolute;
    transform-origin: 100% 0%;
    transform: skewX(-15deg);
    right: 210px;
    background: #E30222;
    height: 100%;
    width: 78px;
    top: 0;
    z-index: 1;
}
#fv .red_line:before{
    content: "";
    position: absolute;
    height: 78px;
    bottom: 0;
    width: 50vw;
    background: #E30222;
}
#fv .fv_txt {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 25%;
    left: 5%;
}
#fv .fv_txt .main{
	    font-size: clamp(2.9rem, 1.845rem + 5.27vw, 5.8rem);
    font-weight: 600;
	    line-height: 1.6;
}
#fv .fv_txt .eng_f{
	    font-size: clamp(1rem, 0.745rem + 1.27vw, 1.7rem);
}
@media screen and (max-width: 1025px) {
  /*tablet*/
#fv .inner:before{
    bottom: 60px;
	height: 8%;
}
#fv .video_bg video{
    height: calc(100% - 60px);
	    width: 35%;
	        right: 0;
        left: auto;
}
#fv .video_bg:before{
	height:calc(100% - 60px);
}
#fv .fv_img {
    width: 90%;
    transform-origin: left bottom;
    right: auto;
    left: -25%;
}
#fv .red_line {
    transform-origin: left calc(100% - 10%);
    right: 25%;
    left: auto;
    width: 40px;
}
#fv .fv_txt {
    top: 3%;
    left: 5%;
}
#fv .fv_txt .main {
    font-size: 2.5em;
}
#fv .fv_txt .eng_f {
    font-size: 0.8em;
}
}
/* ===============================
   FV intro animation
   =============================== */

/* 初期：FV全体を非表示（フェードイン前） */
#fv{
  opacity: 0;
  transition: opacity 0.9s ease;
}

/* フェードイン開始 */
#fv.is-ready{
  opacity: 1;
}

/* fv_txt：最初は「下に隠れている」状態 */
#fv .fv_txt{
  opacity: 0;
}

#fv .fv_txt .main,
#fv .fv_txt .eng_f{
  display: block;
  transform: translateY(110%);
}

/* クリップで“隠れ”を作る（カットイン感が出る） */
#fv .fv_txt{
  overflow: hidden;
}

/* フェードイン後にテキスト出現 */
#fv.is-txt .fv_txt{
  opacity: 1;
  transition: opacity 0.25s ease;
}

/* カットイン（下から上へ） */
#fv.is-txt .fv_txt .main,
#fv.is-txt .fv_txt .eng_f{
  transform: translateY(0);
  transition: transform 0.85s cubic-bezier(.2,.8,.2,1);
}

/* 英文だけ少し遅らせる */
#fv.is-txt .fv_txt .eng_f{
  transition-delay: 0.12s;
}

/* motion苦手な人向け */
@media (prefers-reduced-motion: reduce){
  #fv, #fv .fv_txt, #fv .fv_txt .main, #fv .fv_txt .eng_f{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ----------------------------------------------------------------
message
---------------------------------------------------------------- */
#message{
	position: relative;
	padding: 75px 0 150px;
	    overflow: hidden;
}
#message:before,
#message:after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	    transform-origin: left bottom;
	    transform: skewX(-15deg);
}
#message:before{
    background: #CBCBCB;
    height: 100%;
    width: 30%;
}
#message .inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 80%;
    position: relative;
}
#message .inner p{
	 max-width: 600px;
	width: 100%;
	    line-height: 1.8;
}
@media screen and (max-width: 767px) {
	/*Spのみ*/
#message {
    padding: 40px 0;
}
	#message:before{
		content: none;
	}
}
/* ----------------------------------------------------------------
btn_area
---------------------------------------------------------------- */
#btn_area .inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background: #CBCBCB;
	padding: 5px 0;
}
#btn_area .btn_box{
	height: 420px;
	width: 50%;
}
#btn_area .btn_box:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    width:54.5%;
	    margin-right: -5%;
}
#btn_area .btn_box:nth-child(2) {
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    width: 54.5%;
}
#btn_area .btn_box a {
    display: flex;
	position: relative;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#btn_area .btn_box a:before,
#btn_area .btn_box a:after{
	content: "";
	position: absolute;
	   height: 100%;
    width: 100%;
	top: 0;
	left: 0;
}
#btn_area .btn_box a > *{
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}
#btn_area .btn_box a:hover{
	text-decoration: none;
}
#btn_area .btn_box:nth-child(1) a:before{
	background: url("../img/btn_bg01.jpg") center center;
	background-size: cover;
}
#btn_area .btn_box:nth-child(2) a:before{
	background: url("../img/btn_bg02.jpg") center center;
	background-size: cover;
}
#btn_area .btn_box a:after{
	background: #072d6970;
}
#btn_area .btn_box a .txt_box{
		    width: 100%;
}
#btn_area .btn_box a .main_txt{
	font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
	letter-spacing: 0;
	margin-bottom: 20px;
}
#btn_area .btn_box a .sub_txt{
	font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	    font-weight: 500;
}
#btn_area .btn_anime{
	width:300px;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
#btn_area .btn_anime p{
	font-size: 0.9em;
	width: 84px;
	height: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #fff;
	border-radius: 45px;
}
#btn_area .btn_anime:before,
#btn_area .btn_anime:after{
	content: "";
	position: absolute;
}
#btn_area .btn_anime:before{
	width: calc(100% - 75px);
	left: 0;
	top: 50%;
	background: #fff;
	height: 1px;
}
#btn_area .btn_anime:after{
	width: 18px;
	height: 10px;
	background: #fff;
	left: 0;
	top: calc(50% - 5px);
}
@media screen and (min-width: 1026px) {
	/*PCのみ*/
/* ===== アニメーション共通の時間 ===== */
:root{
  --btnEase: cubic-bezier(.22,.61,.36,1);
  --btnDur: 0.8s; /* ゆっくり */
}

/* ① 背景画像レイヤー（a:before）を拡大できるようにする */
#btn_area .btn_box a{
  overflow: hidden; /* 拡大してもはみ出さない */
}

#btn_area .btn_box a:before{
  transform: scale(1);
  transition: transform var(--btnDur) var(--btnEase);
  will-change: transform;
}

/* ホバーでゆっくり拡大（戻りも同じtransitionでゆっくり） */
#btn_area .btn_box a:hover:before{
  transform: scale(1.08); /* 好みで 1.05〜1.12 くらい */
}

/* ② 丸ボタン：背景白＆文字色変更 */
#btn_area .btn_anime p{
  background-color: transparent;
  color: #fff;
  transition:
    background-color var(--btnDur) var(--btnEase),
    color var(--btnDur) var(--btnEase);
}

/* 親aをホバーした時に変化させる */
#btn_area .btn_box a:hover .btn_anime p{
  background-color: #fff;
  color: #15417E;
}

/* ③ 矢印（btn_anime:after）を右へ移動 */
#btn_area .btn_anime:after{
  left: 0;
  transform: translateX(0);
  transition: transform var(--btnDur) var(--btnEase);
}

/* ホバーで右へ */
#btn_area .btn_box a:hover .btn_anime:after{
  transform: translateX(calc(300px - 100px));
}


}
@media screen and (max-width: 767px) {
	/*Spのみ*/
	#btn_area{
		overflow: hidden;
	}
#btn_area .btn_box {
    height: auto;
	position: relative;
	        padding-bottom: 10px;
        background: #CBCBCB;
}
#btn_area .btn_box:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #cbcbcb;
    transform-origin: 100% 0%;
    clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
    left: calc(100% - 85px);
}
#btn_area .btn_box:nth-child(2):before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
    left: auto;
    transform-origin: 0 0%;
    right: calc(100% - 85px);
}
#btn_area .inner {
    display: block;
    padding: 0;
	background: #072D69;
}
#btn_area .btn_box:nth-child(1) {
    clip-path:polygon(0 0, 100% 0, calc(100% - 75px) 100%, 0 100%);
    width: 100%;
    margin-right: auto;
}
#btn_area .btn_box:nth-child(2) {
    clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
    width: 100%;
}
#btn_area .btn_box a {
    padding: 60px 0;
	        z-index: 1;
}
	#btn_area .btn_anime{
		display: none;
	}
#btn_area .btn_box a .main_txt {
    font-size: 2.5em;
	line-height: 1;
    margin-bottom: 5px;
}
#btn_area .btn_box a .sub_txt {
    font-size: 0.9em;
}
}
/* ----------------------------------------------------------------
news
---------------------------------------------------------------- */
#news{
	background: #EBEBEB;
}
#news .inner{
	width: 90%;
	max-width: 1280px;
	padding: 100px 0;
	margin: 0 auto;
}
#news .inner .news_list{
	border-top: solid 1px #707070;
	margin-bottom: 50px;
}
#news .inner .news_list li{
	border-bottom: solid 1px #707070;
}
#news .inner .news_list li.nopost{
text-align: center;
    padding: 20px;
}
#news .inner .news_list li a {
    margin: 35px 5px;
	display: flex;
	align-items: flex-start;
}
#news .inner .news_list li a .day {
    margin-right: 3em;
    width: 6em;
}
#news .inner .news_btn{
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	/*Spのみ*/
#news .inner {
    padding: 30px 0 100px;
}
#news .inner .news_list li a {
    padding: 20px 28px 20px 5px;
    margin: 0;
    display: block;
    position: relative;
}
#news .inner .news_list li a:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    right: 5px;
    top: calc(50% - 6px);
    border: 1px solid;
    border-color: #707070 #707070 transparent transparent;
    transform: rotate(45deg);
}
#news .inner .news_list li a .day {
    margin-right: 0;
    margin-bottom: 5px;
}
}