@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;
}

.main {
  background-color: #F5F3ED;
  padding-top: 90px;
}

img {
  max-width: 100%;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

h4 {
    font-size: 20px;
}

.wrap {
    overflow: hidden;
}

.in-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.in-title h2 {
    position: relative;
}

.in-title p {
    font-size: 50px;
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #EDE9E0;
    font-weight: bold;
}

.lead-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.btn {
    margin-top: 50px;
}

.btn a {
    color: #fff;
    font-weight: bold;
    border-radius: 100vh;
    padding: 15px 0;
    background-color: #AD8B73;
    display: inline-block;
    width: 200px;
    text-align: center;
    transition: 0.2s;
    border: solid 2px #AD8B73;
}

.btn a:hover {
    background-color: #fff;
    color: #AD8B73;
}

.title {
    height: 50vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;  
    position: relative;
}

.title h1 {
  position: absolute;
  bottom: 5%;
  left: 5vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #EDE9E0;
  text-shadow: 0 0 5px #333;
  line-height: 1.3;
  font-size: 55px;
}

.title span {
  font-size: 30px;
}
/*終わり*/


/*アニメーション*/
.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: 90px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    background-color: #fff;
}

.header-logo {
  font-weight: bold;
  font-size: 25px;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav ul li {
    padding: 0 30px;
    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 a:hover {
  opacity: 0.7;
}
/*終わり*/


/*<footer class="footer">*/
.footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 5vw;
  text-align: center;
  background-color: #fff;
}

.footer-in {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.footer-logo {
  text-align: left;
}

.footer-logo a {
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
}

.footer-nav li {
  margin-left: 30px;
  font-weight: bold;
}

.footer-nav a:hover {
  opacity: 0.7;
}
/*終わり*/


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
.main {
    padding-top: 80px;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 20px;
}

h4 {
    font-size: 18px;
}

.in-title p {
    font-size: 40px;
}

.lead-text {
    font-size: 22px;
}

/*終わり*/  
  

/*<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: #EDE9E0;
      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) {
/*共通設定*/
.title h1 {
  font-size: 30px;
}

.title span {
  font-size: 16px;
}

.in-title p {
  top: -100%;
  left: 0;
  font-size: 45px;
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}

.btn a {
  padding: 10px 0;
}
/*終わり*/ 


/*<footer class="footer">*/
.footer-in {
  display: block;
}

.footer-nav {
  display: block;
  margin-top: 30px;
}

.footer-nav li {
  margin-left: 0;
  text-align: left;
}
/*終わり*/
}
/*終わり*/