@charset "UTF-8";
/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: .3s ease-in;
  transition: .3s ease-in;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "YakuHanJP", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "源ノ角ゴシック JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  position: relative;
  background-image: url(../img/home/footer-back.png);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}

.l-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 73px 0 58px;
}

@media screen and (max-width: 1023px) {
  .l-footer__inner {
    padding: 43px 0 31px;
  }
}

.l-footer__logo-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 32px;
}

@media screen and (max-width: 1023px) {
  .l-footer__logo-list2 {
    margin-top: 53px;
  }
}

.l-footer__logo-item2 {
  width: 30px;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__logo-item2:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 61px;
}

@media screen and (max-width: 1023px) {
  .l-footer__logo-list {
    display: block;
  }
}

.l-footer__logo-item {
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__logo-item:nth-child(1) {
  width: 115px;
}

.l-footer__logo-item:nth-child(2) {
  width: 120px;
}

.l-footer__logo-item:nth-child(3) {
  width: 93px;
}

.l-footer__logo-item:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1023px) {
  .l-footer__logo-item {
    margin: 0 auto;
  }
  .l-footer__logo-item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.l-footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  margin-top: 60px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .l-footer__policy {
    display: block;
    margin-top: 47px;
    font-size: 12px;
  }
}

.l-footer__policy-item {
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__policy-item:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1023px) {
  .l-footer__policy-item {
    text-align: center;
  }
  .l-footer__policy-item:first-child {
    margin-bottom: 20px;
  }
}

.l-footer__policy-item > a {
  display: inline-block;
}

.l-footer__logo {
  display: block;
  width: 163px;
  margin-left: 24px;
}

.l-footer__logo img {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .l-footer__logo {
    width: 144px;
    margin: 0 auto;
  }
}

.l-footer__copyright {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 20px;
}

@media screen and (max-width: 1023px) {
  .l-footer__copyright {
    margin-top: 51px;
    font-size: 10px;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}

@media screen and (max-width: 1023px) {
  .l-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__nav > li {
    margin-bottom: 8px;
  }
}

.l-footer__nav > li:not(:last-child) {
  margin-right: 48px;
}

@media screen and (max-width: 1439px) {
  .l-footer__nav > li:not(:last-child) {
    margin-right: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__nav > li:not(:last-child) {
    margin-right: 16px;
  }
}

.l-footer__nav > li > a {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-footer__nav > li > a {
    font-weight: 600;
  }
}

.l-footer__nav > li > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-footer__nav > li > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-footer__nav > li.m-contact > a {
  width: 88px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  text-align: center;
}

.l-footer__nav > li.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-footer__nav > li.m-contact > a {
    width: 106px;
    height: 40px;
    line-height: 38px;
  }
}

.l-footer__nav > li.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

@media screen and (max-width: 1023px) {
  .l-footer__others {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__privacy {
  text-align: right;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .l-footer__privacy {
    margin-left: 20px;
  }
}

.l-footer__privacy > a:hover {
  opacity: .75;
}

.l-footer .c-language-swich {
  margin: 38px 0 38px;
}

@media screen and (max-width: 1023px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
.l-header {
  width: 100%;
  height: 60px;
  background-color: white;
  -webkit-transition: .3s;
  transition: .3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
}

@media screen and (min-width: 768px) {
  .l-header {
    height: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 80px;
  }
}

.l-header.is-hidden {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.l-header__inner {
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.l-header__logo a:hover {
  opacity: 1;
}

.l-header__logo a:hover > img {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.l-header__logo a img {
  width: 100%;
}

.l-header__logo a.m-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}

.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1441px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999;
}

@media screen and (min-width: 1024px) {
  .l-navbtn {
    display: none;
  }
}

.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transition: .3s;
  transition: .3s;
}

.l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.l-gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    padding: 35% 40px 124px;
    background-color: white;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    overflow-y: scroll;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  .l-gnav.is-open {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 1023px) {
  .l-gnav__item {
    text-align: center;
  }
}

.l-gnav__item:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 1024px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1441px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 64px;
  }
}

.l-gnav__item > a {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-gnav__item > a {
    font-size: 18px;
  }
}

.l-gnav__item.m-contact > a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  text-align: center;
  color: #fff;
}

.l-gnav__item.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav__item.m-contact > a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}

.l-gnav__item.m-contact > a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

.l-gnav__item-hover > a::before {
  display: block;
  content: '';
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__item-hover > a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-gnav__link-contact {
  line-height: 80px;
  width: 150px;
  text-align: center;
  background-color: blue;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.l-gnav__link-contact:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .7;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
  background-color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}

.c-btn > a::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .4s;
  transition: .4s;
  z-index: -1;
}

.c-btn > a > .arrow::before, .c-btn > a > .arrow::after {
  display: block;
  content: '';
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}

.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}

.c-btn > a:hover {
  color: #3B3C3E;
}

.c-btn > a:hover::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}

.c-btn > a:hover > .arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}

.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}

.c-btn.m-white > a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white > a::before {
  background-color: #F0F0F0;
}

.c-btn.m-white > a > .arrow::before {
  background-color: #3B3C3E;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.m-white > a > .arrow::after {
  content: none;
}

.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}

.c-btn.m-fw-normal > a {
  font-weight: 400;
}

.c-title {
  font-size: 96px;
  font-weight: 500;
  line-height: 100px;
  color: #781016;
  text-shadow: 0 4px 4px #0000003f;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 8px;
}

@media screen and (max-width: 1023px) {
  .c-title {
    letter-spacing: 2px;
    font-size: 40px;
    line-height: 40px;
  }
}

.c-sub-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 60px;
  text-align: left;
  letter-spacing: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
}

@media screen and (max-width: 1023px) {
  .c-sub-title {
    font-size: 10px;
    line-height: 10px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.c-container {
  max-width: 1440px;
  margin: 0 auto;
}

.c-sub__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-tag {
  background-color: #781016;
  font-size: 20px;
  font-weight: bold;
  width: 130px;
  color: #fff;
  height: 37px;
  line-height: 37px;
}

@media screen and (max-width: 1023px) {
  .c-tag {
    font-size: 10px;
    height: 21px;
    line-height: 21px;
    width: 51px;
  }
}

.c-main__text {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  line-height: 24px;
  margin: 30px auto 0;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .c-main__text {
    width: 100%;
    font-size: 10px;
    line-height: 14px;
    margin-top: 12px;
  }
}

.c-pc-only {
  display: block !important;
  font-size: unset !important;
  background-image: unset !important;
}

@media screen and (max-width: 1439px) {
  .c-pc-only {
    display: none !important;
  }
}

.c-sp-only {
  display: none;
}

@media screen and (max-width: 1023px) {
  .c-sp-only {
    display: block;
  }
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
/*=======================
  contact
=======================*/
/*=======================
  home
=======================*/
.fadein {
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.fadein2 {
  opacity: 0;
  -webkit-animation-name: fadein2;
          animation-name: fadein2;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes fadein2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes fadein2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.fadein3 {
  opacity: 0;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.p-fv__container {
  position: relative;
}

.p-fv__liner1 {
  position: absolute;
  left: 0;
  top: 5vw;
  width: 18.6vw;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .p-fv__liner1 {
    width: 43.7vw;
  }
}

.p-fv__liner2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 16vw;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-fv__liner2 {
    top: 37vw;
    width: 25.6vw;
  }
}

.p-fv__liner3 {
  position: absolute;
  left: 0;
  top: 43vw;
  width: 9.7vw;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-fv__liner3 {
    display: none;
  }
}

.p-fv__liner3-sp {
  display: none;
  position: absolute;
  left: 0;
  top: 111vw;
  width: 24.3vw;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-fv__liner3-sp {
    display: block;
  }
}

.p-fv__box {
  position: relative;
  color: #fff;
}

.p-fv__img {
  height: auto;
  width: 100%;
  max-height: 2150px;
}

@media (max-width: 2190px) {
  .p-fv__img {
    max-height: 1910px;
  }
}

@media (max-width: 1810px) {
  .p-fv__img {
    max-height: 1710px;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__img {
    display: none;
  }
}

.p-fv__img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-fv__img-sp {
    display: block;
    width: 100%;
  }
}

.p-fv__box-content {
  position: absolute;
  top: 54vw;
  right: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-fv__box-content {
    top: 140vw;
  }
}

@media screen and (max-width: 359px) {
  .p-fv__box-content {
    top: 135vw;
  }
}

.p-fv__box-name {
  font-size: 1.66vw;
  text-shadow: 0 4px 4px #0000003f;
  color: #E8E4E4;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 50px;
}

@media screen and (max-width: 1023px) {
  .p-fv__box-name {
    font-size: 14px;
    line-height: 35px;
  }
}

@media screen and (max-width: 359px) {
  .p-fv__box-name {
    letter-spacing: 0;
    line-height: 30px;
  }
}

.p-fv__box-name > span {
  font-size: 1.95vw;
}

@media screen and (max-width: 1023px) {
  .p-fv__box-name > span {
    font-size: 20px;
  }
}

.p-fv__box-title {
  position: relative;
  display: block;
  letter-spacing: 2.2px;
  text-align: center;
  font-weight: bold;
  font-size: 44px;
  text-shadow: 0 4px 4px #0000003f;
  margin-top: 36px;
  z-index: 2;
}

.p-fv__box-title::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/home/fv-back.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 47.2%;
  height: 100%;
  z-index: -1;
  -webkit-transform: rotate(-7.7deg);
          transform: rotate(-7.7deg);
}

@media screen and (max-width: 1023px) {
  .p-fv__box-title::before {
    width: 87.6%;
  }
}

@media screen and (max-width: 1439px) {
  .p-fv__box-title {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1023px) {
  .p-fv__box-title {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 359px) {
  .p-fv__box-title {
    margin-top: 10px;
  }
}

.p-fv__box-title > span {
  color: #D9B66A;
}

.p-fv__box-detail {
  display: block;
  width: 388px;
  margin: 74px auto 0;
}

@media screen and (max-width: 1439px) {
  .p-fv__box-detail {
    margin-top: 34px;
  }
}

@media screen and (max-width: 1023px) {
  .p-fv__box-detail {
    margin-top: 27px;
    width: 224px;
  }
}

.p-fv__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-fv__box-text {
  font-weight: 500;
  font-size: 18px;
  text-align: left;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .p-fv__box-text {
    font-size: 12px;
  }
}

.p-fv__box-left {
  width: 150px;
}

@media screen and (max-width: 1023px) {
  .p-fv__box-left {
    width: 80px;
  }
}

.p-fv__bottom2 {
  margin-top: 7vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: -2VW;
  line-height: 239px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom2 {
    display: block;
    line-height: 80px;
    bottom: -145px;
    margin-top: 12vw;
    margin-top: -90px;
  }
}

.p-fv__bottom {
  position: relative;
  margin-top: 7vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: -2VW;
  line-height: 239px;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom {
    display: block;
    line-height: 80px;
    bottom: -145px;
    margin-top: 12vw;
    margin-top: -90px;
  }
}

@media screen and (max-width: 359px) {
  .p-fv__bottom {
    margin-top: -110px;
  }
}

.p-fv__bottom::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/home/open-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -99px;
  left: 0;
  width: 460px;
  height: 101px;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom::after {
    bottom: -35px;
    top: unset;
    width: 163px;
    height: 36px;
  }
}

.p-fv__bottom::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/home/open-right.png);
  background-repeat: no-repeat;
  bottom: -846px;
  right: 0;
  width: 238px;
  height: 847px;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom::before {
    top: unset;
    bottom: -265px;
    width: 75px;
    height: 267px;
  }
}

.p-fv__bottom-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: url(../img/home/fv-bottom-left.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.p-fv__bottom-left:hover {
  background-color: #000;
  background-image: url(../img/home/fv-bottom-hover.png);
  -webkit-transition: .5s;
  transition: .5s;
}

.p-fv__bottom-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-image: url(../img/home/fv-bottom-right.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.p-fv__bottom-right:hover {
  background-color: #000;
  background-image: url(../img/home/fv-bottom-hover2.png);
  -webkit-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom-right {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

.p-fv__bottom-title {
  position: relative;
  font-size: 2.1vw;
  letter-spacing: 2.5px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 1439px) {
  .p-fv__bottom-title {
    padding-right: 4vw;
  }
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom-title {
    font-size: 14px;
    padding-right: 10vw;
  }
}

.p-fv__bottom-title::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/home/arrow.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: #ac181e;
  border-radius: 50px;
  top: 37%;
  right: 10%;
  width: 62px;
  height: 62px;
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom-title::before {
    background-image: url(../img/home/arrow-sp.svg);
    width: 27px;
    height: 27px;
    right: 15%;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__bottom-title::before {
    top: 33%;
  }
}

@media screen and (max-width: 1439px) {
  .p-fv__bottom-title2 {
    padding-right: 4vw;
  }
}

@media screen and (max-width: 1023px) {
  .p-fv__bottom-title2 {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

@media screen and (max-width: 359px) {
  .p-fv__bottom-title2 {
    padding-right: 13vw;
  }
}

.p-opening {
  position: relative;
}

.p-opening__container {
  padding: 220px 147px 0;
}

@media screen and (min-width: 1441px) {
  .p-opening__container {
    padding-top: 300px;
  }
}

@media screen and (max-width: 1439px) {
  .p-opening__container {
    padding-top: 260px;
  }
}

@media screen and (max-width: 1023px) {
  .p-opening__container {
    padding: 40px;
    padding-top: 220px;
  }
}

@media screen and (max-width: 359px) {
  .p-opening__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-opening__title-box {
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .p-opening__sub-title {
    display: none;
  }
}

.p-opening__sub-title-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-opening__sub-title-sp {
    -webkit-transform-origin: left;
            transform-origin: left;
    display: block;
  }
}

.p-opening__boxes {
  margin-top: 106px;
}

@media screen and (max-width: 1023px) {
  .p-opening__boxes {
    margin-top: 36px;
  }
}

.p-opening__box {
  text-align: center;
  width: 560px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .p-opening__box {
    width: 100%;
  }
}

.p-opening__box1 {
  padding-bottom: 91px;
}

@media screen and (max-width: 1023px) {
  .p-opening__box1 {
    padding-bottom: 40px;
  }
}

.p-opening__box-bar {
  border-bottom: 1px solid #000;
}

.p-opening__box-title {
  position: relative;
  margin: 0 auto;
  font-weight: 600;
  color: #000;
  font-size: 2.1vw;
  text-align: center;
  letter-spacing: 8px;
}

@media screen and (max-width: 1023px) {
  .p-opening__box-title {
    font-size: 18px;
  }
}

.p-opening__box-title::after {
  font-family: 'Oswald', sans-serif;
  content: "";
  background-image: url(../img/home/number1.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  font-size: 100px;
  top: -30px;
  left: 0;
  width: 117px;
  height: 100px;
}

@media screen and (max-width: 1023px) {
  .p-opening__box-title::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}

.p-opening__box-title2 {
  position: relative;
  letter-spacing: 8px;
  margin: 0 auto;
  font-weight: 600;
  color: #000;
  font-size: 2.1vw;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .p-opening__box-title2 {
    width: 100%;
    font-size: 18px;
  }
}

.p-opening__box-title2::after {
  font-family: 'Oswald', sans-serif;
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  width: 117px;
  height: 100px;
  top: -30px;
  left: 0;
  background-image: url(../img/home/number2.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-opening__box-title2::after {
    top: 0;
    width: 30px;
    height: 30px;
  }
}

.p-opening__img {
  width: 560px;
  margin-top: 37px;
}

@media screen and (max-width: 1023px) {
  .p-opening__img {
    width: 100%;
    margin-top: 9px;
  }
}

.p-opening__sub-box {
  margin-top: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1023px) {
  .p-opening__sub-box {
    margin-top: 12px;
  }
}

.p-opening__sub-box-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

@media screen and (max-width: 1023px) {
  .p-opening__sub-box-title {
    font-size: 10px;
  }
}

@media screen and (max-width: 359px) {
  .p-opening__sub-box-title {
    letter-spacing: 1px;
  }
}

.p-opening__sub-box-title2 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .p-opening__sub-box-title2 {
    font-size: 10px;
    text-align: left;
    line-height: 12px;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 359px) {
  .p-opening__sub-box-title2 {
    font-size: 12px;
    letter-spacing: 0;
    width: 213px;
  }
}

.p-opening__box2 {
  margin: 0 auto;
  margin-top: 80px;
  width: 560px;
}

@media screen and (max-width: 1023px) {
  .p-opening__box2 {
    width: 100%;
  }
}

.p-third {
  position: relative;
}

.p-third::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/home/03.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (min-width: 1441px) {
  .p-third::before {
    background-size: cover;
  }
}

@media screen and (max-width: 1023px) {
  .p-third::before {
    background-image: url(../img/home/03-sp.png);
  }
}

.p-third__container {
  position: relative;
  z-index: 2;
  padding: 0 135px 0 190px;
  margin-top: 82px;
}

@media screen and (max-width: 1439px) {
  .p-third__container {
    padding: 0 50px;
  }
}

@media screen and (max-width: 1023px) {
  .p-third__container {
    margin-top: 32px;
  }
}

@media screen and (max-width: 359px) {
  .p-third__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-third__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 285px;
}

@media screen and (max-width: 1439px) {
  .p-third__boxes {
    padding-top: 175px;
  }
}

@media screen and (max-width: 1023px) {
  .p-third__boxes {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-third__boxes {
    padding-top: 77px;
  }
}

.p-third__box1 {
  position: relative;
  width: 560px;
}

@media screen and (max-width: 1439px) {
  .p-third__box1 {
    width: 500px;
  }
}

@media screen and (max-width: 1023px) {
  .p-third__box1 {
    width: 100%;
  }
}

.p-third__box1::after {
  font-family: 'Oswald', sans-serif;
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  width: 117px;
  height: 100px;
  top: -110px;
  left: 0;
  background-image: url(../img/home/number3.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-third__box1::after {
    top: -44px;
    width: 33px;
    height: 31px;
  }
}

.p-third__title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .p-third__title {
    color: #000;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 15px;
  }
}

.p-third__box2 {
  width: 447px;
}

@media screen and (max-width: 1439px) {
  .p-third__box2 {
    width: 34.1vw;
  }
}

@media screen and (max-width: 1023px) {
  .p-third__box2 {
    width: 100%;
  }
}

.p-third__text {
  margin-top: 70px;
}

@media screen and (max-width: 1023px) {
  .p-third__text {
    margin-top: 15px;
  }
}

.p-fourth {
  background: -webkit-gradient(linear, left top, left bottom, from(#8B7544), to(#614D1D));
  background: linear-gradient(#8B7544, #614D1D);
}

.p-fourth__container {
  margin-top: 343px;
  padding: 0 135px 73px 170px;
  color: #fff;
}

@media screen and (max-width: 1439px) {
  .p-fourth__container {
    padding: 0 45px 40px 50px;
    margin-top: 155px;
  }
}

@media screen and (max-width: 359px) {
  .p-fourth__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-fourth__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1023px) {
  .p-fourth__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-fourth__box1 {
  padding-top: 54px;
}

@media screen and (max-width: 1023px) {
  .p-fourth__box1 {
    padding-top: 15px;
  }
}

.p-fourth__title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 8px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1023px) {
  .p-fourth__title {
    text-align: center;
    font-size: 18px;
  }
}

.p-fourth__tag {
  background-color: #fff;
  color: #634f1f;
  margin-bottom: 10px;
}

@media screen and (max-width: 1023px) {
  .p-fourth__tag {
    width: 62px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
  }
}

.p-fourth__sub-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .p-fourth__sub-title {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 2.6px;
  }
}

.p-fourth__box2 {
  position: relative;
  width: 560px;
  margin-top: -73px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 1023px) {
  .p-fourth__box2 {
    width: 100%;
  }
}

.p-fourth__box2::after {
  font-family: 'Oswald', sans-serif;
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  width: 117px;
  height: 100px;
  top: -110px;
  right: 0;
  background-image: url(../img/home/number4.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-fourth__box2::after {
    top: -44px;
    width: 33px;
    height: 31px;
  }
}

.p-fourth__text {
  margin-top: 21px;
  color: #fff;
}

.p-fifth {
  position: relative;
}

.p-fifth__container {
  padding: 113px 147px 150px;
}

@media screen and (max-width: 1439px) {
  .p-fifth__container {
    padding-top: 113px;
  }
}

@media screen and (max-width: 1023px) {
  .p-fifth__container {
    padding: 40px;
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 359px) {
  .p-fifth__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-fifth__box-title {
  position: relative;
  margin: 0 auto;
  font-weight: 600;
  color: #000;
  font-size: 2.1vw;
  text-align: center;
  letter-spacing: 8px;
}

@media screen and (max-width: 1023px) {
  .p-fifth__box-title {
    font-size: 18px;
  }
}

.p-fifth__box-title::after {
  font-family: 'Oswald', sans-serif;
  content: "";
  display: block;
  position: absolute;
  font-size: 100px;
  width: 117px;
  height: 100px;
  top: -30px;
  left: 0;
  background-image: url(../img/home/number5.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-fifth__box-title::after {
    top: 0;
    width: 33px;
    height: 31px;
  }
}

.p-fifth__box {
  text-align: center;
  width: 560px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .p-fifth__box {
    width: 100%;
  }
}

.p-fifth__img {
  margin-top: 49px;
}

@media screen and (max-width: 1023px) {
  .p-fifth__img {
    margin-top: 11px;
  }
}

.p-fifth__text {
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .p-fifth__text {
    letter-spacing: 0.8px;
  }
}

.p-panel {
  background-color: #EFE8D8;
}

.p-panel__container {
  color: #000;
  padding: 100px 143px 187px;
}

@media screen and (max-width: 1023px) {
  .p-panel__container {
    padding: 70px 40px;
  }
}

@media screen and (max-width: 359px) {
  .p-panel__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-panel__sub-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1023px) {
  .p-panel__sub-title-box {
    margin-bottom: 5px;
    font-size: 10px;
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media screen and (max-width: 359px) {
  .p-panel__sub-title-box {
    width: 110%;
  }
}

.p-panel__sub-title {
  font-weight: 500;
  letter-spacing: 8px;
  font-size: 60px;
  color: #781016;
  text-shadow: 0 4px 4px #0000003f;
  font-family: 'Oswald', sans-serif;
  margin-right: 10px;
}

@media screen and (max-width: 1023px) {
  .p-panel__sub-title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.p-panel__boxes {
  margin-top: 80px;
}

@media screen and (max-width: 1023px) {
  .p-panel__boxes {
    margin-top: 35px;
  }
}

.p-panel__box {
  background-color: #fff;
  padding: 74px 71px 70px 70px;
}

@media screen and (max-width: 1023px) {
  .p-panel__box {
    padding: 25px 10px 20px;
  }
}

.p-panel__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  padding-bottom: 37px;
  line-height: 100px;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 1439px) {
  .p-panel__box-title {
    line-height: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title {
    line-height: 15px;
    font-size: 10px;
    padding-bottom: 18px;
  }
}

.p-panel__box-title > span {
  display: block;
  font-size: 100px;
  width: 117px;
  height: 100px;
  background-image: url(../img/home/number01.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title > span {
    width: 33px;
    height: 31px;
  }
}

.p-panel__box-title2 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  padding-bottom: 37px;
  border-bottom: 1px solid #000;
  line-height: 100px;
}

@media screen and (max-width: 1439px) {
  .p-panel__box-title2 {
    line-height: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title2 {
    font-size: 14px;
    line-height: 30px;
    padding-bottom: 17px;
    letter-spacing: 3px;
    font-weight: bold;
    padding-left: 20px;
  }
}

@media screen and (max-width: 359px) {
  .p-panel__box-title2 {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.p-panel__box-title2 > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 100px;
  width: 117px;
  height: 100px;
  background-image: url(../img/home/number02.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1439px) {
  .p-panel__box-title2 > span {
    top: -30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title2 > span {
    width: 33px;
    height: 31px;
    top: 0;
  }
}

.p-panel__box-title3 {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  padding-bottom: 37px;
  border-bottom: 1px solid #000;
  line-height: 100px;
}

@media screen and (max-width: 1439px) {
  .p-panel__box-title3 {
    line-height: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title3 {
    font-size: 14px;
    line-height: 30px;
    padding-bottom: 17px;
    letter-spacing: 3px;
    font-weight: bold;
    padding-left: 20px;
  }
}

@media screen and (max-width: 359px) {
  .p-panel__box-title3 {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.p-panel__box-title3 > span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 100px;
  width: 117px;
  height: 100px;
  background-image: url(../img/home/number03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1439px) {
  .p-panel__box-title3 > span {
    top: -30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-panel__box-title3 > span {
    top: 0;
    width: 33px;
    height: 31px;
  }
}

.p-panel__img {
  display: block;
  margin-top: 45px;
  width: 560px;
}

@media screen and (max-width: 1023px) {
  .p-panel__img {
    width: 100%;
  }
}

.p-panel__content {
  text-align: left;
  width: 590px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .p-panel__content {
    width: 100%;
  }
}

.p-panel__tag1 {
  margin-top: 51px;
}

@media screen and (max-width: 1023px) {
  .p-panel__tag1 {
    margin-top: 15px;
    letter-spacing: 0;
    width: 62px;
    height: 20px;
  }
}

.p-panel__tag2 {
  margin-top: 22px;
}

@media screen and (max-width: 1023px) {
  .p-panel__tag2 {
    margin-top: 10px;
    letter-spacing: 0;
    width: 62px;
    height: 20px;
  }
}

.p-panel__box-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  margin-top: 15px;
  line-height: 35px;
}

@media screen and (max-width: 1023px) {
  .p-panel__box-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 12px;
    font-weight: bold;
  }
}

.p-panel__box-text2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: left;
  line-height: 35px;
  margin-top: 15px;
}

@media screen and (max-width: 1023px) {
  .p-panel__box-text2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: 0px;
    line-height: 12px;
    font-weight: bold;
  }
}

.p-panel__fz18 {
  font-size: 18px;
}

@media screen and (max-width: 1023px) {
  .p-panel__fz18 {
    font-size: 10px;
    display: block;
  }
}

.p-panel__fz14 {
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .p-panel__fz14 {
    font-size: 10px;
  }
}

.p-panel__bottom {
  margin-top: 0;
}

.p-announce__container {
  color: #000;
  background-color: #f5f5f5;
  padding: 120px 188px 151px 160px;
}

@media screen and (max-width: 1023px) {
  .p-announce__container {
    padding: 55px 50px;
  }
}

@media screen and (max-width: 359px) {
  .p-announce__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-announce__box1 {
  text-align: center;
  margin-top: 70px;
}

@media screen and (max-width: 1023px) {
  .p-announce__box1 {
    margin-top: 40px;
  }
}

.p-announce__box-title {
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 60px;
  font-weight: 600;
}

@media screen and (max-width: 1023px) {
  .p-announce__box-title {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 18px;
  }
}

.p-announce__img {
  margin: 0 auto;
  margin-top: 55px;
  width: 560px;
}

@media screen and (max-width: 1023px) {
  .p-announce__img {
    width: 100%;
    margin-top: 12px;
  }
}

.p-announce__box2 {
  margin-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1023px) {
  .p-announce__box2 {
    margin-top: 19px;
    display: block;
  }
}

.p-announce__main-text {
  text-align: left;
  width: 66.1%;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .p-announce__main-text {
    margin-top: 15px;
    width: 100%;
  }
}

.p-photo {
  position: relative;
}

.p-photo__liner1 {
  position: absolute;
  left: 0;
  bottom: 6vw;
  width: 19.5vw;
  height: auto;
  z-index: 1;
}

.p-photo__liner2 {
  position: absolute;
  right: 0;
  top: 1vw;
  width: 16vw;
  height: auto;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .p-photo__liner2 {
    width: 13.9vw;
  }
}

@media screen and (max-width: 1023px) {
  .p-end__img {
    display: none;
  }
}

.p-end__img-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-end__img-sp {
    display: block;
    width: 100%;
  }
}

.p-ending__title-box {
  background: -webkit-gradient(linear, left top, left bottom, from(#8B7544), to(#614D1D));
  background: linear-gradient(#8B7544, #614D1D);
  padding: 75px 0 79px 153px;
}

@media screen and (max-width: 1023px) {
  .p-ending__title-box {
    padding: 40px;
  }
}

@media screen and (max-width: 359px) {
  .p-ending__title-box {
    padding: 20px;
  }
}

.p-ending__sub-title {
  color: #fff;
}

.p-ending__title {
  color: #fff;
}

.p-ending__container {
  color: #000;
  padding: 106px 147px 140px;
}

@media screen and (max-width: 1023px) {
  .p-ending__container {
    padding: 28px 50px 50px;
  }
}

@media screen and (max-width: 359px) {
  .p-ending__container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-ending__sub-box {
  display: block;
}

@media screen and (max-width: 1023px) {
  .p-ending__sub-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-ending__sub-box-title {
  margin-top: 9px;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .p-ending__sub-box-title {
    letter-spacing: 0;
  }
}

.p-ending__sub-box-title > span {
  font-size: 15px;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .p-ending__sub-box-title > span {
    font-size: 10px;
  }
}

.p-ending__sub-box-title2 {
  letter-spacing: 1px;
}

.p-ending__tag {
  background-color: #AA8A43;
}

.slider-box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #f5f5f5), to(#EFE8D8));
  background: linear-gradient(to bottom, #f5f5f5 80%, #EFE8D8);
}

.slider1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
  height: 166px;
  background-image: url(../img/home/layer.png);
}

@media screen and (max-width: 1439px) {
  .slider1 {
    height: 120px;
  }
}

@media screen and (max-width: 1023px) {
  .slider1 {
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .slider1 {
    height: 46px;
  }
}

.slider2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  height: 166px;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  background-color: #D9B66A;
}

@media screen and (max-width: 1439px) {
  .slider2 {
    height: 120px;
  }
}

@media screen and (max-width: 1023px) {
  .slider2 {
    height: 80px;
  }
}

@media screen and (max-width: 767px) {
  .slider2 {
    height: 46px;
  }
}

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

@media screen and (max-width: 767px) {
  .slider img {
    height: 29px;
  }
}

.slider2 img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /*スライダー内の画像を横幅100%に*/
  height: 120px;
}

@media screen and (max-width: 1439px) {
  .slider2 img {
    height: 80px;
  }
}

@media screen and (max-width: 1023px) {
  .slider2 img {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .slider2 img {
    height: 30px;
    width: initial;
  }
}

@media screen and (max-width: 359px) {
  .slider2 img {
    height: 25px;
  }
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
  /*スライド左右の余白調整*/
}

iframe {
  width: 100%;
}

@media screen and (max-width: 767px) {
  iframe {
    height: auto;
  }
}

a {
  cursor: pointer !important;
}
/*# sourceMappingURL=style.css.map */