@charset "utf-8";

/* ------------------------------------------------------------------------------------------ root */

:root {
    --black: #222222;
    --yellow: #FFE63B;
    --navy:#06284D;
    --orange:#EB6112;
    }
  
/* ------------------------------------------------------------------------------------------ リセット */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  text-size-adjust: 100%;
  font-size: 62.5%;
	scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--black);
  background-color: #f6f6f6;
  position: relative;
}
img {
  width: 100%;
  height: auto;
}
p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 700;
}
h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}
h3 {
  font-size: 6.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.sec{
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}
  @media screen and (max-width: 1000px) {
	  .sec{
	padding: 0 20px;
}
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.main{
  padding-top: 118px;
}
.breadcrumb{
	max-width: 1240px;
	margin: 0 auto 80px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	column-gap: 0.5em;
}
.breadcrumb li{
	font-size: 1.2rem;
}
.breadcrumb li a{
	font-size: 1.2rem;
	color: #7d7d7d;
}
.breadcrumb li:last-of-type{
	color: var(--black);
}
.breadcrumb span{
	color: #7d7d7d;
	font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .pc {
      display: none;
    }
    .sp {
      display: block;
    } 
    p {
      font-size: 1.4rem;
      line-height: 1.8;
      letter-spacing: 0.04em;
    }
         
}

@media screen and (max-width: 1366px) {
  .main{
    padding-top: 80px;
  }
  
}
/* ------------------------------------------------------------------------------------------ ローディング */
.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
/* ------------------------------------------------------------------------------------------ テキストアニメーション */
/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(20px); /* 下に30pxの位置から */
  transition: opacity .5s, transform .5s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .1s; /* フェード開始を0.1秒遅らせる */
}
.js-fade {
  opacity: 0; /* 最初は非表示 */
  transition: opacity .5s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fade.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transition-delay: .1s; /* フェード開始を0.5秒遅らせる */
}
/* ------------------------------------------------------------------------------------------ ヘッダー */
.header{
  position: fixed;
  z-index: 99;
  width: 100%;
	height: 118px;
	transition: .3s;
}
.header.change-color{
	background: #F6F6F6;
	transition: .3s;
}
.header-inner{
  width: 100%;
  height: 118px;
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
}
.header_logo{
  width: 173px;
  display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 99;
}
@media screen and (max-width: 1366px) {
  .header-inner{
    height: 80px;
    padding-left: 20px;
  }  
}
/* ==========================
  リンクボタン
========================== */

.link_wrap{
  width: 118px;
  height: 118px;
}
	.link_wrap.pc{
		display: block;
	}
	.link_wrap.sp{
		display: none;
	}

.link_wrap a{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	row-gap:7px;
	transition: 0.3s;
}
.link_wrap a:hover{
	opacity: 0.6;
}
.link_wrap img{
  width: 24px;
}
.link_wrap p{
  font-size: 1.5rem;
  line-height: 1;
}
.area_link_wrap{
  background-color: #fff;
}
.mail_link_wrap{
  background-color: var(--navy);
}
.mail_link_wrap p{
  color: #fff;
}
@media screen and (max-width: 1366px) {
  .link_wrap{
    width: 80px;
    height: 80px;
  }  
  .link_wrap a{
    padding-top: 10px;
  }

  .link_wrap p{
    font-size: 1.1rem;
  }
  .link_wrap img {
    width: 20px;
}
}
@media screen and (max-width: 1040px) {
	.link_wrap.pc{
		display: none;
	}
	.link_wrap.sp{
		display: block;
	}
	.link_wrap {
        width: 100%;
        height: 60px;
    }
	.link_wrap a{
		flex-direction: row-reverse;
		column-gap: 10px;
		padding-left: 30px;
		padding-top: 0;
	}
  .link_wrap p{
    font-size: 1.3rem;
  }

  .area_link_wrap a{
    border: 1px solid var(--navy);
  }
  .mail_link_wrap {
    margin-bottom: 20px;
  }
  }
/* ==========================
  ハンバーガーメニュー
========================== */
.toggle-btn{
  display: none;
}
@media screen and (max-width: 1040px) {
  .toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 80px;
    height: 80px;
    z-index: 99;
    background: var(--navy);
  }
  .toggle_line_wrap{
    z-index: 100;
    width: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
	  margin-bottom: 5px;
    }
  .toggle-btn-line {
    display: inline-block;
    transition: all 0.4s;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 100%;
  }
  .close .toggle-btn-line-top {
    transform: translateY(6px) rotate(-45deg);
  }
  .close .toggle-btn-line-center {
    opacity: 0;
  }
  .close .toggle-btn-line-bottom {
    transform: translateY(-8px) rotate(45deg);
  }
  .toggle-btn:hover {
    cursor: pointer;
  }
  .toggle-btn p{
    color: #fff;
    font-size: 1.0rem;
  }
}

/* ==========================
  ドロップダウンメニュー
========================== */
.gnavi__wrap {
display: flex;
}
.gnavi__lists__pc{
display: flex;
}
.gnavi__lists__sp{
display: none;
}
.gnavi__lists {
    display: flex;
    align-items: flex-end;
    padding: 0 20px 35px 0;
}
.gnavi__list {
    color: var(--navy);
    background-color: transparent;
    position: relative;
    transition: all .3s;
    padding: 0 20px;
}
.gnavi__list::before {
    content: "";
    width: 1px;
    height: 80%;
    background-color: var(--navy);
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-40%);
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #0071BB;
}
.gnavi__list a {
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
	position: relative;
}
.gnavi__list a::after {
position: absolute;
left: 0;
	bottom: -7px;
content: '';
width: 100%;
height: 2px;
background: var(--navy);
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}

.gnavi__list a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
.gnavi__list .arrow {
	position: relative;
	display: inline-block;
	padding-right: 15px;
}
.gnavi__list .arrow::before{
	position: absolute;
	top: 2px;
	right: 0;
	content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  margin: auto;
}

.dropdown__lists {
  display: flex;
  column-gap: 20px;
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .5s;/*表示の変化を0.3秒に指定*/
    width: 240%;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: rgba(255,255, 255, 0.75);
    padding: 20px 30px 40px;
}
.gnavi__list:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.dropdown__lists ul{
  width: 50%;
}
.dropdown__list {
    height: 50px;
    transition: all .3s;
    position: relative;
}
.dropdown__list::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--navy);
    position: absolute;
    bottom: 0;
    left: 0;
}
.dropdown__list:hover {
  opacity: 0.6;
}
.dropdown__list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    padding-left: 15px;
}
.dropdown__list a::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--navy);
  border-right: solid 2px var(--navy);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.dropdown__list a::after {
	content: none;
}
@media screen and (max-width: 1366px) {
  .gnavi__lists {
    display: flex;
    align-items: flex-end;
    padding: 0 20px 5px 0;
}
.gnavi__list .arrow::before{
	top: 11px;
}
  .gnavi__list{
    padding: 0 10px;
  }
  .gnavi__list a {
    font-size: 1.3rem;
	  line-height: 2.5;
  }
  .gnavi__list::before {
    height: 50%;
  }
  .gnavi__list a::after {
      bottom: 2px;
  }    
}
@media screen and (max-width: 1040px) {
  .header_gnavi {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    z-index: 10;
    background: rgba(255,255, 255, 0.96);
  }  
  .gnavi__wrap {
    display: block;
    max-width: 400px;
    width: 90%;
    margin: 120px auto 0;
}
.gnavi__lists__pc{
  display: none;
  }
  .gnavi__lists__sp{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  }
  .gnavi__lists {
    display: inline-block;
    padding: 0;
}
.gnavi__list::before {
  content: none;
}
.dropdown__lists {
  display: block;
    transform: scaleY(1);
    position: relative;
    top: 0;
    padding: 0;
    width: 100%;
    background-color: none;
}
.dropdown__lists ul {
  width: 100%;
}
.dropdown__list a {
  font-size: 1.2rem;
  padding-left: 18px;
}
.dropdown__list a::before {
  width: 10px;
  height: 1px;
  border-top: solid 1px var(--navy);
  border-right: none;
  transform: rotate(0deg);
}
.dropdown__list::before{
  content: none;
}
.dropdown__list {
  height: 30px;
}
}


/* ------------------------------------------------------------------------------------------ タイトル */
h2.title{
	  font-size: 68px;
  font-family: "Poppins", serif;
  font-weight: 900;
	letter-spacing: 0.1em;
	color: var(--navy);
		text-align: center;
	clip-path: inset(100% 0 0 0);
}
h2.title.is-inview {
  clip-path: inset(100% 0 0 0);
    animation: title-animation 1s .1s forwards;
}

@keyframes title-animation {
  0% {
      clip-path: inset(100% 0 0 0);
  }

  100% {
      clip-path: inset(0);
  }
}
h2.title span{
	color: var(--yellow);
}
.sub_title{
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 60px;
	transition-delay: 1s!important;
}
@media screen and (max-width: 768px) {
	h2.title{
	  font-size: 48px;
	}
	.sub_title{
	margin-bottom: 20px;
}

}
/* ------------------------------------------------------------------------------------------ flex */
.flex_wrap{
	display: flex;
}
/* ------------------------------------------------------------------------------------------ ボタン */
.btn{
	position: relative;
	display: inline-block;
    min-width: 320px;
	line-height: 66px;
    border: 3px solid var(--black);
    text-align: center;
    font-weight: bold;
	background: #fff;
}
.btn:hover{
	color: #fff;
	background: var(--black);
}
.btn::before{
	content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px var(--black);
    border-right: solid 2px var(--black);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
    margin: auto;
	transition: .3s;
}
.btn:hover::before{
	    right: 30px;
	    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
@media screen and (max-width: 768px) {
  .btn_wrap{
    text-align: center;
  }
  .btn{
    min-width: 280px;
    line-height: 50px;
    font-size: 1.4rem;
  }
  .btn::before{
      right: 30px;
  }  
  .btn:hover::before{
    right: 20px;
}

}
/* ------------------------------------------------------------------------------------------ バナーエリア */
.bnr_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bnr_wrap p {
  transition: .3s;
}
.bnr_wrap p:hover {
  opacity: 0.8;
}
.bnr_wrap p:first-child {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .page .bnr_wrap {
    margin: 100px auto 0;
  }
}

/* ------------------------------------------------------------------------------------------ page_link */
.page_link_inner {
  display: flex;
  margin-top: 100px;
}
.page_link_item {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  padding: 80px 0 50px;
  position: relative;
}
.page_link_item::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background-color: #fff;
}
.page_link_item:nth-of-type(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/top/top_img03.jpg");
}
.page_link_item:nth-of-type(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/top/top_img04.jpg")
}
.page_link_item h3, .page_link_item p {
  color: #fff;
}
.page_link_item h3 {
  font-size: 3.6rem;
}
.page_link_item p {
  margin: 20px 0;
}
.page_link_item .btn {
  border: none;
  color: var(--navy);
}
.page_link_item .btn:hover {
  border: none;
  color: #fff;
}
.page_link_item .btn::before {
  border-top: solid 2px var(--black);
  border-right: solid 2px var(--black);
}

.page_link_item .btn:hover::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
@media screen and (max-width: 1000px) {
  .page_link_inner {
    display: block;
  }
  .page_link_item {
    width: 100%;
  }
  .page_link_item h3 {
    font-size: 2.8rem;
  }
  
}
/* ------------------------------------------------------------------------------------------ フッター */
.footer_wrap{
	background: var(--navy);
	display: flex;
	padding: 0 20px;
}

.footer_inner{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	color: #fff;
	padding: 100px 0 80px;
}
.footer_box01 p{
	line-height: 1.8;
		font-size: 1.5rem;
}
.footer_logo{
	max-width: 126px;
	margin-bottom: 40px;
}
.footer_box02{
	display: flex;
	column-gap: 50px;
}
.footer_box02 ul li a{
	line-height: 2.5;
		font-size: 1.5rem;
	font-weight: 700;
	transition: .3s;
}
.footer_box02 ul li a:hover{
	opacity: 0.6;
}
.footer_box02 ul li ul li{
		padding-left: 20px;
	position: relative;
}
.footer_box02 ul li ul li a{
	color: #ddd;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2;
}
.footer_box02 ul li ul li::before{
	position: absolute;
	top: 50%;
	left: 0;
	content: '';
	width: 10px;
	height: 1px;
	background: #ddd;
}
.footer_box03{
	display: flex;
	flex-direction: column;
	row-gap:20px;
}
.footer_box03 .area_link_wrap p{
	color: var(--navy);
}
.footer_box03 .mail_link_wrap {
    background-color: var(--yellow);
}
.footer_box03 .mail_link_wrap p {
    color: var(--navy);
}
.copy_right{
	background: var(--yellow);
	font-size: 1.2rem;
	text-align: center;padding: 10px 0;
}
@media screen and (max-width: 1040px) {
.footer_inner{
	width: 90%;
	}
	  .footer_box03 .link_wrap{
    width: 80px;
    height: 80px;
  }  

	.footer_box03 .link_wrap a{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}
.footer_box03 .link_wrap p {
  font-size: 1.1rem;
}

.footer_box03 .link_wrap img {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 768px) {
	.footer_inner {
		display: block;
		padding: 80px 0 60px;
		width: 100%;
	}
	.footer_box01{
		display: flex;
		column-gap: 40px;
		margin-bottom: 40px;
	}
	.footer_logo {
    margin-bottom: 0;
		max-width: 100px;
}
	.footer_box01 p {
    line-height: 1.8;
    font-size: 1.3rem;
}
	.footer_box02 ul li a {
    line-height: 2.5;
    font-size: 1.4rem;
}
	.footer_box02 ul li ul li a {
    font-size: 1.2rem;
		line-height: 2.5;
}
	.footer_box03{
		margin-top: 40px;
	}
		  .footer_box03 .link_wrap{
    width: 100%;
    height: 60px;
  }  

	.footer_box03 .link_wrap a{
  flex-direction: row-reverse;
		padding-left: 30px;
		padding-top: 0;
}
.footer_box03 .link_wrap p {
  font-size: 1.3rem;
}
}