@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  color: #333; /* RGB */
  font-family: "Shippori Mincho";
  font-weight: 100;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
h1,h2,h3 {
  font-family: "Lora";
  font-weight: 100;
  color: #545454;
}
a:hover {
  opacity: 0.5;
}
header, footer {
  font-family: "Montserrat";
}
.header {
 display: block;
    height: 120px;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    z-index: 50;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
}
.header-logo {
  display: block;
  width: 80px;
  margin-left: 20px;
  margin-top: 20px;
}
/*
.menu-content {
  display: block;
  text-align: right;
}
*/
.header-ul {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 0.12rem;
  list-style: none;
}
.header-ul li a {
  display: block;
  padding: 50px 30px 0;
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
/*  height: 120px;*/
}
.header-sns-button {
  display: none;
}
/*
.open-button, .close-button {
  display: none;
}
*/
.menu-btn {
  display: none;
}
#menu-btn-check {
  display: none;
}
#con {
   padding-top: 130px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -130px; /* heightと同じ分のネガティブマージン */
}
@media (max-width:1100px) {
  .header-wrapper {
  display: flex;
  justify-content: space-between;
    width: 100%;
}
  .header-logo {
     display: block;
    width: 60px;
    margin-left: 15px;
    margin-top: 10px;
}
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    background-color: #727077;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #b8aea7;
    transition: all 0.5s;/*アニメーション設定*/
}
   .header-ul {
      padding: 70px 10px 0;
    display: block;
    text-align: left;
  }
  .header-ul li {
   list-style: none;
    padding-bottom: 30px;
  }
  .header-ul li a {
    display: block;
    width: 100%;
    font-size: 2.0rem;
    font-weight: 200;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
 .header-ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #ffffff;
bottom: -1px;       /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
visibility: hidden; /*ホバー前に、アンダーラインを可視化しない*/
}

.header-ul li a:hover::after {
visibility: visible; /*ホバー後、アンダーラインを可視化する*/
}
  .header-sns-button {
    display: flex;
    padding-top: 40px;
    list-style: none;
    margin-left: 2%;
  }
  .header-sns-button img {
    padding-right: 30px;
    width: 30px;
    height: 30px;
  }

/*
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
*/
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }
  
  .header {
    display: block;
    height: 80px;
    max-width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  }
  .hamburger-menu {
    z-index: 100;
  }
  }
 
 
/*
  .header-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .menu-content ul {
    display: block;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #b8aea7;
    width: 100%;
    height: 620px;
    padding-top: 67px;
  }
  .menu-content ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .menu-content ul li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .menu-content li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
  }
*/
p {
  color: #727077;
  text-align: center;
  letter-spacing: 0.2rem;
  line-height: 3.5rem;
}
h2 {
  letter-spacing: 0.3rem;
}
h3 {
  letter-spacing: 0.3rem;
}
.footer {
  display: block;
  height: 360px;
  width: 100%;
  background-color: #8c8993;
  position: relative;
}
.footer-wrapper {
  display: flex;
  justify-content: center;
}
.footer-logo {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  width: 100px;
}
.footer nav {
  text-align: center;
  margin-bottom: 30px;
}
.footer nav ul {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer nav li a {
  display: block;
  padding: 20px 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  letter-spacing: 0.12rem;
}
.sns-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.sns-button li {
  list-style: none;
  margin: 0 20px;
}
.sns-button img {
  width: 30px;
  height: 30px;
}
.footer-button a {
  color: #333;
  position: fixed;
  bottom: -80px;
  right: 80px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
}
.arrow1 {
  width: 48px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 62px;
}
.arrow2 {
  width: 1px;
  height: 12px;
  background: #333;
  position: absolute;
  top: calc(50% + 1px);
  right: 109px;
  transform: rotate(-130deg);
  transform-origin: top left;
}
.footer__copyright {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}
@media (max-width:960px) {
  .footer {
    display: block;
    height: 270px;
    max-width: 100%;
    background-color: #8c8993;
  }
  /*
.footer-wrapper {
  display: flex;
  justify-content: center;
}
*/
  .footer-logo {
    display: block;
    margin: 0 auto;
    padding-top: 30px;
    width: 100px;
  }
  .footer nav {
    display: none;
  }
  .footer nav ul {
    display: none;
  }
  .footer nav li a {
    display: none;
  }
  .footer__copyright {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.0rem;
  }
  /*
.footer-button a {
  color: #333;
  position: fixed;
  bottom: 24px;
  right: 80px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
}
*/
  .arrow1 {
    width: 48px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    right: 62px;
  }
  .arrow2 {
    width: 1px;
    height: 12px;
    background: #333;
    position: absolute;
    top: calc(50% + 1px);
    right: 109px;
    transform: rotate(-130deg);
    transform-origin: top left;
  }
}