@charset "utf-8";

/* 共通
------------------------------------------------------------*/
body {
  background-color: #ffffff;
  font-family: "Inter",  "Raleway", 'Zen Kaku Gothic New', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}
img{
	width: 100%;
	height: auto;
}

/*-- 共通タイマー --*/
:root {
 --timer1:all 0.3s ease;
}


/*------- pc-1281px-
------------------------------------------------------------*/

/*------- グローバルナビ
------------------------------------------------------------*/
.top-grobal-nav{
   position: fixed;
  width: 100%;
  z-index: 9999; /* これで常に最前面 */
  background-color: #fff;
}
.header-sp{
    display: none;
}
/* ブルー三角形-上 */
.blue-triangle {
  position: absolute;
  z-index: -10;
  top:0;
  width: 460px;
  height: 260px; 
  background-color: #004EA2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: var(--timer1);/* 縮小時のアニメーション */
}
header.be-small .blue-triangle {
  width: 360px;/*----------------- 1変更 -----------------*/
  height: 160px; /*----------------- 2変更 -----------------*/
}
/* ヘッダー */
.header-flex {
  display: flex;
  justify-content: space-between;
}
/* 左エリア全体 */
.left-area {
  width: 88%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
/* 上段 */
.header-text-container {
  display: flex;
  justify-content: space-between;
  color: #000;
  padding:16px;
  padding-left: 80px;
  padding-right: 40px;
  background-color: #e6e6e6;
  opacity: 0.8;
  transition: var(--timer1);/* 縮小時のアニメーション */
}
header.be-small .header-text-container {
  padding:6px 40px 10px 80px;
}
.header-text-1{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 18px;
  padding-top: 4px;
}
header.be-small .header-text-1{
  font-size: 16px;
}

/* 上段ショートカット */
.header-shorcut-container{
  display: flex;
  justify-content: space-between;
}
.header-shorcut{
  width: 120px;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 18px;
  text-align: right;
  margin-top: 3px;
}
header.be-small .header-shorcut {
    font-size: 16px;
}
.shortcut-icon {
  width: 20px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}
.shortcut-label {
  position: relative;
  top: 0px;
}
/* リンク全体にホバー効果 */
.header-shorcut a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #333;
  transition: color 1s ease;
}

/* ラベルの色変更（もし必要なら） */
.header-shorcut a:hover {
  color: #29abe2;
}

/* アイコンのホバー時に半透明 */
.shortcut-icon {
  transition: opacity 1s ease;
}

.header-shorcut a:hover .shortcut-icon {
  opacity: 0.6;
}

/* 下段：ナビ */
.header-nav-container{
  display: flex;
  justify-content: space-between;
}
.global-nav{
  padding:20px;
  height: 100px;
  transition: var(--timer1);/* 縮小時のアニメーション */
}
header.be-small .global-nav {
  padding-top: 16px;/*----------------- 4追加 -----------------*/
  height: 55px;/*----------------- 5変更 -----------------*/
}
.global-nav ul li a {
  text-decoration: none;
  transition: color 1s ease;
}

/* ホバー時の色変更 */
.global-nav ul li a:hover {
  color: #29abe2;
}

/* ロゴ */
.header-logo{
  margin-top: 30px;
  margin-left: 80px;
  width: 340px;
  transition: var(--timer1);/* 縮小時のアニメーション */
}
header.be-small .header-logo {
  margin-top: 0px;/*----------------- 6変更 -----------------*/
}
.header-logo img {
  vertical-align: bottom;
}
.header-logo a img {
  transition: opacity 1.0s ease;
}
.header-logo a:hover img {
  opacity: 0.6; /* 半透明にする（0〜1の範囲で調整） */
}
.global-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding-top: 24px;
  transition: var(--timer1);/* 縮小時のアニメーション */
}
header.be-small .global-nav ul {
  padding-top: 0px;/*----------------- 7変更 -----------------*/
}
.global-nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  font-size: 20px;
}
/* 電話番号リストアイテム */
.global-nav .tel {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* アイコン画像のサイズ調整 */
.global-nav .tel img {
  width: 24px;
  height: auto;
  display: inline-block;
  position: relative;
  top: -6px;
}
/* 電話番号リンクのスタイル */
.global-nav .tel a {
  font-size: 28px;
  color: #004EA2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  position: relative;
  top: -6px;
}
/* 右エリア：CTA */
.right-area {
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 12px;
  width: 100%;
  height: 100%;
  background-color: #808080; 
  transition: background-color 1s ease;
}
header.be-small .contact-btn {
  padding: 6px;/*----------------- 8変更 -----------------*/
}
.contact-btn:hover {
  background-color: #29abe2;
}

.contact-pict{
  width: 56px;
  padding-top: 10px;
}
.contact-label{
  padding-top: 12px;
}


/*------- sp max-width:767px
------------------------------------------------------------*/
@media screen and (max-width:767px) {

.top-grobal-nav {
  position: relative;
  z-index: 9999;
  background-color: #fff;
}    
.header-flex{
    display: none;
}
.header-sp {
  display: flex;
  justify-content: space-between;
} 

header.be-small .blue-triangle {
    width: 260px;
    height: 110px;
}


}
 /*-- sp-end
------------------------------------------------------------*/

 /*-- mid-start
------------------------------------------------------------*/
@media screen and (max-width:1024px) {

 .header-flex{
  display: none;
 }
 .header-sp{
    display: block;
}
.top-grobal-nav {
   position: fixed;
  z-index: 9999;
  background-color: #fff;
}    
.header-flex{
    display: none;
}
.header-sp {
  display: flex;
  justify-content: space-between;
} 
.header-sp-container {
  display: flex;
  justify-content: space-between;
}

.header-sp-logo {
  width: calc(60% - 80px); /* ハンバーガー分を差し引く */
  margin-left: 20px;
  margin-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .header-sp-logo {
        width: calc(86% - 80px);
    }
}


/* ブルー三角形-上 */
.blue-triangle {
  position: absolute;
  z-index: -10;
  top:0;
  width: 260px;
  height: 110px; 
  background-color: #004EA2;
  clip-path: polygon(0 0, 100% 0, 0 100%);

  max-width: 100%;
  left: 0; /* 明示しておくとズレ防止 */

}
/*========= 三本線 ===============*/
  .openbtn{
    display: block;
  }
  .openbtn{
  	position:fixed;
    z-index: 10000;
  	top:3px;
  	right: 10px;
  	cursor: pointer;
      width: 50px;
      height:50px;
  }
  /*×に変化*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 14px;
      height: 1px;
      border-radius: 2px;
  	background-color: #666;/*カラー*/
    	width: 45%;
    }

  /*三本線の高さ*/
  .openbtn span:nth-of-type(1) {
  	top:15px;
  }
  .openbtn span:nth-of-type(2) {
  	top:23px;
  }
  .openbtn span:nth-of-type(3) {
  	top:31px;
  }
  /*end//三本線の高さ*/

  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
      background-color: #000;/*カラー*/
  }
  .openbtn.active span:nth-of-type(2) {
  	opacity: 0;
    background-color: #fff;/*カラー*/
  }
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
      background-color: #000;/*カラー*/
  }

/*============================
ナビゲーション ===============*/
#g-nav{
      display: block;

        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 9998;
        /*ナビのスタート位置と形状*/
    	top:0;
        right: -120%;
    	width:100%;
        height: 100vh;/*ナビの高さ*/
    	background:#fff;/*ナビ背景色*/
    	opacity: 0.9;
        /*動き*/
    	transition: all 0.6s;
}
    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive{
        right: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li{
    	list-style: none;
        text-align: center;
    }

    #g-nav li a{
    	color: #333;
    	text-decoration: none;
    	padding:10px;
    	display: block;
    	text-transform: uppercase;
    	letter-spacing: 0.1em;
        font-family: "Zen Kaku Gothic New", sans-serif;
	    font-weight: 700;
	    font-size: 16px;
        line-height: 2em;
    }

    /*ホバー半透明*/
    #g-nav li a:hover{
    	color: #64B5F6;
    }

/*------- ファーストビュー
------------------------------------------------------------*/

/* キャッチコピー 英語*/
.fv-headline{
  position: absolute;
  z-index: 100;
  top: 16vh;
  left: 10%;

  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3vw;
  color: #004EA2;
  line-height: 1.1em;
}
/* キャッチコピー日本語 */
.fv-headline-jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 5vw;
  letter-spacing: 0.1em;
  width: 94%;
  height: auto;
  margin-top: 12px;
  margin-left: 0%;
  position: relative; /* スタックのため */
}
/* 背景の白い台形画像（透過） */
.fv-white {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fv-white img {
  opacity: 0.7;
  display: block;
}
/* 前面のテキスト（非透過） */
.fv-jp {
  position: absolute;
  top: 70%;
  left: 15px;
  transform: translateY(-12%);
  color: #333;
  z-index: 2;
}
/* ボディコピー */
.fv-bodycopy{
  position: absolute;
  z-index: 100;
  left: 5%;
  bottom: 8vh;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 3.6vw;
  line-height: 2em;
}
/* ブルー三角形-下（透過） */
.blue-triangle-2 {
  position: absolute;
  z-index: 100;
  width: 94%;
  right: 0;
  bottom: 0vh;
}
.blue-triangle-2 img {
  opacity: 0.5;
}
/* 動画 */
.movie-section{
  position: absolute;
  top: 70px;
  right: 0;
  width: 95%;
  height: 70vh;
  z-index: 0;
  pointer-events: none; 
}
.movie {
	position: relative;
	width: 100%;
	height: 70vh;
	overflow: hidden;
}
.movie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 70vh;
	background-color: rgba(0, 0, 0, 0.05); /* 背景の暗さ調整 */
	background-image: 
		radial-gradient(rgba(255, 255, 255, 0.5) 30%, transparent 31%), 
		radial-gradient(rgba(255, 255, 255, 0.5) 30%, transparent 31%);
	background-size: 6px 6px;
	background-position: 0 0, 3px 3px;
	z-index: 1;
	pointer-events: none;
  z-index: 1;
}
.movie video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70vh;
	object-fit: cover;
	z-index: 0;
}
/* 動画ここまで */
.top-space{
  height: 100vh;
}

}
 /*-- mid-end
------------------------------------------------------------*/


 /*-- pc-s-start
------------------------------------------------------------*/
@media screen and (min-width: 1025px) and (max-width: 1280px) {

/*------- グローバルナビ
------------------------------------------------------------*/
.top-grobal-nav{
   position: fixed;
  z-index: 9999; /* これで常に最前面 */
  width: 100%;
  background-color: #fff;
}
.header-sp{
    display: none;
}
/* ブルー三角形-上 */
.blue-triangle {
  position: absolute;
  z-index: -10;
  top:0;
  width: 430px;
  height: 230px; 
  background-color: #004EA2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ヘッダー */
.header-flex {
  display: flex;
  justify-content: space-between;
}
/* 左エリア全体 */
.left-area {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
/* 上段 */
.header-text-container {
  display: flex;
  justify-content: space-between;
  color: #000;
  padding:16px;
  padding-left: 60px;
  padding-right: 20px;
  background-color: #e6e6e6;
  opacity: 0.8;
}
header.be-small .header-text-container {
  padding:6px; /*----------------- 11変更 -----------------*/
}
.header-text-1{
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 15px;
  margin-top: 3px;
}
header.be-small .header-text-container {
  margin-top: 0px; /*----------------- 12変更 -----------------*/
}
/* 上段ショートカット */
.header-shorcut-container{
  display: flex;
  justify-content: space-between;
}
.header-shorcut{
  width: 100px;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
  font-size: 15px;
  text-align: right;
  margin-top: 3px;
  margin-right: 10px;
}
.shortcut-icon {
  width: 20px;
  height: auto;
  margin-right: 0px;
  vertical-align: middle;
}
.shortcut-label {
  position: relative;
  top: 0px;
}
/* リンク全体にホバー効果 */
.header-shorcut a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #333;
  transition: color 1s ease;
}

/* ラベルの色変更（もし必要なら） */
.header-shorcut a:hover {
  color: #29abe2;
}

/* アイコンのホバー時に半透明 */
.shortcut-icon {
  transition: opacity 1s ease;
}

.header-shorcut a:hover .shortcut-icon {
  opacity: 0.6;
}

/* 下段：ナビ */
.header-nav-container{
  display: flex;
  justify-content: space-between;
}
.global-nav{
  padding:20px;
  height: 80px;
}
header.be-small .global-nav {
  padding-top: 10px;/*----------------- 13追加 -----------------*/
  height: 40px;/*----------------- 14変更 -----------------*/
}
.global-nav ul li a {
  text-decoration: none;
  transition: color 1s ease;
}

/* ホバー時の色変更 */
.global-nav ul li a:hover {
  color: #29abe2;
}

/* ロゴ */
.header-logo{
  margin-top: 24px;
  margin-left: 60px;
  width: 250px;
}
header.be-small .header-logo {
  margin-top: 0px;/*----------------- 15変更 -----------------*/
}
.header-logo img {
  vertical-align: bottom;
}
.header-logo a img {
  transition: opacity 1.0s ease;
}
.header-logo a:hover img {
  opacity: 0.6; /* 半透明にする（0〜1の範囲で調整） */
}
.global-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding-top: 13px;
}
header.be-small .global-nav ul {
  padding-top: 0px;/*----------------- 16変更 -----------------*/
}
.global-nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  font-size: 15px;
}
/* 電話番号リストアイテム */
.global-nav .tel {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* アイコン画像のサイズ調整 */
.global-nav .tel img {
  width: 18px;
  height: auto;
  display: inline-block;
  position: relative;
  top: -3px;
}
/* 電話番号リンクのスタイル */
.global-nav .tel a {
  font-size: 20px;
  color: #004EA2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  position: relative;
  top: -3px;
}
/* 右エリア：CTA */
.right-area {
  width: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 12px;
  width: 100%;
  height: 100%;
  background-color: #808080; 
  transition: background-color 1s ease;
}
header.be-small .contact-btn {
  padding: 6px;/*----------------- 17変更 -----------------*/
}
.contact-btn:hover {
  background-color: #29abe2;
}

.contact-pict{
  width: 56px;
  padding-top: 10px;
}
.contact-label{
  padding-top: 12px;
}


}
 /*-- pc-s-end
------------------------------------------------------------*/



