@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .inner {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 120px 0 20px;
}


@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: auto;
  }
  #header .inner {
    width: 100%;
    height: auto;
  }
  #header .logo-wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 10px 8px;
  }
  #header .logo-wrap h1 img {
    height: 40px;
  }
  #header .logo-wrap .sp-only {
    margin-top: 2px;
  }
}

/*  main-v  */
.main-v {
  position: relative;
  height: 618px;
  background: url(../images/bk_mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}
.main-v .mywidth {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-v .main-title {
  width: 100%;
  font-size: 50px;
  margin-bottom: 20px;
}
.main-v .main-stitle {
  width: 100%;
  font-size: 12px;    
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .main-v {
    height: 100vw;
    margin-top: 0;
    padding-top: 18vw;
  }
  .main-v .main-title {
    font-size: 6vw;
  }
  .main-v .main-stitle {
  }
}


.main-v.video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* max-width: 1600px; */
}
/* 疑似要素でオーバーレイを表示 */
.main-v.video::before {
  content: "";
  position: absolute; /* 絶対配置 */
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(255,255,255,0.1);
}
/* video 要素 */
.main-v.video video {
  width: 100%;  /* 明示的に幅を設定（必須） */
  height: 100%; /* 明示的に高さを設定（必須） */
  object-fit: cover; /* コンテンツボックスに収まるように拡大縮小 */
}

.main-v.video .mywidth {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
	
	
}





/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
  background-color: #15429a;
}
#footer .foot-content {
  padding: 25px 0 10px;
}
.footer_logo {
  margin: 50px 0;
}
#scroll-top a {
  border-radius: 50%;
  background: rgba(47, 187, 220, 0.7);
  bottom: 70px;
  display: block;
  float: right;
  height: 70px;
  width: 70px;
  padding: 5px;
  position: fixed;
  right: 30px;
  text-align: center;
  padding-top: 16px;
  z-index: 9999;
}
#scroll-top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}
#footer .copy {
  letter-spacing: 0.05em;
  padding: 15px 0 20px;
}
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 0;
  }
  #footer .foot-content {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #footer .foot-content h2 {
    text-align: center;
    margin-bottom: 15px;
  }
  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }
  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}

/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  /*position: absolute;*/
  position: fixed;
  width: 80px; /*---線の長さ---*/
  height: 25px; /*---線の太さ長さによって調整---*/
  right: 20px;
  text-align: right;
}
.menu-ani-button span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  font-family: "futura"; 
}
.bar {
  width: 30px;
  position: absolute;
  left: 0;
}
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #000;
  transition: all 0.25s;
  position: absolute;
}
.bar:before {
  content: "";
  left: 0;
  top: 7px;
}
.bar:after {
  content: "";
  left: 0;
  top: 17px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(25deg);
  top: 12px;
}
.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-25deg);
  top: 12px;
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap {
  height: 100%;
}
#header .fixed-wrap,
#header .sub-menu {
  display: flex;
}

#header .menu {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  font-family: "futura"; 
}
#header .menu .bk_menu {
  background-color: #0005;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
#header .menu ul {
  position: absolute;
  top: 0;
  right: 0;
  padding: 60px 40px 60px 40px;
  background-color: #fff;
  width: 300px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#header .menu ul li {
  width: 100%;
  margin: 5px 0;
}

#header .menu ul li a {
  font-family: "futura"; 
  font-weight: bold;
  font-size: 16px;
}
#header .menu ul li.child a {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    color: #aaa;
    font-size: 14px;
}

#header ul li a:hover {
  opacity: 0.7;
}


#header ul .menu_sub a {
  position: relative;
  padding: 10px 60px 10px 30px;
  margin-right: 30px;
  font-size: 16px;
}
#header ul .menu_sub a::after {
  content: "";
  background: url(../images/i_arrow_bw.svg) no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  position: absolute;
  right: 20px;
}

#header ul .menu_sub_02 a {
  background-color: #0744ba;
  border-radius: 30px;
  color: #fff;
}
#header ul .menu_sub_02 a::after {
  background: url(../images/i_arrow_wg.svg) no-repeat;
}

#header .menu ul li.menu_sub_01 {
  margin-top: 20px;
}
#header .menu ul .menu_sub a {
  width: 100%;
  padding: 0;
  color: #4b6daf;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

#header .menu ul .menu_sub a::after {
  background: url(../images/i_arrow_gw.svg) no-repeat;
  right: -35px;
}




@media screen and (max-width: 768px) {
  #header .fixed-wrap {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: #fff;
  }
  #header .menu {
    display: none;
    /*padding-top: 40px;*/
    padding-bottom: 20px;
  }
  #header .sub-menu {
    display: none;
  }
  #header .logo-wrap .menu-ani-button-wrap {
    display: block;
    width: 30px;
    height: 100%;
    margin-left: 10px;
  }
  .menu-ani-button {
    top: 18px;
  }

}
/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
.foot-navi-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.foot-navi {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.foot-navi li {
  margin-right: 40px;
}
.foot-navi li a {
  display: block;
  font-family: "futur";
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.foot-navi li a.child {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #fff;
}
.foot-navi li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
 
  .foot-navi {
    width: 48%;
  }
}
