@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333333; /* RGB */
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-family:  "Athelas", Athelas,;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
section h2 {
  font-size: 2.4rem;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #F6F7F9;
  box-sizing: border-box;
  padding: 30px 24px;
  z-index: 999;
}
.header__logo {
  height: 40px;
  width: auto;
}
@media (max-width: 959px) {
  .header-content-wrapper {
    display: flex;
    justify-content: space-between;
  }
/*　ハンバーガーボタン　*/
.header__hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.header__hamburger span {
  display : block;
  position: absolute;
  width   : 35px;
  height  : 2px ;
  left    : 6px;
  background : #aa632d;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.header__hamburger span:nth-child(1) {
  top: 20px;
}
.header__hamburger span:nth-child(2) {
  top: 30px;
}
.header__hamburger span:nth-child(3) {
  top: 40px;
}

/* ナビ開いてる時のボタン */
.header__hamburger.active {
  background :#493314;
}
.header__hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(6px);
  -moz-transform   : translateY(6px);
  transform        : translateY(6px);
}
.header__hamburger.active span:nth-child(2){
  -webkit-transform: translateY(-4px);
  -moz-transform   : translateY(-4px);
  transform        : translateY(-4px);
}  
.header__hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-14px);
  -moz-transform   : translateY(-14px);
  transform        : translateY(-14px);
}
nav.header__navigation {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
}
nav.header__navigation ul {
  background: #493314;
  margin: 0 auto;
  padding: 50px 0;
  width: 100%;
}

nav.header__navigation ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.header__navigation ul li:last-child {
  padding-bottom: 0;
}

nav.header__navigation ul li a {
  font-family: 'Lato', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  line-height: 48px;
  color: #fff;
  text-decoration :none;
}
  nav.header__navigation ul li a:hover {
    color: #a9a9a9;
  }
/* このクラスを、jQueryで付与・削除する */
nav.header__navigation.open {
  transform: translateY(0%);
}
}
@media (min-width: 960px) {
  .header {
   width: 100%;
   height: 130px;
   padding: 40px 24px;
  }
  .header-content-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1040px;
    margin: 0 auto;
  }
  .header__logo {
    height: 48px;
    width: auto;
  }
  .header__navigation {
    display: flex;
    align-items: center;
  }
  .header__navigation ul {
    display: flex;
  }
  .header__navigation li {
    padding-left: 30px;
  }
  .header__navigation ul li a {
    font-family: 'Lato', sans-serif;
    font-family: 'Noto Serif JP', serif;
    color: #333;
    text-decoration: none;
  }
  .header__navigation ul li a:hover {
    color: #aa632d;
  }
}
.footer {
  background-color: #493314;
  text-align: center;
  padding: 60px 24px;
}
.footer__logo {
  width: 152px;
  height: auto;
}
.footer ul li a {
  text-decoration: none;
  font-size: 1.3rem;
  color: #FFF;
  line-height: 40px;
  font-family: 'Lato', sans-serif;
  font-family: 'Noto Serif JP', serif;
}
.footer ul li a:hover {
  color: #a9a9a9;
}
.footer__contact-icons {
  margin: 20px 0 40px;
}
.footer__contact-icon  {
  width: 20px;
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
}
.footer__contact-icon:hover {
  opacity: 0.5;
}
@media (min-width:960px) {
  .footer__logo {
    width: 182px;
    height: auto;
  }
  .footer ul {
    display: flex;
    justify-content: center;
  }
  .footer ul li a {
    font-size: 1.6rem;
    margin: 30px;
  }
  .footer__contact-icons {
    margin-top: 40px;
  }
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}
.telephone:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*下に動く*/
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 95%;
  max-width: 505px;
  padding: 60px 55px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
}

.modal_title {
  font-size: 2.0rem;
	position: relative;
	overflow: hidden;
  padding: 0;
}
.modal-content p {
  margin: 10px 0 0 0;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
.footer-copyright {
    font-size: 1.0rem;
    color: #FFF;
}
.not-work {
  pointer-events: none;
  opacity: 0.5;
}