@charset "utf-8";

/*============================================================================
	html body
==============================================================================*/

body{
    font-family: "Noto Sans JP",  "Fira Sans Condensed", sans-serif;
    font-size: 16px;
    font-weight: 400;
	line-height: 1.6;
    color: #111;
    background-color: #fff;
    position: relative;
    width: 100%;
}
input, textarea {
	font-family:  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}
* html body {
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}
* html input, * html textarea {
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/*============================================================================
	リスト
==============================================================================*/

ul{
    list-style: none;
}

/*============================================================================
	画像
==============================================================================*/

img {
	vertical-align:top;
	height: auto;
}

/*============================================================================
	リンク
==============================================================================*/

a {text-decoration: none;}
/* a:link {color: #000;}
a:visited {color: #000;}
a:hover {color: #000;}
a:active {color: #000;} */


/*============================================================================
	汎用
==============================================================================*/

/* Headings
---------------------------------*/
h1, h2, h3, h4, h5, h6 {margin:0;}

h1 {font-size: 153.9%;/*margin: .6em 0 .6em 0;*/}
h2 {font-size: 138.5%;}
h3 {font-size: 123.1%;}
h4 {font-size: 116%;}
h5 {font-size: 108%;}
h6 {font-size: 100%;}

/* float */
.imgR {
	float: right;
	padding: 0 0 10px 10px;
}
.imgL {
	float: left;
	padding: 0 30px 20px 0;
}
.fR {
	float: right;
}
.fL {
	float: left;
}

/* 欧文 */
.alphabet{
	font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* 明朝 */
.mincho {
	font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

/* clearfix */
.clear {clear: both;}
.clearfix:after {
	content: "."; display: block; visibility: hidden; height: 0.1px; font-size: 0.1em; line-height: 0; clear: both;
}

/*============================================================================
	フォントサイズ
==============================================================================*/
.std10 { font-size: 77%; }
.std11 { font-size: 85%; }
.std12 { font-size: 93%; }
.std13 { font-size: 100%; }
.std14 { font-size: 108%; }
.std15 { font-size: 116%; }
.std16 { font-size: 123.1%; }
.std17 { font-size: 131%; }
.std18 { font-size: 138.5%; }
.std19 { font-size: 146.5%; }
.std20 { font-size: 153.9%; }
.std21 { font-size: 161.6%; }
.std22 { font-size: 167%; }
.std23 { font-size: 174%; }
.std24 { font-size: 182%; }
.std25 { font-size: 189%; }
.std26 { font-size: 197%; }

/*============================================================================
	カラー
==============================================================================*/

.white { color: #FFFFFF; }
.black { color: #000000; }
.gray { color: #666666; }
.lgray { color: #999999; }
.red { color: #e47300; }
.wred { color: #CC0000; }
.pink { color: #FF3366; }
.green { color: #006600; }
.orange { color: #FF6600; }
.blue { color: #205ea9; }
.dblue { color: #1a1a6a; }
.lblue { color: #00b3dc; }
.yellow { color: #FFFF00; }
.gold { color: #996633; }
.brown { color: #b36c00;}

/*============================================================================
	レスポンシブ
==============================================================================*/
.sp-none {
  display: block;
}
.pc-none{
  display: none;
}
@media screen and (max-width:767px) {
  .sp-none {
      display: none;
  }
  .pc-none{
      display: block;
  }
}



/*----------------------------------------------------- */
/*  header           */
/*----------------------------------------------------- */
.header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  h1#logo{
	margin: 0 auto 0 15px;
}
h1#logo a{
    display:block;
	width:150px;
	height:40px;
	background: url(../img/logo.png) no-repeat;
	background-size: 150px 40px;
	text-decoration:none;
	text-indent:-1000px;
	font-size:8px;
    overflow:hidden;
}
h1#logo a:hover { text-decoration:none;}

  .nav {
    display: flex;
    gap: 30px;
    align-items: center;
    height: 100%;
    font-size: 20px;
    font-weight: 500;
    margin: 0 30px 0 auto;
  }
  .nav li {
    margin: 0 24px 0 0;
  }
  .nav li a{
    color: #111;
  }

  .header_contact {
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    margin: 0 0 0 0;
    line-height: 78px;
    background: #e47300;
  }

  .header_contact span {
    padding-left: 30px;
    font-weight: 500;
  }
  @media screen and (min-width: 768px) {
    .header_contact {
      transition: 0.3s ease-in-out;
    }
    .header_contact:hover {
      opacity: 0.7;
    }
    .nav li a {
      display: inline-block;
    transition: .3s ease-in-out;
    color: #111;
    }
    .nav li a:hover {
		color: #999;
    }
  }
  @media screen and (max-width: 1300px) {
    .nav {
      font-size: 16px;
    }
    .nav li {
      margin: 0 14px 0 0;
    }
  }
  @media screen and (max-width: 1000px) {
    .nav {
      display: none;
    }
    .header_contact{
      margin-right: 60px;
    }
    /* .header_contact {
      width: 130px;
    } */
  }
  @media screen and (max-width: 767px) {
    .header {
      height: 60px;
    }
	h1#logo a{
		width:100px;
		height:30px;
		background-size: 100px 30px;
	}
    .header_contact {
      width: 120px;
      height: 60px;
      line-height: 58px;
      font-size: 12px;
    }
    .header_contact span {
      padding-left: 25px;
    }
  }

  @media screen and (max-width:420px) {
    .header_contact{
      margin-right: 50px;
    }
  }

  /* ハンバーガーメニュー */
  .sp-button{
    display: none;
  }
  .gnav{
    display: none;
  }
  @media screen and (max-width:1000px) {
    .sp-button {
      position: relative;
      display: inline-block;
  }

  .hamburger {
      position: absolute;
      z-index: 2;
      top: 30px;
      right: 15px;
      width: 30px;
          height: 24px;
          border: none;
          background-color: transparent;
  }

  .hamburger-line {
      position: absolute;
      width: 30px;
      height: 3px;
      background-color: #414141;
      top: 0;
      right: 0;
  }

  .hamburger-line1 {
   top: 1px;
   transition: .3s;
  }

  .hamburger-line2 {
      top: 10px;
  }

  .hamburger-line3 {
      top: 19px;
      transition: .3s;
  }

  .g-active .hamburger-line1 {
      top: 10px;
      transform: rotate(-45deg);
  }

  .g-active .hamburger-line3 {
      top: 10px;
      transform: rotate(45deg);
  }

  .g-active .hamburger-line2 {
      opacity: 0;
  }
  .gnav{
    display: block;
  }
  .gnav-li-wrap{
	position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
	background-color: #fff;
	  opacity: 0.9;
      padding: 60px 0;
	  display: block;
      width: 100%;
      height: 12em;
      transform: translateY(-100%);
      transition-duration: 1s;
  }
  .gnav ul {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  justify-items: center;
	  width: 80%;
	  margin-inline:auto;
  }

  .g-active .gnav-li-wrap {
      transform: translateY(0)
  }

  .gnav-li{
      padding: 1.5em 10px;
  }
  .gnav-li a{
    position: relative;
    display: inline-block;
    width: 10em;
	padding: 10px 2em;
	border: 1px solid #d3d3d3;
	text-align: center;
	color: #111;
	transition: .3s ease-in-out;
  }
  .gnav-li a:hover{
	color: #999;
  }
  /* .gnav-li a::after{
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-top: 2px solid #414141;
      border-left: 2px solid #414141;
      transform: rotate(135deg);
      position: absolute;
      right: 0;
      top: calc(50% - 5px);
  } */
  }
  @media screen and (max-width:768px) {
    .hamburger{
      top: 18px;
    }
    .gnav-li {
      padding: 1.5em 2px;
  }
  }
  @media screen and (max-width:599px) {
	.gnav ul {
		grid-template-columns: 1fr;
	}
	.gnav-li-wrap{
		height: 25em;
	}
  }
  @media screen and (max-width:420px) {
    .hamburger{
      right: 10px;
    }
  }


/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
footer .inner{
	max-width: 1200px;
	width: 90%;
	padding: 110px 0 130px;
	margin-inline:auto;
}
.footer_cont{
	display: flex;
	justify-content: space-between;
}

/* footLeft */
#footLogoBox a.footlogo{
	display: inline-block;
	margin-bottom: 10px;
	width:150px;
	height:40px;
	background: url(../img/logo.png) no-repeat;
	background-size: 150px 40px;
	text-decoration:none;
	text-indent:-1000px;
	font-size:8px;
    overflow:hidden;
}
.foot_comp{
	margin-top: 30px;
}
.foot_comp_name{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.foot_comp_cont{
	font-size: 14px;
}

/* footRight */
.footRight{
	display: flex;
}
.footList_wrap{
	display: flex;
}
.footList{
	vertical-align: top;
	text-align: left;
	width: 190px;
}
.footList li.footMenu{
	list-style: none;
	padding: 10px 0;
}

.footList li.footMenu a{
	text-transform: uppercase;
	font-size: 16px;
	color: #111;
	transition: .3s ease-in-out;
}
/*.footList li.footMenu a.policy{
	font-size: 16px;
}*/
.footList li.footMenu a:hover{
	color: #999;
	/* text-decoration: underline; */
}

.footer_contact{
	display: inline-block;
	max-width: 220px;
	width: 30%;
	height: 70px;
	color: #fff;
	text-align: center;
	padding: 16px 30px;
	margin-left: 80px;
	background-color: #e47300;
	transition: .3s ease-in-out;
}
.footer_contact:hover{
	opacity: 0.7;
}
.footer_contact .en{
	text-transform: uppercase;
	font-size: 20px;
}
.footer_contact .jp{
font-size: 14px;
}
@media screen and (max-width:999px) {
	.footer_cont{
		flex-direction: column;
	}
	.footLeft{
		text-align: center;
		margin-bottom: 80px;
	}
	.footRight{
		justify-content: center;
	}
}
@media screen and (max-width:767px) {
	.footRight{
		align-items: center;
	}
	.footList_wrap{
		flex-direction: column;
	}
}
@media screen and (max-width:599px) {
	.footLeft{
		margin-bottom: 50px;
	}
	.footRight{
		flex-direction: column;
	}
	.footList{
		text-align: center;
	}
	.footList li.footMenu{
		padding: 5px 0;
	}
	.footer_contact{
		margin-left: 0;
		margin-top: 50px;
		width: 200px;
	}
}

#footBtm{
	width: 100%;
	background: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 100%;
	text-align: center;
	color: #333333;
}


/*----------------------------------------------------- */
/*  ボタン共通         */
/*----------------------------------------------------- */
.cmn_btn_wrap{
  text-align: center;
  margin-top: 120px;
}
.cmn_btn{
  display:inline-block;
  width: 200px;
  cursor:pointer;
  position: relative;
  text-decoration: none;
  font-size: 24px;
  padding: 20px;
  text-transform: uppercase;
  color: #e47300;
  border: 1px solid #e47300;
  background-color: #fff;
}
.cmn_btn::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  left: 70%;
  width: 40%;
  height: 15px;
  border: none;
  border-right: 2px solid #e47300;
  border-bottom: 1px solid #e47300;
  transform: skew(45deg);
  transition: .3s;
}
.cmn_btn:hover::after {
  position: absolute;
  top: calc(50% - 15px);
  left: 70%;
  width: 50%;
  height: 15px;
}
@media screen and (max-width:767px) {
    .cmn_btn{
        width: 280px;
        padding: 10px;
        font-size: 32px;
    }
}
@media screen and (max-width:599px) {
    .cmn_btn{
        width: 150px;
        font-size: 18px;
    }
    .cmn_btn::after{
        left: 80%;
        top: calc(50% - 10px);
        height: 10px;
    }
    .cmn_btn:hover::after{
        left: 80%;
        width: 50%;
    }
    .cmn_btn_wrap{
      margin-top: 40px;
    }
}
