@charset "utf-8";
/*共通設定*/
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  letter-spacing: 0.05em;
  font-family: YakuHanJP_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

.wrap {
    overflow: hidden;
}

.in-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
}

.in-title span {
    font-size: 16px;
}

.btn {
  margin-top: 50px;
}

.btn a {
  padding: 10px 60px;
  border: solid 1px #333;
  transition: 0.2s;
  position: relative;
}

.lead-txt {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: bold;
}

.arrow::before,
.arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -75%;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.arrow2::before {
  left: 3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn a:hover {
  opacity: 0.7;
  background-color: #000;
  color: #fff;
}

.page-title {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;  
  padding: 20vh 0;
  margin-bottom: 120px;
}

.page-title h1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.page-title span {
  font-size: 20px;
}
/*終わり*/


/*アニメーション*/
.js-scale {
  opacity: 0; /* 最初は非表示 */
  transform: scale(0.9); /* 下に100pxの位置から */
  transition: 0.5s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-scale.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: scale(1); /* 100px上に移動する */
  transition-delay: 0.4s; /* フェード開始を0.2秒遅らせる */
}

.scroll {
  opacity: 0;
  transform: translate3d(0, 25px, 0);
}

.scroll.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}
/*終わり*/


/*<header class="header">*/
.header-inner {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
}

.header-logo {
  font-weight: bold;
  font-size: 25px;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav ul li {
    padding: 0 30px;
    border-left: solid 1px #f1f1f1;
    font-weight: 600;
}

.header-nav ul li a {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.header-nav ul li span {
  font-size: 12px;
}

.header-nav ul li:last-child {
    border-right: solid 1px #f1f1f1;
}

.header-nav a:hover {
  opacity: 0.7;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
  padding: 30px 5vw;
  text-align: center;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
.lead-txt {
  font-size: 25px;
}
/*終わり*/  
  

/*<header class="header">*/
.header-inner {
  height: 80px;
}

/*ハンバーガーボタン*/
    .hamburger {
      display : block;
      position: fixed;
      z-index : 10;
      position: absolute;
      top: 50%;
      right: 5vw;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);      
      width : 42px;
      height: 42px;
      cursor: pointer;
      text-align: center;
    }
    .hamburger span {
      display : block;
      position: absolute;
      width   : 30px;
      height  : 2px ;
      left    : 6px;
      background : #555;
      -webkit-transition: 0.5s ease-in-out;
      -moz-transition   : 0.5s ease-in-out;
      transition        : 0.5s ease-in-out;
    }
    .hamburger span:nth-child(1) {
      top: 10px;
    }
    .hamburger span:nth-child(2) {
      top: 20px;
    }
    .hamburger span:nth-child(3) {
      top: 30px;
    }
  
    /* ナビ開いてる時のボタン */
    .hamburger.active span:nth-child(1) {
      top : 16px;
      left: 6px;
      -webkit-transform: rotate(315deg);
      -moz-transform   : rotate(315deg);
      transform        : rotate(315deg);
    }
  
    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
      top: 16px;
      -webkit-transform: rotate(-315deg);
      -moz-transform   : rotate(-315deg);
      transform        : rotate(-315deg);
    }
  
    .header-nav {
      position: fixed;
      z-index : 2;
      top  : 0;
      left : 0;
      color: #000;
      background: #fff;
      text-align: center;
      transform: translateY(-100%);
      transition: all 0.5s;
      width: 100%;
    }
  
    .header-nav ul {
      background: #fff;
      margin: 0 auto;
      padding: 100px 0;
      width: 100%;
      display: block;
      height: 100vh;
    }
  
    .header-nav ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      border-bottom: 1px solid #f1f1f1;
      margin: 0;
    }

    .header-nav ul li:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }

    .header-nav ul a:hover{
      background :#ddd;
    }
  
    .header-nav ul li a {
      color: #000;
      padding: 1.5em 0;
      text-decoration :none;
    }
  
    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
      transform: translateY(0%);
    }
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

.lead-txt {
  font-size: 20px;
}
/*終わり*/  
}