@charset "utf-8";

/*-----------------------------------------------------
  テンプレート
----------------------------------------------------- */


/*-----------------------------------------------------

  テンプレート共通パーツ

----------------------------------------------------- */
  
/* コンテンツ幅 */
.wrapper {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
	.wrapper {
		width: 90%;
	}
}
  
/* リンクボタン */
.btnStyle_main {
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  background: #004199;
  padding: 20px 70px;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 1000px) {
	.btnStyle_main {
  	font-size: 13px;
	}
}

.btnStyle_main:after {
  font-family: FontAwesome;
  content: '\f105';
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
}

/* イントロセクションタイトル */
.introSecTitle {
  font-size: 45px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #004199;
  margin-bottom: 20px;
  line-height: 1;
}



/*-----------------------------------------------------

  グローバルメニューセット

----------------------------------------------------- */

.gnav {
  padding: 35px 0;
  background: #fff;
}
.gnavWrapper {
  margin: 0 auto;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}

/* サイトロゴ設定 */
.gnav .logo {
  max-width: 251px;/* ロゴサイズ */
  width: calc(100% - 140px);/* 縮小時の左右の空き */
  margin-right: 45px;/* サイトロゴの右の空き */
}
.gnav .logo a {
  display: block;
  line-height: 1;
}
.gnav .logo img {
  width: 100%;
}

.gnav .gnavBtn ul {
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.gnav .gnavBtn li {
  text-align: center;
  padding: 0 30px;/* ナビゲーションボタンの空き調整 */
  border-left: 1px solid #dfdfdf;
}
.gnav .gnavBtn li:last-child {
  border-right: 1px solid #dfdfdf;
}
.gnav .gnavBtn li a {
  display: block;
}

/* ナビゲーションリンクテキスト設定 */
.gnav .gnavBtn li span {
  font-family: "Helvetica Neue", Helvetica, Meiryo, Arial, sans-serif;
  font-size: 17px;/* メインフォントサイズ */
  display: block;
  line-height: 1;
}
.gnav .gnavBtn li span.sub {
  font-size: 12px;/* サブフォントサイズ */
  color: #004199;/* サブテキストカラー */
  font-weight: normal;
  margin-top: 8px;
}

@media screen and (max-width: 1000px) {
  .gnav {
    padding: 0;
  }
  .gnavWrapper {
    display: block;
    text-align: center;
    position: relative;
    margin: 0;
    width: 100%;
    height: 60px;
  }
  .gnav .logo {
    max-width: 180px;
    margin: 0 auto;
    position: absolute;
    top: 55%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .gnav .gnavBtn {
    display: block !important;
    opacity: 0;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling:touch;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.95);
    width: 100%;
    pointer-events: none;
    -webkit-transition: .2s;
       -moz-transition: .2s;
        -ms-transition: .2s;
         -o-transition: .2s;
            transition: .2s;
  }
  .gnav .gnavBtn ul {
    width: 100%;
    top: calc(50% - 172px);/* ドロワーメニューのナビゲーションの高さの半分を設定（上下中央にするため） */
    left: 50%;
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    position: absolute;
  }
  .gnav .gnavBtn li {
    padding: 0 5%;
    border: none !important;
    margin-bottom: 40px;
    width: 100%;
  }
  .gnav .gnavBtn li:last-child {
    margin-bottom: 0;
  }
  .onanimation {
    opacity: 1 !important;
    z-index: 99 !important;
    pointer-events: auto !important;
  }
}

/* ドロワーメニューボタン ------------------- */
.menu-trigger {
  display: none;
}
.noScroll {
  overflow: hidden !important;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    z-index: 999;
    position: absolute;
    top: 50%;
    right: 20px;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 34px;
    height: 28px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #004199;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }
}



/*-----------------------------------------------------

  イントロセクション 2カラム（写真＋テキスト）

----------------------------------------------------- */
      
.introSec_2column {
  display: flex;
}
.introSec_2column .img {
  width: 60%;
}
.introSec_2column .img img {
  min-width: 100%;
  min-height: 100%;
  max-width: auto !important;
}
.introSec_2column .text {
  width: 40%;
  color: #fff;
  background: #000;
  padding: 45px;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.introSec_2column.left .text {
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
}
.introSec_2column p {
  margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
  .introSec_2column {
    display: block;
  }
  .introSec_2column .img {
    width: 100%;
  }
  .introSec_2column .text {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .introSec_2column.left .text {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .introSec_2column .img img {
    width: 100%;
  }
	
	.introSec_2column p {
		font-size: 14px;
		line-height: 24px;
	}
}

/* オプション ------------------- */

/* 右の要素を左に移動（leftを追加） */
.introSec_2column.left div:nth-child(2) {
  -webkit-order: -1;
      -ms-order: -1;
          order: -1;
}



/*-----------------------------------------------------

  イントロセクション 1カラム（中央）

----------------------------------------------------- */      
  
.btnSec_1column {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}
.btnSec_1column img {
  margin-bottom: 25px;
  width: 100%;
}
.btnSec_1column p {
  margin-bottom: 15px;
  padding: 0 20px;
}

@media screen and (max-width: 1000px) {
  .btnSec_1column {
    padding: 40px 0;
  }
	.btnSec_1column p {
		font-size: 14px;
		line-height: 24px;
	}
}

