@charset "utf-8";

/* =============================================
Common
=============================================== */
html {
  font-family: 'Noto Serif JP', serif;
}

.content-wrap {
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.sec-wrap {
  margin-bottom: 50px;
}

.text {
  font-size: 16px;
  line-height: 1.6;
}

.ta-r {
  text-align: right;
}

img {
  vertical-align: bottom;
}

a {
  transition: .3s;
}
a:hover {
  opacity: .8;
}

main {
  overflow: hidden;
  padding-bottom: 70px;
}

.sec-ttl {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 18px;
  margin-bottom: 25px;
}
.sec-ttl .en {
  font-size: 20px;
  color: #BE9544;
  letter-spacing: 4px;
  /* margin-bottom: 20px; */
}

.more-btn {
  display: block;
  width: 145px;
  font-size: 14px;
  padding-left: 12px;
  position: relative;
}
.more-btn::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}
.more-btn::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 100vh;
  background: #000;
}
.c-white .more-btn::before,
.c-white .more-btn::after {
  background: #fff;
}

.sp {
  display: none;
}

/* フェードイン (jsでis-shown付与)*/
.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s;
}
.fade-in.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.c-white {
  color: #fff;
}

@media screen and (max-width:767px) {
  body {
    padding-top: 60px;
  }
  .content-wrap {
    padding: 0 10px;
  }
  .sec-wrap {
    margin-bottom: 12vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  main {
    padding-bottom: 14vw;
  }
  .sec-ttl {
    font-size: 6vw;
    letter-spacing: 2vw;
  }
  .sec-ttl .en {
    font-size: 4vw;
    letter-spacing: 1vw;
  }
  .text {
    font-size: 4vw;
  }
  .more-btn {
    font-size: 4vw;
    margin-left: auto;
  }
}

/* =============================================
Header
=============================================== */
.header {
  height: 80px;
}
.header .content-wrap {
  height: 100%;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-logo {
  display: block;
  max-width: 212px;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 640px;
}
.header-nav li {
  font-size: 14px;
  margin-right: 10px;
}
.header-nav li:last-child {
  margin-right: 0;
}
.hamburger {
  display: none;
}

@media screen and (max-width:767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 10;
  }
  .header-logo {
    max-width: 150px;
  }
  .header-nav {
    display: none;
    max-width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    flex-direction: column;
    background: #ccc;
    padding: 20px 0;
    z-index: 10;
  }
  .header-nav li {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .header-nav li:last-child {
    margin-bottom: 0;
  }
  .hamburger {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .hamburger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    top: calc(50% - 10px);
    background: #000;
    transition: .3s;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
    left: 0;
  }
  .hamburger span:last-child {
    top: calc(50% + 10px);
  }
  .hamburger.is-open span:first-child {
    transform: rotate(45deg);
    top: 50%;
  }
  .hamburger.is-open span:nth-child(2) {
    transform: scale(0);
  }
  .hamburger.is-open span:last-child {
    transform: rotate(135deg);
    top: 50%;
  }
}

/* =============================================
Footer
=============================================== */
.footer {
  background: #000;
  padding-top: 24px;
  padding-bottom: 7px;
}
.footer .content-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-left {
  margin-right: 20px;
}
.footer-logo {
  display: block;
  max-width: 212px;
  margin-bottom: 30px;
}
.footer-info {
  font-size: 18px;
  line-height: 1.6;
}
.copyright {
  width: 100%;
  margin-top: 28px;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width:767px) {
  .footer-logo {
    width: 150px;
  }
  .footer-info {
    font-size: 4vw;
    margin-bottom: 20px;
  }
  .footer-right {
    font-size: 4vw;
    margin-bottom: 30px;
  }
}

/* =============================================
下層ページ
=============================================== */
/* ページタイトル */
.page-ttl-wrap {
  color: #fff;
  background: #05033C;
  border-bottom: 10px solid #BE9544;
  padding: 0 40px 35px;
  margin-bottom: 90px;
}
.page-ttl-wrap .page-ttl {
  font-size: 52px;
  letter-spacing: 20px;
  text-align: center;
}
.page-ttl-wrap .page-ttl .en {
  font-size: 20px;
  letter-spacing: 5px;
  color: #BE9544;
}
@media screen and (max-width:767px) {
  .page-ttl-wrap {
    padding: 8vw 0 10vw;
    margin-bottom: 16vw;
  }
  .page-ttl-wrap .page-ttl {
    font-size: 7vw;
    letter-spacing: 4vw;
  }
  .page-ttl-wrap .page-ttl .en {
    font-size: 4vw;
  }
}

/* 下層ページ セクションタイトル */
.sec-ttl02 {
  font-size: 32px;
  letter-spacing: 12px;
  text-align: center;
  padding-bottom: 26px;
  margin-bottom: 40px;
  position: relative;
}
.sec-ttl02::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #BE9544;
}
@media screen and (max-width:767px) {
  .sec-ttl02 {
    font-size: 6vw;
    letter-spacing: 2vw;
    padding-bottom: 6vw;
    margin-bottom: 10vw;
  }
}

/* =============================================
お問い合わせボタン
=============================================== */
.contact-btn {
  display: flex;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 70px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  background: #BE9544;
  padding: 20px;
  margin: 0 auto;
  position: relative;
}
.contact-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 22px;
  width: 35px;
  height: 33px;
  transform: translateY(-50%);
  background: url(../img/contact_icon.png) 0 0 / cover no-repeat;
}

@media screen and (max-width:767px) {
  .contact-btn {
    font-size: 5vw;
    letter-spacing: 0.2vw;
    width: 90%;
    padding: 3vw;
  }
  .contact-btn::after {
    right: 6vw;
    width: 8vw;
    height: 7vw;
  }
}