@charset "UTF-8";


/*----------------------------------------
Variables
----------------------------------------*/
@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Yuji+Syuku&display=swap";
/*
# Color */
/*
# Setting */
/*
# ScrollBar */
/* $color-track: #f1f1f1; */
/* $color-thumb: #adadad; */
/*
# Hover */
/*
# Font Family */
/*
# Font Weight */
/*
# Width */
/* IEハック用mixin */
/*----------------------------------------
Extend
----------------------------------------*/
/*----------------------------------------
Keyframes
----------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*----------------------------------------
Common / layout
----------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  background: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.1;
  color: #332612;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  word-break: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

body[data-menu="active"] {
  position: fixed;
  width: 100%;
}

@media screen and (min-width: 1025px) {
  body[data-menu="active"] {
    padding-right: 10px;
  }
}

a {
  color: #332612;
  text-decoration: none;
}

@media screen and (min-width: 1025px) {
  a:not([class]):hover {
    opacity: 0.7;
  }
}

select,
input,
textarea {
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  border-radius: 15px;
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background: #adadad;
}

::-moz-selection {
  background-color: #fff;
  color: #332612;
}

::selection {
  background-color: #fff;
  color: #332612;
}

.is-link-none {
  pointer-events: none;
  cursor: default;
}

/*----------------------------------------
Media
----------------------------------------*/
.pc {
  display: block;
}

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

.sp {
  display: none;
}

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

.tablet {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.laptop {
  display: none;
}

@media screen and (min-width: 768px) {
  .laptop {
    display: block;
  }
}

/*----------------------------------------
layout
----------------------------------------*/
.l-body {
  background-color: #fff4e7;
}

.l-subpage {
  margin: 0 auto;
  padding: 0;
}

.l-container {
  position: relative;
  z-index: 0;
  display: block;
  margin: auto;
  padding: 0 40px;
  background-color: #b87932;
}

@media screen and (max-width: 1024px) {
  .l-container {
    padding: 0 36px;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 30px;
  }
}

.l-main {
  max-width: 100%;
}

.g-copyright {
  display: -webkit-box;
  display: flex;
  min-height: 80px;
  padding: 10px 0;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.g-copyright-txt {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.g-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-menu="active"] .g-drawer {
  pointer-events: all;
  opacity: 1;
}

.g-drawer-wrap {
  position: relative;
  left: 100px;
  overflow-y: auto;
  width: 80%;
  max-width: 500px;
  min-height: 100%;
  margin: 0 0 0 auto;
  padding: 90px 50px;
  background-color: #b01414;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-drawer-wrap {
    padding: 70px 20px;
  }
}

[data-menu="active"] .g-drawer-wrap {
  left: 0;
  opacity: 1;
}

.g-drawer-inner {
  width: 100%;
  height: 100%;
}

.g-drawer-inner::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.g-drawer-inner::-webkit-scrollbar-track {
  border-radius: 0;
  background: transparent;
}

.g-drawer-inner::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: transparent;
}

.g-drawer-nav {
  margin: auto;
}

.g-drawer-nav-item {
  position: relative;
}

.g-drawer-nav-item::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  color: #fff;
  content: "";
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.g-drawer-nav-item + .g-drawer-nav-item {
  border-top: 2px dashed #fff;
}

.g-drawer-nav-item-link {
  display: inline-block;
  width: 100%;
  padding: 16px 12px;
  background-color: transparent;
  font-family: "Yuji Syuku", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (min-width: 1025px) {
  .g-drawer-nav-item-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/*----------------------------------------
g-footer
----------------------------------------*/
.l-footer {
  display: block;
  padding: 0;
}

.g-footer {
  margin: auto;
  padding: 54px 40px 44px;
  background-color: #b01414;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .g-footer {
    padding: 44px 30px 36px;
  }
}

.g-footer-nav-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .g-footer-nav-list {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.g-footer-nav-item {
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  .g-footer-nav-item {
    padding: 0 15px 10px;
  }
}

.g-footer-nav-item-link {
  position: relative;
  display: block;
  padding-left: 10px;
  color: #fff;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-footer-nav-item-link {
    display: inline-block;
    padding: 8px 12px;
  }
}

@media screen and (min-width: 1025px) {
  .g-footer-nav-item-link:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------
g-header
----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  left: 0;
  background: -webkit-linear-gradient(top, #fff4e7 55%, transparent 100%);
  background: linear-gradient(180deg, #fff4e7 55%, transparent 100%);
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (min-width: 1025px) {
  [data-status="loading"] .l-header {
    padding-right: 10px;
  }
}

.l-header.is-lower, .l-header.is-bgcolor {
  background-color: #fff4e7;
}

.g-header-inner {
  position: relative;
  display: -webkit-box;
  display: flex;
  height: 90px;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1200px) {
  .g-header-inner {
    height: 70px;
    -webkit-box-pack: end;
            justify-content: flex-end;
  }
}

.g-header-nav {
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.g-header-nav-list {
  display: -webkit-box;
  display: flex;
  padding: 0 15px 0 30px;
  flex-wrap: nowrap;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .g-header-nav-list {
    display: none;
  }
}

.g-header-nav-item {
  position: relative;
  padding: 2px 10px 4px 0;
}

.g-header-nav-item-link {
  position: relative;
  display: block;
  padding: 8px;
  border-radius: 3px;
  background-color: transparent;
  font-family: "Yuji Syuku", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
  line-height: 1;
  color: #332612;
  white-space: nowrap;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-header-nav-item-link {
    padding: 0;
  }
}

.g-header-nav-item-link:hover {
  background-color: #b01414;
  color: #fff;
}

.g-header-ham {
  position: relative;
  z-index: 1;
  display: none;
  overflow: hidden;
  width: 90px;
  height: 100%;
  border: 0;
  background-color: #b01414;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .g-header-ham {
    display: block;
    width: 70px;
  }
}

@media screen and (max-width: 767px) {
  .g-header-ham {
    width: 70px;
    height: 70px;
  }
}

[data-menu="active"] .g-header-ham {
  margin-right: 10px;
  background-color: transparent;
}

@media screen and (max-width: 1024px) {
  [data-menu="active"] .g-header-ham {
    margin-right: 0;
  }
}

.g-header-ham-line {
  position: absolute;
  left: 50%;
  display: block;
  width: 42px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .g-header-ham-line {
    width: 25px;
    height: 1px;
  }
}

.g-header-ham-line:nth-child(1) {
  top: calc(50% - 12px);
}

@media screen and (max-width: 767px) {
  .g-header-ham-line:nth-child(1) {
    top: calc(50% - 8px);
  }
}

.g-header-ham-line:nth-child(2) {
  top: 50%;
}

.g-header-ham-line:nth-child(3) {
  top: calc(50% + 12px);
}

@media screen and (max-width: 767px) {
  .g-header-ham-line:nth-child(3) {
    top: calc(50% + 8px);
  }
}

[data-menu="active"] .g-header-ham-line {
  top: 50%;
}

[data-menu="active"] .g-header-ham-line:nth-child(1) {
  background-color: #fff;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
}

[data-menu="active"] .g-header-ham-line:nth-child(2) {
  background-color: transparent;
  -webkit-transform: translateX(-50%) rotate(-180deg);
          transform: translateX(-50%) rotate(-180deg);
}

[data-menu="active"] .g-header-ham-line:nth-child(3) {
  background-color: #fff;
  -webkit-transform: translateX(-50%) rotate(-135deg);
          transform: translateX(-50%) rotate(-135deg);
}

/*----------------------------------------
g-pagetop
----------------------------------------*/
.g-pagetop {
  position: fixed;
  z-index: 10;
  right: 40px;
  bottom: 40px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #b01414;
  pointer-events: none;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .g-pagetop {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
  }
}

.g-pagetop.is-active {
  pointer-events: auto;
  opacity: 1 !important;
}

.g-pagetop-btn {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
}

.g-pagetop-btn::before {
  position: absolute;
  z-index: 1;
  top: calc(50% - 2px);
  left: calc(50% - 4px);
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-right: 0;
  border-bottom: 0;
  pointer-events: none;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .g-pagetop-btn::before {
    left: calc(50% - 5px);
  }
}

/*----------------------------------------
js-animate
----------------------------------------*/
.js-animate-fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-animate-fade-in.is-active {
  opacity: 1;
}

.js-animate-zoom-in {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-animate-zoom-in.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-animate-focus-in {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.js-animate-focus-in.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-animate-fly-in-top {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-animate-fly-in-top.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-animate-fly-in-bottom {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-animate-fly-in-bottom.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-animate-fly-in-left {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

_:-ms-fullscreen, :root .js-animate-fly-in-left {
  opacity: 1;
}

.js-animate-fly-in-left.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-animate-fly-in-right {
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-animate-fly-in-right.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*----------------------------------------
c-blankmark
----------------------------------------*/
.c-blankmark {
  width: 16px;
  fill: currentColor;
}

/*----------------------------------------
c-breadcrumbs
----------------------------------------*/
.breadcrumbs {
  padding: 20px 40px 80px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  letter-spacing: 0.16rem;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 20px 30px;
  }
}

.breadcrumbs span {
  display: inline-block;
  padding: 0 4px;
}

.breadcrumbs span.gt {
  position: relative;
  padding: 0 0 0 4px;
  color: transparent;
}

.breadcrumbs span.gt::before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid #332612;
  border-bottom: 0;
  border-left: 0;
  content: "";
  -webkit-transform: rotate(45deg) translate(-50%);
          transform: rotate(45deg) translate(-50%);
}

/*----------------------------------------
c-datalist
----------------------------------------*/
.c-datalist {
  counter-reset: cnt;
}

.c-datalist-row {
  counter-increment: cnt;
}

.c-datalist-row + .c-datalist-row {
  margin-top: 40px;
}

.c-datalist-dt {
  display: -webkit-box;
  display: flex;
}

.c-datalist.-num .c-datalist-dt::before {
  margin-right: 4px;
  content: counter(cnt) ".";
}

/*----------------------------------------
c-figure
----------------------------------------*/
.c-figure {
  position: relative;
  font-size: 0;
  line-height: 0;
}

.c-figure-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.c-figure-src {
  vertical-align: bottom;
}

/*----------------------------------------
c-map
----------------------------------------*/
.c-map {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.c-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-map::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b87932;
  pointer-events: none;
  content: "";
  opacity: .8;
  mix-blend-mode: overlay;
}

/*----------------------------------------
c-section
----------------------------------------*/
.c-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.c-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

@media screen and (max-width: 767px) {
  .c-section-inner {
    padding: 40px 30px 60px;
  }
}

/*----------------------------------------
c-subpage
----------------------------------------*/
.c-subpage-header {
  position: relative;
  z-index: 1;
  margin: 90px 0 0;
  padding: 0;
}

@media screen and (max-width: 1200px) {
  .c-subpage-header {
    margin: 70px 0 0;
  }
}

.c-subpage-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 50%;
  height: 200px;
  opacity: .7;
}

.c-subpage-header-bg::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, #b01414, transparent);
  background: linear-gradient(90deg, #b01414, transparent);
  content: "";
}

.c-subpage-header-bg-img {
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
}

.c-subpage-header-inner {
  display: -webkit-box;
  display: flex;
  height: 200px;
  padding: 0 40px;
  background-color: #b01414;
  color: #fff;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .c-subpage-header-inner {
    padding: 0 30px;
  }
}

.c-subpage-header-inner .c-ttl-01 {
  margin: 0;
  font-size: 44px;
  font-size: 4.4rem;
  letter-spacing: 4.4px;
  letter-spacing: 0.44rem;
}

@media screen and (max-width: 767px) {
  .c-subpage-header-inner .c-ttl-01 {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 2.8px;
    letter-spacing: 0.28rem;
  }
}

/*----------------------------------------
c-ttl
----------------------------------------*/
.c-ttl-01 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  font-family: "Yuji Syuku", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
  .c-ttl-01 {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 2.8px;
    letter-spacing: 0.28rem;
  }
}

.c-ttl-02 {
  margin-bottom: 16px;
  font-family: "Yuji Syuku", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2.6px;
  letter-spacing: 0.26rem;
}

@media screen and (max-width: 767px) {
  .c-ttl-02 {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 2.2px;
    letter-spacing: 0.22rem;
  }
}

/*----------------------------------------
index-about
----------------------------------------*/
.p-about-inner {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-about-inner {
    text-align: left;
  }
}

.p-about-content-text {
  margin-top: 30px;
}

.p-about-bg {
  position: absolute;
  z-index: 0;
  right: -20%;
  bottom: 0;
  width: 80%;
  height: 100%;
  opacity: .3;
}

.p-about-bg::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, #fff4e7, transparent);
  background: linear-gradient(90deg, #fff4e7, transparent);
  content: "";
}

.p-about-bg-figure {
  height: 100%;
}

/*----------------------------------------
index-access
----------------------------------------*/
.p-access-inner {
  display: -webkit-box;
  display: flex;
          flex-direction: row-reverse;
  -webkit-box-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}

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

.p-access-content {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-access-content {
    width: 100%;
  }
}

.p-access-map {
  width: 50%;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .p-access-map {
    width: 100%;
  }
}

.p-access-map-figure {
  height: 100%;
  min-height: 500px;
}

@media screen and (max-width: 767px) {
  .p-access-map-figure {
    min-height: 300px;
    margin-top: 40px;
  }
}

/*----------------------------------------
index-howto
----------------------------------------*/
.p-howto-inner {
  display: -webkit-box;
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
}

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

.p-howto-content {
  width: 85%;
}

@media screen and (max-width: 767px) {
  .p-howto-content {
    width: 100%;
  }
}

.p-howto-image {
  width: 15%;
  margin-left: 40px;
  align-self: flex-end;
}

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

.p-howto-image-figure {
  padding-top: 150%;
}

.p-howto-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  opacity: .3;
}

.p-howto-bg::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(left, #fff4e7, transparent);
  background: linear-gradient(90deg, #fff4e7, transparent);
  content: "";
}

.p-howto-bg-figure {
  height: 100%;
}

/*----------------------------------------
index-information
----------------------------------------*/
.p-information {
  color: #fff;
}

.p-information.c-section {
  background-color: #b01414 !important;
}

.p-information time {
  background: -webkit-linear-gradient(transparent, transparent 60%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.3) 90%, transparent 90%);
  background: linear-gradient(transparent, transparent 60%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.3) 90%, transparent 90%);
  font-weight: 600;
}

/*----------------------------------------
index-kv
----------------------------------------*/
.p-index-kv {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 70vh;
}

@media screen and (max-width: 1024px) {
  .p-index-kv {
    height: 90vh;
    min-height: 500px;
  }
}

.p-index-kv-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.p-index-kv-inner {
  position: relative;
  display: -webkit-box;
  display: flex;
  min-height: 100%;
  padding: 0 3.75%;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.p-index-kv-txt {
  z-index: 2;
  max-width: calc(100% - 180px);
  font-weight: 700;
  opacity: 0;
  -webkit-animation: fadeIn 1s forwards 1.5s;
          animation: fadeIn 1s forwards 1.5s;
}

@media screen and (max-width: 1024px) {
  .p-index-kv-txt {
    max-width: 100%;
  }
}

.p-index-kv-txt-main {
  font-family: "Yuji Syuku", "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
  font-size: 4.38vw;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 1px 1px 6px #fff4e7;
}

@media screen and (max-width: 1024px) {
  .p-index-kv-txt-main {
    margin-bottom: 24vw;
    font-size: 12vw;
    line-height: 1.2;
  }
}

.p-index-kv-figure {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 47.5%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .p-index-kv-figure {
    top: auto;
    right: -10vw;
    bottom: 0;
    width: 65vw;
    height: 65vw;
    border-radius: 50%;
    -webkit-transform: translateY(30%);
            transform: translateY(30%);
  }
}

.p-index-kv-figure::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-repeating-linear-gradient(left, #fff, #fff 2px, #b87932 2px, #b87932 6px);
  background: repeating-linear-gradient(90deg, #fff, #fff 2px, #b87932 2px, #b87932 6px);
  content: "";
  opacity: .5;
}

.p-index-kv-figure-img {
  height: 100%;
  padding-top: 0;
}

/*----------------------------------------
index-point
----------------------------------------*/
.p-point-content-list {
  display: -webkit-box;
  display: flex;
  margin: 0 -20px;
  -webkit-box-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-point-content-list {
    display: block;
    margin: 0;
  }
}

.p-point-content-list-item {
  width: 33.33%;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-point-content-list-item {
    width: 100%;
    margin: auto;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-point-content-list-item + .p-point-content-list-item {
    margin-top: 40px;
  }
}

.p-point-image {
  width: 100%;
  margin-bottom: 20px;
}

.p-point-image-figure {
  padding-top: 60%;
}

/*----------------------------------------
index
----------------------------------------*/
.p-index {
  background-color: #fff4e7;
}

.p-index > section:nth-of-type(odd) {
  background-color: #d8decc;
}

/*----------------------------------------
faq
----------------------------------------*/
/*----------------------------------------
index-privacy
----------------------------------------*/
.p-privacy-content .c-datalist {
  margin-top: 30px;
}

.p-privacy-content-text a {
  background: -webkit-linear-gradient(bottom, currentColor 2px, transparent 2px);
  background: linear-gradient(0deg, currentColor 2px, transparent 2px);
  color: #b01414;
}
/*# sourceMappingURL=maps/layout.css.map */
