@charset "utf-8";

/*
============================================================
基本レイアウト設定
------------------------------------------------------------

■ デフォルトリセット
■ floatクリア
■ スクロール
■ テキストリンク
■ 汎用パーツ
■ レイアウトベース
■ ヘッダー
■ フッター
■ コンテンツ


============================================================
*/


/* ---------------------------------------------------------
■ レスポンシブ対応
--------------------------------------------------------- */
/* 文中の文字や改行させたくないもの */
.tbwide{display:none;}
@media screen and ( max-width:1100px) {
	.tbwide{display:inline;}
	.no_tbwide{display:none;}
}

.tb{display: none;}
.no_tb{display: inline;}
.tb_only{display: none;}
@media screen and ( max-width:767px) {
	.tb{display: inline;}
	.no_tb{display: none;}
	.tb_only{display: inline;}
}

.phone{display: none;}
.no_phone{display:inline;}
@media screen and ( max-width:520px) {
	.phone{display: inline;}
	.no_phone{display:none;}
	.tb_only{display: none;}
}

.mobile{display: none;}
@media screen and ( max-width:374px) {
	.mobile{display: inline;}
}

/* marginを適応させたいとき */
.tb_b{display: none;}
.no_tb_b{display: block;}
@media screen and ( max-width:767px) {
	.tb_b{display: block;}
	.no_tb_b{display: none;}
}

.phone_b{display: none;}
.no_phone_b{display:block;}
@media screen and ( max-width:520px) {
	.phone_b{display:block;}
	.no_phone_b{display:none;}
}

/* ---------------------------------------------------------
■ デフォルトリセット
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1.6;
	border: none;
	list-style-type: none;
}

img {width:100%;vertical-align:top;height:auto;}


/* ---------------------------------------------------------
■ スクロール
--------------------------------------------------------- */
body {
	scrollbar-arrow-color:#ffffff;
	scrollbar-face-color:#ffffff;
	scrollbar-3dlight-color:#ffffff;
	scrollbar-darkshadow-color:#ffffff;
	scrollbar-highlight-color:#ffffff;
	scrollbar-shadow-color:#ffffff;
	scrollbar-track-color:#71C7C8;
}

/*スクロールバーの横幅指定*/
body::-webkit-scrollbar {
    width: 15px;
}
/*スクロールバーの背景色・角丸指定*/
body::-webkit-scrollbar-track {
	background: #c3c3c3;
}
/*スクロールバーの色・角丸指定*/
body::-webkit-scrollbar-thumb {
	border-radius: 0;
	background:#214f81;
}





/* ---------------------------------------------------------
■ リンク
--------------------------------------------------------- */

a{
	text-decoration: none;
	transition: all 0.3s ease-out;
}
a:hover img{
	opacity: 0.9;
}




/* ---------------------------------------------------------
■ レイアウトベース
--------------------------------------------------------- */

* {box-sizing: border-box;}

body {
	margin: 0;
	padding: 0;
	text-align: center; /* 中央レイアウト */
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#1b1b1b;
	font-size:16px;
	background-color: #ffffff;
}

main{overflow: hidden;}
/* ---------------------------------------------------------
■ ヘッダー
--------------------------------------------------------- */
header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    background-color: #002b69;
    overflow: hidden;
    padding: 5px;
}
header img{
	width: 85%;
	max-width: 877px;
	margin: auto;
}

.head-02.open {
  transform: translateX(70%);
  visibility: visible;
}
.lp-header__trigger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.lp-header__trigger.open span:nth-child(2) {
  opacity: 0;
}

.lp-header__trigger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.head-wrap {
  position: relative;
}
.head-nav {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.head-nav img {
  margin: 0 auto;
  display: block;
}
.head-items {
  display: flex;
  list-style: none;
  color: #ffffff;
  padding: 0;
  margin: 0 0 0 auto;
}
.head-items li {
  margin-right: 1em;
}
.head-items a {
  text-decoration: none;
  color: #ffffff;
}
.head-items a:hover {
  color: #c6c6c6;
}
.lp-header__trigger {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 10px;
  background: none;
  border: none;
  padding: 0;
  height: 24px;
  cursor: pointer;
  margin: 0 0 0 auto;
  display: none;
}
.lp-header__trigger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e6e6e6;
  margin-bottom: 7px;
  transform-origin: center left;
  border-radius: 1px;
  transition: all 600ms ease;
}
.lp-header__trigger.open span{
  width: 25px;
}

.head-02 {
  width: 100%;
  transform: translateX(100%);
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  padding-top: 50px;
  padding-bottom: 21px;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
  transition: all 600ms ease;
  visibility: hidden;
}
.head-02__wrap {
  padding: 0 10px;
}
.head-02 hr {
  margin: 0;
}
hr {
  border: none;
  border-top: 1px solid #888888;
  background: transparent;
}
.head-02__item {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 33%;
  color: #c6c6c6!important;
  padding: 17px;
}

.head-nav .head-logo{
  margin-left: 10px;
  width: 230px;
}



@media screen and (max-width: 799px) {
  .head-items {
    display: none;
    color: #dadada;
  }
  .lp-header__trigger{
    top: 7px;
    right: 5px;
    display: block;
  }
}

/* ---------------------------------------------------------
■ フッター
--------------------------------------------------------- */
footer {
	width: 100%;
	margin: 100px 0 0;
	height: 200px;
	text-align: center;
  background-color:#002B69;
}

footer .foot_bg{
	width: 100%;
	height: 100%;

}

footer div#footlogo {
    width: 100%;
	max-width: 900px;
	height: 100%;
	text-align: center;
	margin: 0 auto ; /* 中央レイアウト */
	position: relative;
}

footer div#footlogo img{
	position: absolute;
	width: auto;
	height: auto;
	left: 50%;
	top: 50%;
	-webkit-transform: translate3d(-50%, -50%, 0);
	transform: translate3d(-50%, -50%, 0);
}



/* ---------------------------------------------------------
■ トップへ戻るボタン
--------------------------------------------------------- */

#page-top {
    position: fixed;
    bottom: 20px;
    right: 5px;
	z-index: 100;
	animation: gotop 3s linear infinite;
	width: 80px;
	height: 350px;
	transition: 0.2s;
}

#page-top img{
	float: right;
}

#page-top a:hover img{
	opacity: 1;
}

@keyframes gotop {
  0% { transform: translateY(0) }
  50% { transform: translateY(-10px) }
  100% { transform: translateY(0) }
}


/*------フォントの読み込み-------*/
@font-face{
    font-family:"keifont";
    src:url("../fonts/keifont.woff") format('woff');
}

@font-face{
    font-family:"lineseed";
    src:url("../fonts/LINESeedJP_OTF_Th.woff") format('woff');
	font-weight:200;
    font-style:normal;
}

@font-face{
    font-family:"lineseed";
    src:url("../fonts/LINESeedJP_OTF_Rg.woff") format('woff');
	font-weight:normal;
    font-style:normal;
}

@font-face{
    font-family:"lineseed";
    src:url("../fonts/LINESeedJP_OTF_Bd.woff") format('woff');
	font-weight:700;
    font-style:normal;
}


@font-face{
    font-family:"lineseed";
    src:url("../fonts/LINESeedJP_OTF_Eb.woff") format('woff');
	font-weight:900;
    font-style:normal;
}