@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #fff;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 2;
  }
}
#wrapper {
  overflow: hidden;
}
section {
  padding: 80px 4%;
  background-image: url(../img/bg_black.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  section {
    padding: 60px 6%;
  }
}
@media screen and (max-width: 500px) {
  section {
    padding: 60px 6%;
  }
}
h2 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
h3 {
  font-size: 3.2rem;
  font-weight: 200;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 2.3rem;
  }
}

.txt-red {
  color: #c72c25;
}
.txt-gold {
  color: #bfa046;
}
p {
  text-align: justify
}
ul {
  list-style-type: none;
}
a {
  color: #fff;
  text-decoration: none;
}
a:visited {
  opacity: 1;
}
img {
  width: 100%;
  vertical-align:top;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
      pointer-events: none;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.br-440 {
  display: none;
}
@media screen and (max-width: 440px) {
  .br-440 {
    display: block;
  }
}
.br-530 {
  display: none;
}
@media screen and (max-width: 530px) {
  .br-530 {
    display: block;
  }
}
.br-650 {
  display: none;
}
@media screen and (max-width: 650px) {
  .br-650 {
    display: block;
  }
}



/* ----------------------header---------------------- */

.header {
  width: 100%;
  height: 100px;
  background-image: url("../img/bg_black.jpg");
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header__content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  width: 100%;
  padding: 0 4%;
}
.header__logo img {
  max-width: 150px;
  transform: translateY(5px);
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-image: url("../img/bg_black.jpg"); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    transform: initial;
    height: inherit;
    display: flex;
    justify-content: flex-end;
    width: auto;
    background: none;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
.nav-items {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .nav__items {
    display: flex;
    align-items: center;
    position: static;
    transform: none;
    top: auto;
    left: auto;
    background: transparent;
  }
}
/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .nav-items__item a {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (max-width: 500px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 460px) {
  .header__logo img {
    max-width: 130px;
  }
}
@media screen and (max-width: 410px) {
  .header__content {
    padding: 0 4%;
  }
  .header__logo img {
    max-width: 100px;
  }
}







/* ----------------------title---------------------- */

.ttl-area {
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .ttl-area {
    margin: 0 auto 60px;
  }
}
.sub-ttl {
  font-size: 2rem;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 500px) {
  .sub-ttl {
    font-size: 1.6rem;
  }
}


/* ----------------------footer---------------------- */


.footer {
  
  background-image: url(../img/bg_black.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  border-top: 1px solid #fff;
}
.footer__inner {
  padding: 40px 4% 20px;
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 500px;
  margin: 0 auto 80px;
}
.footer__snsArea {
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 30px;
}
.footer__snsArea img {
  width: 35px;
}
.footer small {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 30px 6% 15px;
  }
}
