@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;
  background-color: #f9f9f9;
  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;
}

.main {
    padding-top: 75px;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

.wrap {
    overflow: hidden;
}

.btn {
    margin-top: 30px;
}

.btn a {
    padding-bottom: 3px;
    border-bottom: solid 1px #333;
    transition: 0.2s;
}

.btn a:hover {
    opacity: 0.7;
}

.in-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
}

.in-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000000;
  margin-top: 10px;
  margin-left: 0;
  margin-right: auto;
}  

.lead-text {
    line-height: 1.3;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    display: inline-block;
}

.title {
  height: 65vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;  
  position: relative;
}

.title h1 {
  color: #fff;
  text-shadow: 0 0 10px #333;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', sans-serif;  
}

.title span {
  font-size: 16px;
}
/*終わり*/


/*アニメーション*/
/*カーテンを開くようなテキストアニメーション*/   
.visible {
	position: relative;
	overflow: hidden;
}

.visible::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 101%; /* 必要なら微調整する */
  height: 100%;
	background-color: #f9f9f9;
	transform-origin: right top;/* アニメーションの軸となる座標 */
	transition: 0.8s;/* 1秒かけてアニメーションする */
  transition-delay: 0.1s;
	z-index: 2;
}

.effect.visible::before {
    transform: scale(0, 1);
}
/*終わり*/

/*スクロールふわっと表示*/
.scroll {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}
.scroll.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.8s;
}
/*終わり*/

/*左右スクロールフェードイン*/
.js-fadeLeft {
  opacity: 0; 
  transform: translateX(-20px); 
  transition: opacity 1s, transform 1s; 
}

.js-fadeLeft.is-inview {
  opacity: 1; 
  transform: translateX(0); 
  transition-delay: 0.1s;
}

.js-fadeRight {
  opacity: 0; 
  transform: translateX(20px); 
  transition: opacity 1s, transform 1s;
}

.js-fadeRight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s; 
}
/*終わり*/


/*<header class="header">*/
.header-inner {
    width: 100%;
    height: 75px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.1);
}

.header-logo {
  font-size: 30px;
  font-family: 'Montserrat', sans-serif;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav ul li {
    padding: 0 30px;
}

.header-nav ul li:last-child {
    padding-right: 0;
} 

.header-nav ul li a {
  text-align: center;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-nav .sp-menu {
  display: none;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
    padding: 30px 5vw 15px 5vw;
}

.footer-in {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 70px auto;
}

.footer-logo {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;  
}

.footer-nav li a {
    font-family: 'Montserrat', sans-serif;
}

.footer-nav li a:hover {
    opacity: 0.7;
}  

.copyright {
    text-align: center;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
.lead-text {
  font-size: 25px;
}
/*終わり*/  
  

/*<header class="header">*/
/*ハンバーガーボタン*/
    .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: #f9f9f9;
      text-align: center;
      transform: translateX(100%);
      transition: all 0.5s;
      width: 100%;
      height: 100vh;
      padding: 20vh 0;
    }
  
    .header-nav ul {
      background: #f9f9f9;
      margin: 0 auto 0 5vw;
      width:60%;
      display: block;
    }
  
    .header-nav ul li {
      list-style-type: none;
      padding: 0;
      width: 100%;
      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 {
      text-align: left;
      color: #000;
      padding: 1.5em 0;
      text-decoration :none;
    }

    .header-nav ul li:last-child {
      border-bottom: solid 1px #333;
      padding-bottom: 50px;
    }

    .header-nav .sp-menu {
      display: block;
      padding-top: 50px;
      text-align: left;
    }

    .header-nav .sp-menu span {
      font-family: 'Montserrat', sans-serif;  
      font-size: 30px;
      margin-bottom: 20px;
      display: inline-block;
    }
  
    /* このクラスを、jQueryで付与・削除する */
    .header-nav.active {
      transform: translateX(20%);
    }
/*終わり*/ 
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

.lead-text {
  font-size: 22px;
}
/*終わり*/  


/*<header class="header">*/
.header-nav ul li a { 
  padding: 10px 0;
} 
/*終わり*/


/*<footer class="footer">*/
.footer-in {
  display: block;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 50px;
}

.footer-nav {
  margin-bottom: 30px;
}

/*終わり*/
}