/*!
Theme Name: maruyama
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: maruyama
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

maruyama is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@500;600;700&family=Zen+Kaku+Gothic+Antique:wght@500;700&display=swap");
.f-eg {
  font-family: "Exo", sans-serif;
}

/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
@custom-media --mobile screen and (max-width: 850px);
@custom-media --large screen and (min-width: 851px);
@custom-media --tablet screen and (max-width: 1023px) and (min-width: 851px);
@custom-media --vw_outside screen and (min-width: 1600px);
@custom-media --vw_inside screen and (min-width: 851px) and (max-width: 1599px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
/** extend */
@media (--large) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .ex-link:hover {
    opacity: .5;
  }
}

/******************************************************
  TOP mv 湯気アニメーション
 ******************************************************/
@-webkit-keyframes steam01 {
  0% {
    bottom: -60rem;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 1);
            transform: scale(0.6, 1);
  }
  11% {
    opacity: 0.1;
  }
  33% {
    opacity: 0.5;
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(1, 1.4);
            transform: scale(1, 1.4);
  }
  66% {
    opacity: 0.4;
    -webkit-transform: rotateY(10deg);
            transform: rotateY(10deg);
    -webkit-transform: scaleY(1.8, 1);
            transform: scaleY(1.8, 1);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
    -webkit-transform: rotateY(60deg);
            transform: rotateY(60deg);
    -webkit-transform: scaleY(2, 1.8);
            transform: scaleY(2, 1.8);
  }
}
@keyframes steam01 {
  0% {
    bottom: -60rem;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 1);
            transform: scale(0.6, 1);
  }
  11% {
    opacity: 0.1;
  }
  33% {
    opacity: 0.5;
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(1, 1.4);
            transform: scale(1, 1.4);
  }
  66% {
    opacity: 0.4;
    -webkit-transform: rotateY(10deg);
            transform: rotateY(10deg);
    -webkit-transform: scaleY(1.8, 1);
            transform: scaleY(1.8, 1);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
    -webkit-transform: rotateY(60deg);
            transform: rotateY(60deg);
    -webkit-transform: scaleY(2, 1.8);
            transform: scaleY(2, 1.8);
  }
}

@-webkit-keyframes steam02 {
  0% {
    bottom: -40rem;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
  11% {
    opacity: 0.1;
  }
  33% {
    opacity: 0.4;
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
  }
  66% {
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scaleY(1, 1.2);
            transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    -webkit-transform: scaleY(1.2, 1.4);
            transform: scaleY(1.2, 1.4);
  }
}

@keyframes steam02 {
  0% {
    bottom: -40rem;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform: scale(0.6, 0.6);
            transform: scale(0.6, 0.6);
  }
  11% {
    opacity: 0.1;
  }
  33% {
    opacity: 0.4;
    -webkit-transform: rotateY(40deg);
            transform: rotateY(40deg);
    -webkit-transform: scale(0.8, 1);
            transform: scale(0.8, 1);
  }
  66% {
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scaleY(1, 1.2);
            transform: scaleY(1, 1.2);
  }
  100% {
    bottom: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
    -webkit-transform: scaleY(1.2, 1.4);
            transform: scaleY(1.2, 1.4);
  }
}

.mv-steam-animation {
  overflow: hidden;
}

.mv-steam-animation .steam01 {
  position: absolute;
  right: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: steam01 10s infinite linear;
          animation: steam01 10s infinite linear;
}

.mv-steam-animation .steam02 {
  position: absolute;
  left: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: steam02 14s infinite linear;
          animation: steam02 14s infinite linear;
}

.mv-steam-animation .steam03 {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: steam02 12s infinite linear;
          animation: steam02 12s infinite linear;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.mv-steam-animation .steam01 img,
.mv-steam-animation .steam03 img {
  width: 53.2rem;
  height: 80rem;
}

.mv-steam-animation .steam02 img {
  width: 39.9rem;
  height: 60rem;
}

/******************************************************
  TOP 特徴セクション 湯気アニメーション
 ******************************************************/
@-webkit-keyframes steam03 {
  0% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(10rem);
            transform: translate(-50%, -50%) translateY(10rem);
  }
  11% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(8rem);
            transform: translate(-50%, -50%) translateY(8rem);
  }
  33% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(5rem);
            transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(5rem);
  }
  66% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  82% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  90% {
    opacity: 0.6;
    -webkit-transform: scaleY(1, 1) translateY(0);
            transform: scaleY(1, 1) translateY(0);
  }
  100% {
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0);
  }
}
@keyframes steam03 {
  0% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(10rem);
            transform: translate(-50%, -50%) translateY(10rem);
  }
  11% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(8rem);
            transform: translate(-50%, -50%) translateY(8rem);
  }
  33% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(5rem);
            transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(5rem);
  }
  66% {
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  82% {
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  90% {
    opacity: 0.6;
    -webkit-transform: scaleY(1, 1) translateY(0);
            transform: scaleY(1, 1) translateY(0);
  }
  100% {
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0);
  }
}

@-webkit-keyframes steam04 {
  0% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(0rem);
            transform: translate(-50%, -50%) translateY(0rem);
  }
  11% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(24px);
            filter: blur(24px);
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) translateY(0rem);
            transform: translate(-50%, -50%) translateY(0rem);
  }
  33% {
    top: 50%;
    left: 50%;
    opacity: 0.6;
    -webkit-transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  66% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0.9;
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  82% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  90% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: scaleY(1, 1) translateY(0);
            transform: scaleY(1, 1) translateY(0);
  }
  100% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0);
  }
}

@keyframes steam04 {
  0% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translateY(0rem);
            transform: translate(-50%, -50%) translateY(0rem);
  }
  11% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(24px);
            filter: blur(24px);
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%) translateY(0rem);
            transform: translate(-50%, -50%) translateY(0rem);
  }
  33% {
    top: 50%;
    left: 50%;
    opacity: 0.6;
    -webkit-transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: rotateY(3deg) scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  66% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(16px);
            filter: blur(16px);
    opacity: 0.9;
    -webkit-transform: rotateY(2deg);
            transform: rotateY(2deg);
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0rem);
  }
  82% {
    -webkit-filter: blur(3px);
            filter: blur(3px);
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
  }
  90% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
    -webkit-transform: scaleY(1, 1) translateY(0);
            transform: scaleY(1, 1) translateY(0);
  }
  100% {
    top: 50%;
    left: 50%;
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1, 1) translate(-50%, -50%) translateY(0);
            transform: scale(1, 1) translate(-50%, -50%) translateY(0);
  }
}

@-webkit-keyframes steam05 {
  0% {
    bottom: -15rem;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateY(0deg) translateX(-3rem);
            transform: rotateY(0deg) translateX(-3rem);
  }
  11% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.5;
  }
  33% {
    opacity: 0.8;
    -webkit-transform: rotateY(5deg) translateX(-4rem);
            transform: rotateY(5deg) translateX(-4rem);
  }
  66% {
    -webkit-transform: rotateY(10deg) translateX(-6rem);
            transform: rotateY(10deg) translateX(-6rem);
    opacity: 0.5;
  }
  100% {
    bottom: 25rem;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateY(50deg) translateX(-7rem);
            transform: rotateY(50deg) translateX(-7rem);
  }
}

@keyframes steam05 {
  0% {
    bottom: -15rem;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateY(0deg) translateX(-3rem);
            transform: rotateY(0deg) translateX(-3rem);
  }
  11% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.5;
  }
  33% {
    opacity: 0.8;
    -webkit-transform: rotateY(5deg) translateX(-4rem);
            transform: rotateY(5deg) translateX(-4rem);
  }
  66% {
    -webkit-transform: rotateY(10deg) translateX(-6rem);
            transform: rotateY(10deg) translateX(-6rem);
    opacity: 0.5;
  }
  100% {
    bottom: 25rem;
    -webkit-filter: blur(15px);
            filter: blur(15px);
    opacity: 0;
    -webkit-transform: rotateY(50deg) translateX(-7rem);
            transform: rotateY(50deg) translateX(-7rem);
  }
}

@-webkit-keyframes steam06 {
  0% {
    bottom: -20rem;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: rotateY(0deg) scale(0.6, 0.6);
            transform: rotateY(0deg) scale(0.6, 0.6);
  }
  11% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.4;
  }
  33% {
    opacity: 0.6;
    -webkit-transform: rotateY(40deg) scale(1, 1.2);
            transform: rotateY(40deg) scale(1, 1.2);
  }
  66% {
    -webkit-transform: rotateY(20deg) scaleY(1.2, 1.4);
            transform: rotateY(20deg) scaleY(1.2, 1.4);
    opacity: 0.3;
  }
  100% {
    bottom: 20rem;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
  }
}

@keyframes steam06 {
  0% {
    bottom: -20rem;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: rotateY(0deg) scale(0.6, 0.6);
            transform: rotateY(0deg) scale(0.6, 0.6);
  }
  11% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.4;
  }
  33% {
    opacity: 0.6;
    -webkit-transform: rotateY(40deg) scale(1, 1.2);
            transform: rotateY(40deg) scale(1, 1.2);
  }
  66% {
    -webkit-transform: rotateY(20deg) scaleY(1.2, 1.4);
            transform: rotateY(20deg) scaleY(1.2, 1.4);
    opacity: 0.3;
  }
  100% {
    bottom: 20rem;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0;
    -webkit-transform: rotateY(50deg);
            transform: rotateY(50deg);
  }
}

@-webkit-keyframes steam07 {
  0% {
    bottom: -15rem;
    -webkit-filter: blur(7px);
            filter: blur(7px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  11% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.4;
  }
  33% {
    opacity: 0.8;
  }
  66% {
    opacity: 0.4;
  }
  100% {
    bottom: 30rem;
    -webkit-filter: blur(7px);
            filter: blur(7px);
    opacity: 0;
  }
}

@keyframes steam07 {
  0% {
    bottom: -15rem;
    -webkit-filter: blur(7px);
            filter: blur(7px);
    opacity: 0;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  11% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.4;
  }
  33% {
    opacity: 0.8;
  }
  66% {
    opacity: 0.4;
  }
  100% {
    bottom: 30rem;
    -webkit-filter: blur(7px);
            filter: blur(7px);
    opacity: 0;
  }
}

@media (--mobile) {
  @-webkit-keyframes steam05 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(15px);
              filter: blur(15px);
      opacity: 0;
      -webkit-transform: rotateY(0deg) translateX(-3rem);
              transform: rotateY(0deg) translateX(-3rem);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.7;
      -webkit-transform: rotateY(5deg) translateX(-4rem);
              transform: rotateY(5deg) translateX(-4rem);
    }
    66% {
      -webkit-transform: rotateY(10deg) translateX(-6rem);
              transform: rotateY(10deg) translateX(-6rem);
      opacity: 0.4;
    }
    100% {
      bottom: 55rem;
      -webkit-filter: blur(10px);
              filter: blur(10px);
      opacity: 0;
      -webkit-transform: rotateY(50deg) translateX(-7rem);
              transform: rotateY(50deg) translateX(-7rem);
    }
  }
  @keyframes steam05 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(15px);
              filter: blur(15px);
      opacity: 0;
      -webkit-transform: rotateY(0deg) translateX(-3rem);
              transform: rotateY(0deg) translateX(-3rem);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.7;
      -webkit-transform: rotateY(5deg) translateX(-4rem);
              transform: rotateY(5deg) translateX(-4rem);
    }
    66% {
      -webkit-transform: rotateY(10deg) translateX(-6rem);
              transform: rotateY(10deg) translateX(-6rem);
      opacity: 0.4;
    }
    100% {
      bottom: 55rem;
      -webkit-filter: blur(10px);
              filter: blur(10px);
      opacity: 0;
      -webkit-transform: rotateY(50deg) translateX(-7rem);
              transform: rotateY(50deg) translateX(-7rem);
    }
  }
  @-webkit-keyframes steam06 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      opacity: 0;
      -webkit-transform: rotateY(0deg) scale(0.6, 0.6);
              transform: rotateY(0deg) scale(0.6, 0.6);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.6;
      -webkit-transform: rotateY(40deg) scale(1, 1.2);
              transform: rotateY(40deg) scale(1, 1.2);
    }
    66% {
      -webkit-transform: rotateY(20deg) scaleY(1.2, 1.4);
              transform: rotateY(20deg) scaleY(1.2, 1.4);
      opacity: 0.3;
    }
    100% {
      bottom: 45rem;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      opacity: 0;
      -webkit-transform: rotateY(50deg);
              transform: rotateY(50deg);
    }
  }
  @keyframes steam06 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      opacity: 0;
      -webkit-transform: rotateY(0deg) scale(0.6, 0.6);
              transform: rotateY(0deg) scale(0.6, 0.6);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.6;
      -webkit-transform: rotateY(40deg) scale(1, 1.2);
              transform: rotateY(40deg) scale(1, 1.2);
    }
    66% {
      -webkit-transform: rotateY(20deg) scaleY(1.2, 1.4);
              transform: rotateY(20deg) scaleY(1.2, 1.4);
      opacity: 0.3;
    }
    100% {
      bottom: 45rem;
      -webkit-filter: blur(5px);
              filter: blur(5px);
      opacity: 0;
      -webkit-transform: rotateY(50deg);
              transform: rotateY(50deg);
    }
  }
  @-webkit-keyframes steam07 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(7px);
              filter: blur(7px);
      opacity: 0;
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.7;
    }
    66% {
      opacity: 0.4;
    }
    100% {
      bottom: 50rem;
      -webkit-filter: blur(10px);
              filter: blur(10px);
      opacity: 0;
    }
  }
  @keyframes steam07 {
    0% {
      bottom: -10rem;
      -webkit-filter: blur(7px);
              filter: blur(7px);
      opacity: 0;
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg);
    }
    11% {
      opacity: 0.2;
    }
    20% {
      opacity: 0.4;
    }
    33% {
      opacity: 0.7;
    }
    66% {
      opacity: 0.4;
    }
    100% {
      bottom: 50rem;
      -webkit-filter: blur(10px);
              filter: blur(10px);
      opacity: 0;
    }
  }
}

.feature-steam-animation {
  overflow: hidden;
}

.feature-steam-animation .steam {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 211.4rem;
  height: 141rem;
  pointer-events: none;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.feature-steam-animation .steam.is-inview {
  -webkit-animation: steam03 3s linear;
          animation: steam03 3s linear;
}

@media (--mobile) {
  .feature-steam-animation .steam.is-inview {
    -webkit-animation: steam04 3s linear;
            animation: steam04 3s linear;
  }
}

@media (--mobile) {
  .feature-steam-animation .steam {
    width: 100%;
    height: 106.3rem;
    -webkit-transform: translate(-50%, -50%) translateY(0rem);
            transform: translate(-50%, -50%) translateY(0rem);
  }
}

.feature-steam-animation .feature-steam01 {
  position: absolute;
  left: 15rem;
  width: 60rem;
  height: 45rem;
  opacity: 0;
  z-index: -1;
  -webkit-animation: steam05 5s linear infinite;
          animation: steam05 5s linear infinite;
}

@media (--mobile) {
  .feature-steam-animation .feature-steam01 {
    width: 40rem;
    height: 40rem;
    left: -5rem;
    -webkit-animation: steam05 7s linear infinite;
            animation: steam05 7s linear infinite;
  }
}

.feature-steam-animation .feature-steam02 {
  position: absolute;
  right: 14%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 90rem;
  height: 40rem;
  opacity: 0;
  z-index: -1;
  -webkit-animation: steam06 9s linear infinite;
          animation: steam06 9s linear infinite;
}

@media (--mobile) {
  .feature-steam-animation .feature-steam02 {
    width: 100%;
    height: auto;
    left: 0;
  }
}

.feature-steam-animation .feature-steam03 {
  position: absolute;
  right: -9rem;
  width: 60rem;
  height: 50rem;
  opacity: 0;
  z-index: -1;
  -webkit-animation: steam07 7s linear 1s infinite;
          animation: steam07 7s linear 1s infinite;
}

@media (--mobile) {
  .feature-steam-animation .feature-steam03 {
    width: 20rem;
    height: 40rem;
    right: -3rem;
    -webkit-animation: steam07 7s linear infinite;
            animation: steam07 7s linear infinite;
  }
}

.js-inview[data-inview="fade"] {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.js-inview[data-inview="fade"].is-inview {
  opacity: 1;
}

.js-inview[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-inview[data-inview="fade-top"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview[data-inview="fade-left"] {
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-inview[data-inview="fade-left"].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-inview[data-inview="fade-right"] {
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-inview[data-inview="fade-right"].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-inview[data-inview="fade-bottom"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-inview[data-inview="fade-bottom"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview[data-inview="btn"] a::before,
.js-inview[data-inview="btn"] button::before {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview[data-inview="btn"] span {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview[data-inview="btn"] i {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview[data-inview="btn"].is-inview a::before,
.js-inview[data-inview="btn"].is-inview button::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview[data-inview="btn"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview[data-inview="btn"].is-inview i {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview[data-inview="btn-border"] a::after,
.js-inview[data-inview="btn-border"] button::after {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview[data-inview="btn-border"] span {
  opacity: 0;
  -webkit-transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview[data-inview="btn-border"].is-inview a::after,
.js-inview[data-inview="btn-border"].is-inview button::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview[data-inview="btn-border"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview[data-inview="bg"]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.js-inview[data-inview="bg"].is-inview::after {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.js-inview[data-inview="bg-white"]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.js-inview[data-inview="bg-white"].is-inview::after {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}

.js-inview[data-inview="bg-scale"]::before {
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.js-inview[data-inview="bg-scale"].is-inview::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.js-inview-photo[data-inview="scale-small"] {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.is-inview .js-inview-photo[data-inview="scale-small"] {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-inview-photo-img[data-inview="scale-small"] {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: translateX(-50%) scale(1.5);
          transform: translateX(-50%) scale(1.5);
}

.is-inview .js-inview-photo-img[data-inview="scale-small"] {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview="fade"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.js-inview-eachItem[data-inview="fade"].is-inview {
  opacity: 1;
}

.js-inview-eachItem[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-inview-eachItem[data-inview="fade-top"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem[data-inview="fade-bottom"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-inview-eachItem[data-inview="fade-bottom"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem[data-inview="fade-right"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-inview-eachItem[data-inview="fade-right"].is-inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-inview-eachItem[data-inview="btn"] a::before,
.js-inview-eachItem[data-inview="btn"] button::before {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview-eachItem[data-inview="btn"] span {
  opacity: 0;
  -webkit-transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview-eachItem[data-inview="btn"].is-inview a::before,
.js-inview-eachItem[data-inview="btn"].is-inview button::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview-eachItem[data-inview="btn"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem[data-inview="btn-border"] a::after,
.js-inview-eachItem[data-inview="btn-border"] button::after {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview-eachItem[data-inview="btn-border"] span {
  opacity: 0;
  -webkit-transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview-eachItem[data-inview="btn-border"].is-inview a::after,
.js-inview-eachItem[data-inview="btn-border"].is-inview button::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview-eachItem[data-inview="btn-border"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem[data-inview="list-border"]::before {
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview-eachItem[data-inview="list-border"] span,
.js-inview-eachItem[data-inview="list-border"] figure,
.js-inview-eachItem[data-inview="list-border"] a {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-inview-eachItem[data-inview="list-border"] i {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateX(-20px) rotate(45deg);
          transform: translateX(-20px) rotate(45deg);
}

.js-inview-eachItem[data-inview="list-border"].is-inview::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.js-inview-eachItem[data-inview="list-border"].is-inview span,
.js-inview-eachItem[data-inview="list-border"].is-inview figure,
.js-inview-eachItem[data-inview="list-border"].is-inview a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem[data-inview="list-border"].is-inview i {
  opacity: 1;
  -webkit-transform: translateX(-10px) rotate(45deg);
          transform: translateX(-10px) rotate(45deg);
}

.js-inview-eachItem-fast[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview-eachItem-fast[data-inview="fade-top"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem-delay[data-inview="fade"] {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}

.js-inview-eachItem-delay[data-inview="fade"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem-delay[data-inview="fade-top"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-inview-eachItem-delay[data-inview="fade-top"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem-delay[data-inview="fade-right"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-inview-eachItem-delay[data-inview="fade-right"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-eachItem-delay[data-inview="fade-bottom"] {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-inview-eachItem-delay[data-inview="fade-bottom"].is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-all[data-inview="btn"] a::before,
.js-inview-all[data-inview="btn"] button::before {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview-all[data-inview="btn"] span {
  opacity: 0;
  -webkit-transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview-all[data-inview="btn"].is-inview a::before,
.js-inview-all[data-inview="btn"].is-inview button::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview-all[data-inview="btn"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-inview-all[data-inview="btn-border"] a::after,
.js-inview-all[data-inview="btn-border"] button::after {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.js-inview-all[data-inview="btn-border"] span {
  opacity: 0;
  -webkit-transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, -webkit-transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s, -webkit-transform 0.5s 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-inview-all[data-inview="btn-border"].is-inview a::after,
.js-inview-all[data-inview="btn-border"].is-inview button::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inview-all[data-inview="btn-border"].is-inview span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview="scale-small"] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview="scale-small"] {
  transform: translateX(-50%) scale(1);
}

[v-cloak] {
  display: none;
}

@media (--large) {
  html {
    font-size: calc(100vw / 140);
  }
}

@media (--mobile) {
  html {
    font-size: calc(10vw / 400 * 100);
  }
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #361D10;
  letter-spacing: 0;
  background-color: #faf7e2;
}

@media screen and (max-width: 767px), print {
  body.is-open {
    overflow: hidden;
  }
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-margin-before: inherit;
          margin-block-start: inherit;
  -webkit-margin-after: inherit;
          margin-block-end: inherit;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

figure {
  padding: 0;
  margin: 0;
  margin-bottom: 0 !important;
}

picture {
  display: block;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type="number"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

.l-main {
  overflow: hidden;
  line-height: 1.7;
}

svg,
img {
  max-width: 100%;
}

@media (--mobile) {
  html,
  body {
    width: 100%;
    height: 100%;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    padding: 0;
    margin: 0;
  }
}

@media (--mobile) {
  .pc {
    display: none !important;
  }
}

@media (--large) {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}

.c-footer {
  width: 100%;
  background-color: #145258;
  position: relative;
  padding-bottom: 8rem;
}

.page .c-footer {
  padding-top: 8rem;
}

@media screen and (max-width: 767px), print {
  .c-footer {
    padding-bottom: 3rem;
  }
}

.top .c-footer::before {
  width: 100%;
  height: 19rem;
  content: "";
  background: url(images/common/footer-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -19rem;
  left: 0;
}

@media screen and (max-width: 767px), print {
  .top .c-footer::before {
    background: url(images/common/footer-top-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 9rem;
    top: -8.9rem;
  }
}

.c-footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-footer-inner__left .f-logo {
  width: 19rem;
  margin-left: auto;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__left .f-logo {
    margin-right: auto;
  }
}

.c-footer-inner__left .address {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__left .address {
    text-align: center;
  }
}

.c-footer-inner__left .gmap {
  margin-top: 1rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__left .gmap {
    text-align: center;
  }
}

.c-footer-inner__left .gmap a {
  color: #FFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.c-footer-inner__left .gmap a:hover {
  opacity: 0.6;
}

.c-footer-inner__left .gmap a::after {
  width: 100%;
  height: 0.1rem;
  background-color: #FFFFFF;
  position: absolute;
  content: "";
  bottom: -0.1rem;
  left: 0;
}

.c-footer-inner__left .gmap a span {
  margin-left: 1rem;
}

.c-footer-inner__left .gmap a svg {
  width: 1.4rem;
}

.c-footer-inner__left .tel {
  margin-top: 2rem;
  font-size: 2.6rem;
  color: #FFF;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__left .tel {
    text-align: center;
  }
}

.c-footer-inner__left .tel a {
  color: #FFF;
}

.c-footer-inner__left .banner__ttl {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-top: 7rem;
}

.c-footer-inner__left .banner__img {
  width: 24rem;
  height: 6rem;
  margin-top: 1rem;
}

.c-footer-inner__left .banner__img a {
  display: block;
  width: 100%;
  height: 100%;
}

.c-footer-inner__left .banner__img a:hover {
  opacity: 0.6;
}

.c-footer-inner__left .banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-footer-inner__right {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.3);
    margin-top: 4rem;
  }
}

.c-footer-inner__right .inner-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 4rem;
    margin-left: -3rem;
    margin-right: -3rem;
  }
}

.c-footer-inner__right .inner-top a:hover {
  opacity: 0.6;
}

.c-footer-inner__right .inner-top > div {
  white-space: nowrap;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div {
    width: calc(100% / 2 - 6rem);
    margin: 0 3rem;
  }
}

.c-footer-inner__right .inner-top > div * {
  color: #FFF;
}

.c-footer-inner__right .inner-top > div:nth-child(n + 2) {
  margin-left: 4rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div:nth-child(n + 2) {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div:nth-child(n + 3) {
    margin-top: 3rem;
  }
}

.c-footer-inner__right .inner-top > div.list > ul > li {
  font-size: 2rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div.list > ul > li {
    font-size: 1.6rem;
  }
}

.c-footer-inner__right .inner-top > div.list > ul > li:nth-child(n + 2) {
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div.list > ul > li:nth-child(n + 2) {
    margin-top: 1rem;
  }
}

.c-footer-inner__right .inner-top > div.sublist > ul > li {
  font-size: 1.6rem;
  position: relative;
  padding-left: 2rem;
  margin-top: 0.2rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-top > div.sublist > ul > li {
    font-size: 1.4rem;
  }
}

.c-footer-inner__right .inner-top > div.sublist > ul > li::before {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 0.1rem;
  background-color: #FFFFFF;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-footer-inner__right .inner-top > div .subTtl {
  font-size: 2rem;
}

.c-footer-inner__right .inner-middle {
  margin-top: 5rem;
  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: 767px), print {
  .c-footer-inner__right .inner-middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-middle .reserve {
    width: 100%;
  }
}

.c-footer-inner__right .inner-middle .reserve a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.1rem solid #FFFFFF;
  font-size: 2rem;
  color: #FFF;
  padding: 2rem 4rem;
  letter-spacing: 0.1em;
}

.c-footer-inner__right .inner-middle .reserve a:hover {
  opacity: 0.6;
}

.c-footer-inner__right .inner-middle .reserve a svg {
  width: 1.9rem;
  margin-right: 1.5rem;
}

.c-footer-inner__right .inner-middle .sns {
  margin-left: 8rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-middle .sns {
    margin-left: 0;
    margin-top: 2rem;
    margin-right: auto;
  }
}

.c-footer-inner__right .inner-middle .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
}

.c-footer-inner__right .inner-middle .sns ul li {
  margin: 0 1rem;
}

.c-footer-inner__right .inner-middle .sns ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

.c-footer-inner__right .inner-middle .sns ul li a:hover {
  opacity: 0.6;
}

.c-footer-inner__right .inner-middle .sns ul li:nth-child(1) svg {
  width: 2.7rem;
}

.c-footer-inner__right .inner-middle .sns ul li:nth-child(2) svg {
  width: 2.4rem;
}

.c-footer-inner__right .inner-middle .sns ul li:nth-child(3) svg {
  width: 2.4rem;
}

.c-footer-inner__right .inner-middle .sns ul li:nth-child(4) svg {
  width: 1.2rem;
}

.c-footer-inner__right .inner-middle .sns ul li:nth-child(5) svg {
  width: 1.9rem;
}

.c-footer-inner__right .inner-bottom {
  margin-top: 7rem;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-bottom {
    margin-top: 2rem;
  }
}

.c-footer-inner__right .inner-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-bottom ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.c-footer-inner__right .inner-bottom ul li {
  font-size: 1.6rem;
  position: relative;
}

.c-footer-inner__right .inner-bottom ul li a {
  color: #FFF;
}

.c-footer-inner__right .inner-bottom ul li a:hover {
  opacity: 0.6;
}

.c-footer-inner__right .inner-bottom ul li:nth-child(n + 2) {
  margin-left: 1.6rem;
  padding-left: 1.6rem;
}

.c-footer-inner__right .inner-bottom ul li:nth-child(n + 2)::before {
  content: "";
  width: 0.1rem;
  height: 70%;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.c-footer-inner__right .inner-bottom .copyright {
  font-size: 1.2rem;
  color: #FFF;
  letter-spacing: 0.05em;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-bottom .copyright {
    position: inherit;
    margin-top: 3.5rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px), print {
  .c-footer-inner__right .inner-bottom .banner {
    margin-top: 3rem;
  }
}

.c-footer-inner__right .inner-bottom .banner__ttl {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-top: 0;
}

.c-footer-inner__right .inner-bottom .banner__img {
  width: 100%;
  height: 7.9rem;
  margin-top: 1rem;
}

.c-footer-inner__right .inner-bottom .banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-header {
  z-index: 99;
  width: 100%;
  height: 15rem;
  position: fixed;
  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;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: .5s all;
  transition: .5s all;
}

.page .c-header {
  opacity: 1;
}

@media screen and (min-width: 768px), print {
  .c-header.is-animation {
    height: 8rem;
    background: rgba(238, 238, 236, 0.95);
    mix-blend-mode: inherit;
  }
  .c-header.is-animation .c-header__right nav > span > span,
  .c-header.is-animation .c-header__right nav > a {
    color: #000000;
  }
  .c-header.is-animation .c-header__right nav > span > span.is-active::after, .c-header.is-animation .c-header__right nav > span > span:hover::after,
  .c-header.is-animation .c-header__right nav > a.is-active::after,
  .c-header.is-animation .c-header__right nav > a:hover::after {
    background-color: #000;
  }
  .c-header.is-animation .c-header__right nav > span.is-active::after, .c-header.is-animation .c-header__right nav > span:hover::after {
    background-color: #000;
  }
  .c-header.is-animation .c-header__logo path:first-child {
    fill: #2A6669;
  }
  .c-header.is-animation .c-header__logo path:not(:first-child) {
    fill: #000;
  }
  .c-header.is-animation .c-header__right .js-arrow::after {
    border-color: #17529C;
  }
}

@media screen and (max-width: 767px), print {
  .c-header.is-animation {
    background: rgba(238, 238, 236, 0.95);
    height: 6rem;
  }
  .c-header.is-animation .c-header__logo path:first-child {
    fill: #2A6669;
  }
  .c-header.is-animation .c-header__logo path:not(:first-child) {
    fill: #000;
  }
  .c-header.is-animation .c-header__drawer span {
    background: #361D10;
  }
}

@media screen and (max-width: 767px), print {
  .c-header {
    top: 0;
    width: 100%;
    height: 8rem;
  }
}

.c-header__logo {
  padding-left: 5rem;
  -webkit-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 767px), print {
  .c-header__logo {
    padding-left: 2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-header__logo svg {
  height: 4rem;
}

@media screen and (max-width: 767px), print {
  .c-header__logo svg {
    width: 21rem;
    height: inherit;
  }
  .r-top .c-header__logo svg {
    width: 11rem;
    height: auto;
  }
}

@media screen and (min-width: 768px), print {
  .c-header__logo svg {
    -webkit-transition: .5s;
    transition: .5s;
  }
  .r-top .c-header__logo svg {
    height: 8rem;
  }
}

.c-header__logo svg path {
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px), print {
  .top .c-header__logo svg path {
    fill: #FFF;
  }
}

.is-news .c-header__logo svg path:not(:first-of-type), .is-blog .c-header__logo svg path:not(:first-of-type), .is-contact .c-header__logo svg path:not(:first-of-type), .is-aboutservice .c-header__logo svg path:not(:first-of-type), .is-privacypolicy .c-header__logo svg path:not(:first-of-type) {
  fill: #000;
}

.is-concept .c-header__logo svg path, .is-bihadanoyu .c-header__logo svg path, .is-hotspring .c-header__logo svg path {
  fill: #FFF;
}

@media screen and (min-width: 768px), print {
  .c-header__logo:hover {
    opacity: .7;
  }
}

.c-header__right {
  padding-right: 5rem;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px), print {
  .c-header__right {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 4rem);
    height: 100vh;
    background: #EEEEEC;
    padding: 7rem 3rem;
    opacity: 0;
    pointer-events: none;
  }
  .is-drawer .c-header__right {
    opacity: 1;
    pointer-events: inherit;
  }
  .c-header__right > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.c-header 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;
}

@media screen and (max-width: 767px), print {
  .c-header nav {
    display: block;
  }
}

.c-header nav a, .c-header nav span {
  font-size: 1.6rem;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .c-header nav a, .c-header nav span {
    display: block;
  }
}

@media screen and (max-width: 767px), print {
  .c-header nav a:nth-of-type(n + 2), .c-header nav span:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
}

.is-news .c-header nav a, .is-blog .c-header nav a, .is-contact .c-header nav a, .is-aboutservice .c-header nav a, .is-hotspring .c-header nav a, .is-privacypolicy .c-header nav a, .is-news .c-header nav span, .is-blog .c-header nav span, .is-contact .c-header nav span, .is-aboutservice .c-header nav span, .is-hotspring .c-header nav span, .is-privacypolicy .c-header nav span {
  color: #000;
}

@media screen and (max-width: 767px), print {
  .c-header nav a, .c-header nav span {
    color: #361D10;
  }
}

@media screen and (min-width: 768px), print {
  .c-header nav a:nth-of-type(n + 2) {
    margin-left: 2rem;
  }
  .c-header nav > a, .c-header nav > div > a {
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
  }
  .c-header nav > a::after, .c-header nav > div > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background-color: transparent;
    width: 100%;
    height: 0.1rem;
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .c-header nav > a.is-active::after, .c-header nav > a:hover::after, .c-header nav > div > a.is-active::after, .c-header nav > div > a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background-color: #FFFFFF;
    width: 100%;
    height: 0.1rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px), print {
  .is-news .c-header nav > a.is-active::after, .is-news .c-header nav > a:hover::after, .is-blog .c-header nav > a.is-active::after, .is-blog .c-header nav > a:hover::after, .is-contact .c-header nav > a.is-active::after, .is-contact .c-header nav > a:hover::after, .is-aboutservice .c-header nav > a.is-active::after, .is-aboutservice .c-header nav > a:hover::after, .is-hotspring .c-header nav > a.is-active::after, .is-hotspring .c-header nav > a:hover::after, .is-privacypolicy .c-header nav > a.is-active::after, .is-privacypolicy .c-header nav > a:hover::after, .is-news .c-header nav > div > a.is-active::after, .is-news .c-header nav > div > a:hover::after, .is-blog .c-header nav > div > a.is-active::after, .is-blog .c-header nav > div > a:hover::after, .is-contact .c-header nav > div > a.is-active::after, .is-contact .c-header nav > div > a:hover::after, .is-aboutservice .c-header nav > div > a.is-active::after, .is-aboutservice .c-header nav > div > a:hover::after, .is-hotspring .c-header nav > div > a.is-active::after, .is-hotspring .c-header nav > div > a:hover::after, .is-privacypolicy .c-header nav > div > a.is-active::after, .is-privacypolicy .c-header nav > div > a:hover::after {
    background-color: #000;
  }
}

.c-header nav > span {
  cursor: pointer;
  margin-left: 2rem;
  position: relative;
}

.c-header nav > span::after {
  content: "";
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .c-header nav > span {
    margin-left: 0;
    padding-right: 0;
    margin-top: 2rem;
    cursor: inherit;
  }
  .c-header nav > span > span {
    font-size: 1.4rem;
    color: #9D9282;
  }
}

@media screen and (min-width: 768px), print {
  .c-header nav > span:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background-color: #FFFFFF;
    width: 100%;
    height: 0.1rem;
  }
  .c-header nav > span:hover .mega {
    opacity: 1 !important;
    pointer-events: inherit !important;
  }
  .c-header nav > span.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    background-color: #FFFFFF;
    width: 100%;
    height: 0.1rem;
  }
}

@media screen and (min-width: 768px), print {
  .is-news .c-header nav > span.is-active::after, .is-news .c-header nav > span:hover::after, .is-blog .c-header nav > span.is-active::after, .is-blog .c-header nav > span:hover::after, .is-contact .c-header nav > span.is-active::after, .is-contact .c-header nav > span:hover::after, .is-aboutservice .c-header nav > span.is-active::after, .is-aboutservice .c-header nav > span:hover::after, .is-hotspring .c-header nav > span.is-active::after, .is-hotspring .c-header nav > span:hover::after, .is-privacypolicy .c-header nav > span.is-active::after, .is-privacypolicy .c-header nav > span:hover::after {
    background-color: #000;
  }
}

.c-header nav > span .mega {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: -12rem;
  top: 2rem;
  padding-top: 3rem;
}

.c-header nav > span .mega.first {
  left: -15rem;
}

.c-header nav > span .mega.first .mega_inner {
  width: 49.6rem;
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega.first .mega_inner {
    width: inherit;
  }
}

.c-header nav > span .mega.first .mega_inner a {
  width: calc(100% / 2 - 2rem);
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega.first .mega_inner a {
    width: inherit;
  }
}

.c-header nav > span .mega.last {
  left: -42rem;
}

.c-header nav > span .mega.last .mega_inner {
  width: 73.4rem;
}

@media screen and (min-width: 768px), print {
  .c-header nav > span .mega.last .mega_inner::after {
    left: 46rem;
  }
}

.c-header nav > span .mega.last a {
  width: calc(100% / 3 - 2rem);
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega {
    padding-top: 0;
    opacity: 1;
    position: static;
    pointer-events: inherit;
    -webkit-transition: inherit;
    transition: inherit;
  }
}

@media screen and (min-width: 768px), print {
  .c-header nav > span .mega:hover {
    opacity: 1;
    pointer-events: inherit;
  }
}

.c-header nav > span .mega_inner {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px), print {
  .c-header nav > span .mega_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15rem;
    border-style: solid;
    border-width: 0 9px 14px 9px;
    border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
    -webkit-transform: translateY(-99%);
            transform: translateY(-99%);
  }
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega_inner {
    width: 100%;
    padding: 0;
    display: block;
    background-color: #EEEEEC;
    padding: 0;
  }
}

.c-header nav > span .mega_inner a {
  color: #fff;
}

@media screen and (min-width: 768px), print {
  .c-header nav > span .mega_inner a {
    margin: 0 1rem;
  }
  .c-header nav > span .mega_inner a:nth-of-type(n + 4) {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega_inner a {
    width: 100%;
    margin-top: 1rem;
  }
}

.c-header nav > span .mega_inner a figure {
  height: 15rem;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega_inner a figure {
    display: none;
  }
}

.c-header nav > span .mega_inner a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.c-header nav > span .mega_inner a figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 60, 60, 0.42);
  mix-blend-mode: multiply;
}

.c-header nav > span .mega_inner a p {
  position: relative;
  font-size: 1.6rem;
  margin-top: 1rem;
  color: #361D10;
  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;
}

.c-header nav > span .mega_inner a p span {
  font-size: 1.6rem;
  color: #361D10;
}

.c-header nav > span .mega_inner a p span small {
  color: #361D10;
  font-size: 1.4rem;
}

.c-header nav > span .mega_inner a p svg {
  width: 3rem;
}

@media screen and (max-width: 767px), print {
  .c-header nav > span .mega_inner a p {
    margin-top: 0;
    padding-left: 1.2rem;
    display: block;
  }
  .c-header nav > span .mega_inner a p svg {
    display: none;
  }
  .c-header nav > span .mega_inner a p::before {
    position: absolute;
    content: "";
    width: 0.8rem;
    height: 0.1rem;
    background-color: #9D9282;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px), print {
  .c-header nav > span .mega_inner a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@media screen and (max-width: 767px), print {
  .c-header__drawer {
    position: absolute;
    z-index: 2;
    width: 3rem;
    height: 1.5rem;
    right: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .c-header__drawer span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background: #FFFFFF;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .is-news .c-header__drawer span, .is-blog .c-header__drawer span, .is-contact .c-header__drawer span, .is-aboutservice .c-header__drawer span, .is-privacypolicy .c-header__drawer span {
    background: #000;
  }
  .c-header__drawer span:nth-of-type(1) {
    top: 0;
  }
  .c-header__drawer span:nth-of-type(3) {
    top: 100%;
  }
  .is-drawer .c-header__drawer span {
    background-color: #361D10;
  }
  .is-drawer .c-header__drawer span:nth-of-type(1), .is-drawer .c-header__drawer span:nth-of-type(3) {
    top: 50%;
  }
  .is-drawer .c-header__drawer span:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-drawer .c-header__drawer span:nth-of-type(2) {
    opacity: 0;
  }
  .is-drawer .c-header__drawer span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.c-header__nav {
  margin-top: 4rem;
}

.c-header__nav-top {
  border-top: 0.1rem solid #9D9282;
}

.c-header__nav-top ul {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.c-header__nav-top ul li {
  margin: 0 1.5rem;
}

.c-header__nav-top ul li a {
  color: #361D10;
  font-size: 1.4rem;
}

.c-header__nav-bottom {
  margin-top: 2rem;
}

.c-header__nav-bottom .reserve a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #145258;
  font-size: 1.6rem;
  color: #FFF;
  padding: 2rem 0;
}

.c-header__nav-bottom .reserve a svg {
  width: 1.5rem;
  margin-right: 2rem;
}

.c-header__nav-bottom .sns {
  margin-top: 3rem;
}

.c-header__nav-bottom .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
}

.c-header__nav-bottom .sns ul li {
  margin: 0 1rem;
}

.c-header__nav-bottom .sns ul li a svg {
  height: 2.6rem;
}

.c-header__overlay {
  background-color: rgba(77, 68, 68, 0.95);
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.is-drawer .c-header__overlay {
  pointer-events: inherit;
  opacity: 1;
}

.reserveBtn {
  width: 5rem;
  position: fixed;
  right: 0;
  bottom: 5rem;
  z-index: 3;
  opacity: 0;
}

.page .reserveBtn {
  opacity: 1;
}

@media screen and (max-width: 767px), print {
  .reserveBtn {
    width: 3rem;
    right: 2rem;
    bottom: 2rem;
  }
}

.reserveBtn svg {
  width: 1.6rem;
}

@media screen and (max-width: 767px), print {
  .reserveBtn svg {
    width: inherit;
    height: 1.4rem;
  }
}

.reserveBtn a {
  width: 100%;
  background-color: #9D9282;
  border: 0.1rem solid #FFF;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2rem;
  font-weight: 400;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px), print {
  .reserveBtn a {
    font-size: 1.4rem;
    padding: 1rem 0.8rem;
  }
}

.reserveBtn a span {
  display: block;
  margin-bottom: 1rem;
}

.reserveBtn a:hover {
  color: #9D9282;
  background-color: #FFF;
}

.reserveBtn a:hover svg rect {
  fill: #9D9282;
}

.reserveBtn a:hover svg circle {
  fill: #FFF;
}

.c-mv {
  width: 100%;
  height: 100%;
  position: relative;
}

.c-mv picture {
  width: 100%;
  height: 100%;
}

.c-mv-ttl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 11rem;
}

@media screen and (max-width: 767px), print {
  .c-mv-ttl {
    left: 0;
    bottom: 3rem;
    -webkit-transform: inherit;
            transform: inherit;
  }
}

.c-mv-ttl h1 {
  color: #FFF;
  font-size: 5.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px), print {
  .c-mv-ttl h1 {
    font-size: 3.8rem;
  }
}

.c-mv-ttl h1 span {
  font-size: 2.4rem;
  display: block;
}

@media screen and (max-width: 767px), print {
  .c-mv-ttl h1 span {
    font-size: 1.4rem;
  }
}

.c-mv-text {
  font-size: 3.2rem;
  font-weight: 600;
  color: #FFF;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .c-mv-text {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
}

.c-paging {
  margin-top: 5rem;
}

.c-paging ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
  margin-right: -1rem;
}

.c-paging ul li {
  font-size: 1.8rem;
  position: relative;
  margin: 0 1rem;
}

.c-paging ul li.current {
  color: #361D10;
}

.c-paging ul li.current::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #361D10;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-paging ul li a {
  color: #9D9282;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.c-paging ul li a:hover {
  color: #361D10;
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 62.5% !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  html {
    font-size: calc(100vw / 144) !important;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10vw / 400 * 100) !important;
  }
}

html.is-dOpen {
  position: fixed;
  top: 0;
  left: 0;
}

html body {
  font-size: 1.6rem !important;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

dl, dt, dd, figure, p {
  margin: 0;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

body {
  font-family: "Shippori Mincho B1", serif !important;
  font-weight: 500;
  line-height: 1.7 !important;
  background: #EEEEEC;
  margin: 0;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif !important;
}

main {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px), print {
  [href*='tel:'] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 768px), print {
  .c-s-inner {
    width: 96.0rem;
    margin-left: auto;
    margin-right: auto;
  }
  .c-m-inner {
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
  .c-inner {
    width: 110rem;
    margin-left: auto;
    margin-right: auto;
  }
  .c-page {
    margin-top: 15rem;
  }
}

@media screen and (max-width: 767px), print {
  .c-s-inner, .c-m-inner, .c-inner {
    padding: 0 3rem;
  }
  .c-page {
    margin-top: 8rem;
  }
}

.c-breadcrumbs {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px), print {
  .c-breadcrumbs {
    margin-top: 3rem;
  }
}

.c-breadcrumbs > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-breadcrumbs > ul > li {
  font-size: 1.3rem;
  color: #361D10;
  position: relative;
}

.c-breadcrumbs > ul > li a {
  color: #361D10;
}

.c-breadcrumbs > ul > li a:hover {
  opacity: 0.6;
}

.c-breadcrumbs > ul > li:nth-child(n + 2) {
  margin-left: 0.5rem;
  padding-left: 2rem;
}

.c-breadcrumbs > ul > li:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.1rem;
  background-color: #9D9282;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn01 {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}

@media screen and (max-width: 767px), print {
  .c-btn01 {
    font-size: 1.6rem;
  }
}

.c-btn01 span {
  width: 5rem;
  height: 4.4rem;
  border: 0.1rem solid #FFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1.2rem;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .c-btn01 span {
    width: 4.4rem;
    height: 3.9rem;
  }
}

.c-btn01 span svg {
  width: 1.6rem;
}

.c-btn01 span svg path {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.c-btn01:hover span {
  background-color: #FFF;
}

.c-btn01:hover svg path {
  fill: #FFF;
}

.c-btn02 {
  width: 72rem;
  height: 7rem;
  background-color: #9D9282;
  font-size: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .c-btn02 {
    width: 34rem;
    font-size: 1.6rem;
  }
}

.c-btn02 span {
  position: absolute;
  right: 2rem;
  width: 3.1rem;
  height: 2.8rem;
  border: 0.1rem solid #FFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.c-btn02 span svg {
  width: 1rem;
}

.c-btn02 span svg path {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.c-btn02:hover span {
  background-color: #FFF;
}

.c-btn02:hover svg path {
  fill: #9D9282;
}

.c-ttl01 {
  font-size: 6.2rem;
  font-weight: 600;
  color: #9D9282;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.c-ttl01 span {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0;
}

@media screen and (max-width: 767px), print {
  .c-ttl01 span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px), print {
  .c-ttl01 {
    font-size: 4.6rem;
  }
}

.c-reserve {
  width: 100%;
  height: 30rem;
  position: relative;
  margin-top: 14rem;
}

@media screen and (max-width: 767px), print {
  .c-reserve {
    margin-top: 8rem;
    height: 12rem;
  }
}

.c-reserve a {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.c-reserve a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-reserve figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.c-reserve figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.c-reserve figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #382F24, #9D9282);
  mix-blend-mode: multiply;
}

.c-reserve-inner {
  position: absolute;
  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;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px), print {
  .c-reserve-inner {
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-reserve-content {
  color: #FFFFFF;
  padding-left: 5rem;
}

@media screen and (max-width: 767px), print {
  .c-reserve-content {
    padding-left: 0;
  }
}

.c-reserve-content__subttl {
  font-size: 3rem;
  font-weight: 400;
}

@media screen and (max-width: 767px), print {
  .c-reserve-content__subttl {
    font-size: 1.5rem;
  }
}

.c-reserve-content__ttl {
  font-size: 4.2rem;
  font-weight: 400;
}

@media screen and (max-width: 767px), print {
  .c-reserve-content__ttl {
    font-size: 2.4rem;
  }
}

.c-reserve-arrow {
  padding-right: 5rem;
}

@media screen and (max-width: 767px), print {
  .c-reserve-arrow {
    padding-right: 0;
  }
}

.c-reserve-arrow span {
  width: 8.6rem;
  height: 7.6rem;
  border: 0.1rem solid #FFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .c-reserve-arrow span {
    width: 4.4rem;
    height: 3.9rem;
  }
}

.c-reserve-arrow span svg {
  width: 2.8rem;
}

@media screen and (max-width: 767px), print {
  .c-reserve-arrow span svg {
    width: 1.6rem;
  }
}

.c-reserve-arrow span svg path {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  -webkit-transition: .8s;
  transition: .8s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================
 margin
========================================================================== */
.u-m-c {
  margin-right: auto !important;
  margin-left: auto !important;
}

.u-m-r {
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* Top margin */
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt--0 {
  margin-top: 0rem !important;
}

.u-mt-1 {
  margin-top: 1rem !important;
}

.u-mt--1 {
  margin-top: -1rem !important;
}

.u-mt-2 {
  margin-top: 2rem !important;
}

.u-mt--2 {
  margin-top: -2rem !important;
}

.u-mt-3 {
  margin-top: 3rem !important;
}

.u-mt--3 {
  margin-top: -3rem !important;
}

.u-mt-4 {
  margin-top: 4rem !important;
}

.u-mt--4 {
  margin-top: -4rem !important;
}

.u-mt-5 {
  margin-top: 5rem !important;
}

.u-mt--5 {
  margin-top: -5rem !important;
}

.u-mt-6 {
  margin-top: 6rem !important;
}

.u-mt--6 {
  margin-top: -6rem !important;
}

.u-mt-7 {
  margin-top: 7rem !important;
}

.u-mt--7 {
  margin-top: -7rem !important;
}

.u-mt-8 {
  margin-top: 8rem !important;
}

.u-mt--8 {
  margin-top: -8rem !important;
}

.u-mt-9 {
  margin-top: 9rem !important;
}

.u-mt--9 {
  margin-top: -9rem !important;
}

.u-mt-10 {
  margin-top: 10rem !important;
}

.u-mt--10 {
  margin-top: -10rem !important;
}

.u-mt-11 {
  margin-top: 11rem !important;
}

.u-mt--11 {
  margin-top: -11rem !important;
}

.u-mt-12 {
  margin-top: 12rem !important;
}

.u-mt--12 {
  margin-top: -12rem !important;
}

.u-mt-13 {
  margin-top: 13rem !important;
}

.u-mt--13 {
  margin-top: -13rem !important;
}

.u-mt-14 {
  margin-top: 14rem !important;
}

.u-mt--14 {
  margin-top: -14rem !important;
}

.u-mt-15 {
  margin-top: 15rem !important;
}

.u-mt--15 {
  margin-top: -15rem !important;
}

.u-mt-16 {
  margin-top: 16rem !important;
}

.u-mt--16 {
  margin-top: -16rem !important;
}

.u-mt-17 {
  margin-top: 17rem !important;
}

.u-mt--17 {
  margin-top: -17rem !important;
}

.u-mt-18 {
  margin-top: 18rem !important;
}

.u-mt--18 {
  margin-top: -18rem !important;
}

.u-mt-19 {
  margin-top: 19rem !important;
}

.u-mt--19 {
  margin-top: -19rem !important;
}

.u-mt-20 {
  margin-top: 20rem !important;
}

.u-mt--20 {
  margin-top: -20rem !important;
}

.u-mt-21 {
  margin-top: 21rem !important;
}

.u-mt--21 {
  margin-top: -21rem !important;
}

.u-mt-22 {
  margin-top: 22rem !important;
}

.u-mt--22 {
  margin-top: -22rem !important;
}

.u-mt-23 {
  margin-top: 23rem !important;
}

.u-mt--23 {
  margin-top: -23rem !important;
}

.u-mt-24 {
  margin-top: 24rem !important;
}

.u-mt--24 {
  margin-top: -24rem !important;
}

.u-mt-25 {
  margin-top: 25rem !important;
}

.u-mt--25 {
  margin-top: -25rem !important;
}

/* Right margin */
.u-mr-0 {
  margin-right: 0rem !important;
}

.u-mr--0 {
  margin-right: 0rem !important;
}

.u-mr-1 {
  margin-right: 1rem !important;
}

.u-mr--1 {
  margin-right: -1rem !important;
}

.u-mr-2 {
  margin-right: 2rem !important;
}

.u-mr--2 {
  margin-right: -2rem !important;
}

.u-mr-3 {
  margin-right: 3rem !important;
}

.u-mr--3 {
  margin-right: -3rem !important;
}

.u-mr-4 {
  margin-right: 4rem !important;
}

.u-mr--4 {
  margin-right: -4rem !important;
}

.u-mr-5 {
  margin-right: 5rem !important;
}

.u-mr--5 {
  margin-right: -5rem !important;
}

.u-mr-6 {
  margin-right: 6rem !important;
}

.u-mr--6 {
  margin-right: -6rem !important;
}

.u-mr-7 {
  margin-right: 7rem !important;
}

.u-mr--7 {
  margin-right: -7rem !important;
}

.u-mr-8 {
  margin-right: 8rem !important;
}

.u-mr--8 {
  margin-right: -8rem !important;
}

.u-mr-9 {
  margin-right: 9rem !important;
}

.u-mr--9 {
  margin-right: -9rem !important;
}

.u-mr-10 {
  margin-right: 10rem !important;
}

.u-mr--10 {
  margin-right: -10rem !important;
}

.u-mr-11 {
  margin-right: 11rem !important;
}

.u-mr--11 {
  margin-right: -11rem !important;
}

.u-mr-12 {
  margin-right: 12rem !important;
}

.u-mr--12 {
  margin-right: -12rem !important;
}

.u-mr-13 {
  margin-right: 13rem !important;
}

.u-mr--13 {
  margin-right: -13rem !important;
}

.u-mr-14 {
  margin-right: 14rem !important;
}

.u-mr--14 {
  margin-right: -14rem !important;
}

.u-mr-15 {
  margin-right: 15rem !important;
}

.u-mr--15 {
  margin-right: -15rem !important;
}

.u-mr-16 {
  margin-right: 16rem !important;
}

.u-mr--16 {
  margin-right: -16rem !important;
}

.u-mr-17 {
  margin-right: 17rem !important;
}

.u-mr--17 {
  margin-right: -17rem !important;
}

.u-mr-18 {
  margin-right: 18rem !important;
}

.u-mr--18 {
  margin-right: -18rem !important;
}

.u-mr-19 {
  margin-right: 19rem !important;
}

.u-mr--19 {
  margin-right: -19rem !important;
}

.u-mr-20 {
  margin-right: 20rem !important;
}

.u-mr--20 {
  margin-right: -20rem !important;
}

.u-mr-21 {
  margin-right: 21rem !important;
}

.u-mr--21 {
  margin-right: -21rem !important;
}

.u-mr-22 {
  margin-right: 22rem !important;
}

.u-mr--22 {
  margin-right: -22rem !important;
}

.u-mr-23 {
  margin-right: 23rem !important;
}

.u-mr--23 {
  margin-right: -23rem !important;
}

.u-mr-24 {
  margin-right: 24rem !important;
}

.u-mr--24 {
  margin-right: -24rem !important;
}

.u-mr-25 {
  margin-right: 25rem !important;
}

.u-mr--25 {
  margin-right: -25rem !important;
}

/* Bottom margin */
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb--0 {
  margin-bottom: 0rem !important;
}

.u-mb-1 {
  margin-bottom: 1rem !important;
}

.u-mb--1 {
  margin-bottom: -1rem !important;
}

.u-mb-2 {
  margin-bottom: 2rem !important;
}

.u-mb--2 {
  margin-bottom: -2rem !important;
}

.u-mb-3 {
  margin-bottom: 3rem !important;
}

.u-mb--3 {
  margin-bottom: -3rem !important;
}

.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mb--4 {
  margin-bottom: -4rem !important;
}

.u-mb-5 {
  margin-bottom: 5rem !important;
}

.u-mb--5 {
  margin-bottom: -5rem !important;
}

.u-mb-6 {
  margin-bottom: 6rem !important;
}

.u-mb--6 {
  margin-bottom: -6rem !important;
}

.u-mb-7 {
  margin-bottom: 7rem !important;
}

.u-mb--7 {
  margin-bottom: -7rem !important;
}

.u-mb-8 {
  margin-bottom: 8rem !important;
}

.u-mb--8 {
  margin-bottom: -8rem !important;
}

.u-mb-9 {
  margin-bottom: 9rem !important;
}

.u-mb--9 {
  margin-bottom: -9rem !important;
}

.u-mb-10 {
  margin-bottom: 10rem !important;
}

.u-mb--10 {
  margin-bottom: -10rem !important;
}

.u-mb-11 {
  margin-bottom: 11rem !important;
}

.u-mb--11 {
  margin-bottom: -11rem !important;
}

.u-mb-12 {
  margin-bottom: 12rem !important;
}

.u-mb--12 {
  margin-bottom: -12rem !important;
}

.u-mb-13 {
  margin-bottom: 13rem !important;
}

.u-mb--13 {
  margin-bottom: -13rem !important;
}

.u-mb-14 {
  margin-bottom: 14rem !important;
}

.u-mb--14 {
  margin-bottom: -14rem !important;
}

.u-mb-15 {
  margin-bottom: 15rem !important;
}

.u-mb--15 {
  margin-bottom: -15rem !important;
}

.u-mb-16 {
  margin-bottom: 16rem !important;
}

.u-mb--16 {
  margin-bottom: -16rem !important;
}

.u-mb-17 {
  margin-bottom: 17rem !important;
}

.u-mb--17 {
  margin-bottom: -17rem !important;
}

.u-mb-18 {
  margin-bottom: 18rem !important;
}

.u-mb--18 {
  margin-bottom: -18rem !important;
}

.u-mb-19 {
  margin-bottom: 19rem !important;
}

.u-mb--19 {
  margin-bottom: -19rem !important;
}

.u-mb-20 {
  margin-bottom: 20rem !important;
}

.u-mb--20 {
  margin-bottom: -20rem !important;
}

.u-mb-21 {
  margin-bottom: 21rem !important;
}

.u-mb--21 {
  margin-bottom: -21rem !important;
}

.u-mb-22 {
  margin-bottom: 22rem !important;
}

.u-mb--22 {
  margin-bottom: -22rem !important;
}

.u-mb-23 {
  margin-bottom: 23rem !important;
}

.u-mb--23 {
  margin-bottom: -23rem !important;
}

.u-mb-24 {
  margin-bottom: 24rem !important;
}

.u-mb--24 {
  margin-bottom: -24rem !important;
}

.u-mb-25 {
  margin-bottom: 25rem !important;
}

.u-mb--25 {
  margin-bottom: -25rem !important;
}

/* Left margin */
.u-ml-0 {
  margin-left: 0rem !important;
}

.u-ml--0 {
  margin-left: 0rem !important;
}

.u-ml-1 {
  margin-left: 1rem !important;
}

.u-ml--1 {
  margin-left: -1rem !important;
}

.u-ml-2 {
  margin-left: 2rem !important;
}

.u-ml--2 {
  margin-left: -2rem !important;
}

.u-ml-3 {
  margin-left: 3rem !important;
}

.u-ml--3 {
  margin-left: -3rem !important;
}

.u-ml-4 {
  margin-left: 4rem !important;
}

.u-ml--4 {
  margin-left: -4rem !important;
}

.u-ml-5 {
  margin-left: 5rem !important;
}

.u-ml--5 {
  margin-left: -5rem !important;
}

.u-ml-6 {
  margin-left: 6rem !important;
}

.u-ml--6 {
  margin-left: -6rem !important;
}

.u-ml-7 {
  margin-left: 7rem !important;
}

.u-ml--7 {
  margin-left: -7rem !important;
}

.u-ml-8 {
  margin-left: 8rem !important;
}

.u-ml--8 {
  margin-left: -8rem !important;
}

.u-ml-9 {
  margin-left: 9rem !important;
}

.u-ml--9 {
  margin-left: -9rem !important;
}

.u-ml-10 {
  margin-left: 10rem !important;
}

.u-ml--10 {
  margin-left: -10rem !important;
}

.u-ml-11 {
  margin-left: 11rem !important;
}

.u-ml--11 {
  margin-left: -11rem !important;
}

.u-ml-12 {
  margin-left: 12rem !important;
}

.u-ml--12 {
  margin-left: -12rem !important;
}

.u-ml-13 {
  margin-left: 13rem !important;
}

.u-ml--13 {
  margin-left: -13rem !important;
}

.u-ml-14 {
  margin-left: 14rem !important;
}

.u-ml--14 {
  margin-left: -14rem !important;
}

.u-ml-15 {
  margin-left: 15rem !important;
}

.u-ml--15 {
  margin-left: -15rem !important;
}

.u-ml-16 {
  margin-left: 16rem !important;
}

.u-ml--16 {
  margin-left: -16rem !important;
}

.u-ml-17 {
  margin-left: 17rem !important;
}

.u-ml--17 {
  margin-left: -17rem !important;
}

.u-ml-18 {
  margin-left: 18rem !important;
}

.u-ml--18 {
  margin-left: -18rem !important;
}

.u-ml-19 {
  margin-left: 19rem !important;
}

.u-ml--19 {
  margin-left: -19rem !important;
}

.u-ml-20 {
  margin-left: 20rem !important;
}

.u-ml--20 {
  margin-left: -20rem !important;
}

.u-ml-21 {
  margin-left: 21rem !important;
}

.u-ml--21 {
  margin-left: -21rem !important;
}

.u-ml-22 {
  margin-left: 22rem !important;
}

.u-ml--22 {
  margin-left: -22rem !important;
}

.u-ml-23 {
  margin-left: 23rem !important;
}

.u-ml--23 {
  margin-left: -23rem !important;
}

.u-ml-24 {
  margin-left: 24rem !important;
}

.u-ml--24 {
  margin-left: -24rem !important;
}

.u-ml-25 {
  margin-left: 25rem !important;
}

.u-ml--25 {
  margin-left: -25rem !important;
}

@media screen and (max-width: 767px), print {
  .u-m-sp-c {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .u-m-sp-r {
    margin-right: auto !important;
    margin-left: 0 !important;
  }
  /* Top margin */
  .u-mt-sp-0 {
    margin-top: 0rem !important;
  }
  .u-mt-sp--0 {
    margin-top: 0-rem !important;
  }
  .u-mt-sp-1 {
    margin-top: 1rem !important;
  }
  .u-mt-sp--1 {
    margin-top: 1-rem !important;
  }
  .u-mt-sp-2 {
    margin-top: 2rem !important;
  }
  .u-mt-sp--2 {
    margin-top: 2-rem !important;
  }
  .u-mt-sp-3 {
    margin-top: 3rem !important;
  }
  .u-mt-sp--3 {
    margin-top: 3-rem !important;
  }
  .u-mt-sp-4 {
    margin-top: 4rem !important;
  }
  .u-mt-sp--4 {
    margin-top: 4-rem !important;
  }
  .u-mt-sp-5 {
    margin-top: 5rem !important;
  }
  .u-mt-sp--5 {
    margin-top: 5-rem !important;
  }
  .u-mt-sp-6 {
    margin-top: 6rem !important;
  }
  .u-mt-sp--6 {
    margin-top: 6-rem !important;
  }
  .u-mt-sp-7 {
    margin-top: 7rem !important;
  }
  .u-mt-sp--7 {
    margin-top: 7-rem !important;
  }
  .u-mt-sp-8 {
    margin-top: 8rem !important;
  }
  .u-mt-sp--8 {
    margin-top: 8-rem !important;
  }
  .u-mt-sp-9 {
    margin-top: 9rem !important;
  }
  .u-mt-sp--9 {
    margin-top: 9-rem !important;
  }
  .u-mt-sp-10 {
    margin-top: 10rem !important;
  }
  .u-mt-sp--10 {
    margin-top: 10-rem !important;
  }
  .u-mt-sp-11 {
    margin-top: 11rem !important;
  }
  .u-mt-sp--11 {
    margin-top: 11-rem !important;
  }
  .u-mt-sp-12 {
    margin-top: 12rem !important;
  }
  .u-mt-sp--12 {
    margin-top: 12-rem !important;
  }
  .u-mt-sp-13 {
    margin-top: 13rem !important;
  }
  .u-mt-sp--13 {
    margin-top: 13-rem !important;
  }
  .u-mt-sp-14 {
    margin-top: 14rem !important;
  }
  .u-mt-sp--14 {
    margin-top: 14-rem !important;
  }
  .u-mt-sp-15 {
    margin-top: 15rem !important;
  }
  .u-mt-sp--15 {
    margin-top: 15-rem !important;
  }
  .u-mt-sp-16 {
    margin-top: 16rem !important;
  }
  .u-mt-sp--16 {
    margin-top: 16-rem !important;
  }
  .u-mt-sp-17 {
    margin-top: 17rem !important;
  }
  .u-mt-sp--17 {
    margin-top: 17-rem !important;
  }
  .u-mt-sp-18 {
    margin-top: 18rem !important;
  }
  .u-mt-sp--18 {
    margin-top: 18-rem !important;
  }
  .u-mt-sp-19 {
    margin-top: 19rem !important;
  }
  .u-mt-sp--19 {
    margin-top: 19-rem !important;
  }
  .u-mt-sp-20 {
    margin-top: 20rem !important;
  }
  .u-mt-sp--20 {
    margin-top: 20-rem !important;
  }
  .u-mt-sp-21 {
    margin-top: 21rem !important;
  }
  .u-mt-sp--21 {
    margin-top: 21-rem !important;
  }
  .u-mt-sp-22 {
    margin-top: 22rem !important;
  }
  .u-mt-sp--22 {
    margin-top: 22-rem !important;
  }
  .u-mt-sp-23 {
    margin-top: 23rem !important;
  }
  .u-mt-sp--23 {
    margin-top: 23-rem !important;
  }
  .u-mt-sp-24 {
    margin-top: 24rem !important;
  }
  .u-mt-sp--24 {
    margin-top: 24-rem !important;
  }
  .u-mt-sp-25 {
    margin-top: 25rem !important;
  }
  .u-mt-sp--25 {
    margin-top: 25-rem !important;
  }
  /* Right margin */
  .u-mr-sp-0 {
    margin-right: 0rem !important;
  }
  .u-mr-sp--0 {
    margin-right: 0-rem !important;
  }
  .u-mr-sp-1 {
    margin-right: 1rem !important;
  }
  .u-mr-sp--1 {
    margin-right: 1-rem !important;
  }
  .u-mr-sp-2 {
    margin-right: 2rem !important;
  }
  .u-mr-sp--2 {
    margin-right: 2-rem !important;
  }
  .u-mr-sp-3 {
    margin-right: 3rem !important;
  }
  .u-mr-sp--3 {
    margin-right: 3-rem !important;
  }
  .u-mr-sp-4 {
    margin-right: 4rem !important;
  }
  .u-mr-sp--4 {
    margin-right: 4-rem !important;
  }
  .u-mr-sp-5 {
    margin-right: 5rem !important;
  }
  .u-mr-sp--5 {
    margin-right: 5-rem !important;
  }
  .u-mr-sp-6 {
    margin-right: 6rem !important;
  }
  .u-mr-sp--6 {
    margin-right: 6-rem !important;
  }
  .u-mr-sp-7 {
    margin-right: 7rem !important;
  }
  .u-mr-sp--7 {
    margin-right: 7-rem !important;
  }
  .u-mr-sp-8 {
    margin-right: 8rem !important;
  }
  .u-mr-sp--8 {
    margin-right: 8-rem !important;
  }
  .u-mr-sp-9 {
    margin-right: 9rem !important;
  }
  .u-mr-sp--9 {
    margin-right: 9-rem !important;
  }
  .u-mr-sp-10 {
    margin-right: 10rem !important;
  }
  .u-mr-sp--10 {
    margin-right: 10-rem !important;
  }
  .u-mr-sp-11 {
    margin-right: 11rem !important;
  }
  .u-mr-sp--11 {
    margin-right: 11-rem !important;
  }
  .u-mr-sp-12 {
    margin-right: 12rem !important;
  }
  .u-mr-sp--12 {
    margin-right: 12-rem !important;
  }
  .u-mr-sp-13 {
    margin-right: 13rem !important;
  }
  .u-mr-sp--13 {
    margin-right: 13-rem !important;
  }
  .u-mr-sp-14 {
    margin-right: 14rem !important;
  }
  .u-mr-sp--14 {
    margin-right: 14-rem !important;
  }
  .u-mr-sp-15 {
    margin-right: 15rem !important;
  }
  .u-mr-sp--15 {
    margin-right: 15-rem !important;
  }
  .u-mr-sp-16 {
    margin-right: 16rem !important;
  }
  .u-mr-sp--16 {
    margin-right: 16-rem !important;
  }
  .u-mr-sp-17 {
    margin-right: 17rem !important;
  }
  .u-mr-sp--17 {
    margin-right: 17-rem !important;
  }
  .u-mr-sp-18 {
    margin-right: 18rem !important;
  }
  .u-mr-sp--18 {
    margin-right: 18-rem !important;
  }
  .u-mr-sp-19 {
    margin-right: 19rem !important;
  }
  .u-mr-sp--19 {
    margin-right: 19-rem !important;
  }
  .u-mr-sp-20 {
    margin-right: 20rem !important;
  }
  .u-mr-sp--20 {
    margin-right: 20-rem !important;
  }
  .u-mr-sp-21 {
    margin-right: 21rem !important;
  }
  .u-mr-sp--21 {
    margin-right: 21-rem !important;
  }
  .u-mr-sp-22 {
    margin-right: 22rem !important;
  }
  .u-mr-sp--22 {
    margin-right: 22-rem !important;
  }
  .u-mr-sp-23 {
    margin-right: 23rem !important;
  }
  .u-mr-sp--23 {
    margin-right: 23-rem !important;
  }
  .u-mr-sp-24 {
    margin-right: 24rem !important;
  }
  .u-mr-sp--24 {
    margin-right: 24-rem !important;
  }
  .u-mr-sp-25 {
    margin-right: 25rem !important;
  }
  .u-mr-sp--25 {
    margin-right: 25-rem !important;
  }
  /* Bottom margin */
  .u-mb-sp-0 {
    margin-bottom: 0rem !important;
  }
  .u-mb-sp--0 {
    margin-bottom: 0-rem !important;
  }
  .u-mb-sp-1 {
    margin-bottom: 1rem !important;
  }
  .u-mb-sp--1 {
    margin-bottom: 1-rem !important;
  }
  .u-mb-sp-2 {
    margin-bottom: 2rem !important;
  }
  .u-mb-sp--2 {
    margin-bottom: 2-rem !important;
  }
  .u-mb-sp-3 {
    margin-bottom: 3rem !important;
  }
  .u-mb-sp--3 {
    margin-bottom: 3-rem !important;
  }
  .u-mb-sp-4 {
    margin-bottom: 4rem !important;
  }
  .u-mb-sp--4 {
    margin-bottom: 4-rem !important;
  }
  .u-mb-sp-5 {
    margin-bottom: 5rem !important;
  }
  .u-mb-sp--5 {
    margin-bottom: 5-rem !important;
  }
  .u-mb-sp-6 {
    margin-bottom: 6rem !important;
  }
  .u-mb-sp--6 {
    margin-bottom: 6-rem !important;
  }
  .u-mb-sp-7 {
    margin-bottom: 7rem !important;
  }
  .u-mb-sp--7 {
    margin-bottom: 7-rem !important;
  }
  .u-mb-sp-8 {
    margin-bottom: 8rem !important;
  }
  .u-mb-sp--8 {
    margin-bottom: 8-rem !important;
  }
  .u-mb-sp-9 {
    margin-bottom: 9rem !important;
  }
  .u-mb-sp--9 {
    margin-bottom: 9-rem !important;
  }
  .u-mb-sp-10 {
    margin-bottom: 10rem !important;
  }
  .u-mb-sp--10 {
    margin-bottom: 10-rem !important;
  }
  .u-mb-sp-11 {
    margin-bottom: 11rem !important;
  }
  .u-mb-sp--11 {
    margin-bottom: 11-rem !important;
  }
  .u-mb-sp-12 {
    margin-bottom: 12rem !important;
  }
  .u-mb-sp--12 {
    margin-bottom: 12-rem !important;
  }
  .u-mb-sp-13 {
    margin-bottom: 13rem !important;
  }
  .u-mb-sp--13 {
    margin-bottom: 13-rem !important;
  }
  .u-mb-sp-14 {
    margin-bottom: 14rem !important;
  }
  .u-mb-sp--14 {
    margin-bottom: 14-rem !important;
  }
  .u-mb-sp-15 {
    margin-bottom: 15rem !important;
  }
  .u-mb-sp--15 {
    margin-bottom: 15-rem !important;
  }
  .u-mb-sp-16 {
    margin-bottom: 16rem !important;
  }
  .u-mb-sp--16 {
    margin-bottom: 16-rem !important;
  }
  .u-mb-sp-17 {
    margin-bottom: 17rem !important;
  }
  .u-mb-sp--17 {
    margin-bottom: 17-rem !important;
  }
  .u-mb-sp-18 {
    margin-bottom: 18rem !important;
  }
  .u-mb-sp--18 {
    margin-bottom: 18-rem !important;
  }
  .u-mb-sp-19 {
    margin-bottom: 19rem !important;
  }
  .u-mb-sp--19 {
    margin-bottom: 19-rem !important;
  }
  .u-mb-sp-20 {
    margin-bottom: 20rem !important;
  }
  .u-mb-sp--20 {
    margin-bottom: 20-rem !important;
  }
  .u-mb-sp-21 {
    margin-bottom: 21rem !important;
  }
  .u-mb-sp--21 {
    margin-bottom: 21-rem !important;
  }
  .u-mb-sp-22 {
    margin-bottom: 22rem !important;
  }
  .u-mb-sp--22 {
    margin-bottom: 22-rem !important;
  }
  .u-mb-sp-23 {
    margin-bottom: 23rem !important;
  }
  .u-mb-sp--23 {
    margin-bottom: 23-rem !important;
  }
  .u-mb-sp-24 {
    margin-bottom: 24rem !important;
  }
  .u-mb-sp--24 {
    margin-bottom: 24-rem !important;
  }
  .u-mb-sp-25 {
    margin-bottom: 25rem !important;
  }
  .u-mb-sp--25 {
    margin-bottom: 25-rem !important;
  }
  /* Left margin */
  .u-ml-sp-0 {
    margin-left: 0rem !important;
  }
  .u-ml-sp--0 {
    margin-left: 0-rem !important;
  }
  .u-ml-sp-1 {
    margin-left: 1rem !important;
  }
  .u-ml-sp--1 {
    margin-left: 1-rem !important;
  }
  .u-ml-sp-2 {
    margin-left: 2rem !important;
  }
  .u-ml-sp--2 {
    margin-left: 2-rem !important;
  }
  .u-ml-sp-3 {
    margin-left: 3rem !important;
  }
  .u-ml-sp--3 {
    margin-left: 3-rem !important;
  }
  .u-ml-sp-4 {
    margin-left: 4rem !important;
  }
  .u-ml-sp--4 {
    margin-left: 4-rem !important;
  }
  .u-ml-sp-5 {
    margin-left: 5rem !important;
  }
  .u-ml-sp--5 {
    margin-left: 5-rem !important;
  }
  .u-ml-sp-6 {
    margin-left: 6rem !important;
  }
  .u-ml-sp--6 {
    margin-left: 6-rem !important;
  }
  .u-ml-sp-7 {
    margin-left: 7rem !important;
  }
  .u-ml-sp--7 {
    margin-left: 7-rem !important;
  }
  .u-ml-sp-8 {
    margin-left: 8rem !important;
  }
  .u-ml-sp--8 {
    margin-left: 8-rem !important;
  }
  .u-ml-sp-9 {
    margin-left: 9rem !important;
  }
  .u-ml-sp--9 {
    margin-left: 9-rem !important;
  }
  .u-ml-sp-10 {
    margin-left: 10rem !important;
  }
  .u-ml-sp--10 {
    margin-left: 10-rem !important;
  }
  .u-ml-sp-11 {
    margin-left: 11rem !important;
  }
  .u-ml-sp--11 {
    margin-left: 11-rem !important;
  }
  .u-ml-sp-12 {
    margin-left: 12rem !important;
  }
  .u-ml-sp--12 {
    margin-left: 12-rem !important;
  }
  .u-ml-sp-13 {
    margin-left: 13rem !important;
  }
  .u-ml-sp--13 {
    margin-left: 13-rem !important;
  }
  .u-ml-sp-14 {
    margin-left: 14rem !important;
  }
  .u-ml-sp--14 {
    margin-left: 14-rem !important;
  }
  .u-ml-sp-15 {
    margin-left: 15rem !important;
  }
  .u-ml-sp--15 {
    margin-left: 15-rem !important;
  }
  .u-ml-sp-16 {
    margin-left: 16rem !important;
  }
  .u-ml-sp--16 {
    margin-left: 16-rem !important;
  }
  .u-ml-sp-17 {
    margin-left: 17rem !important;
  }
  .u-ml-sp--17 {
    margin-left: 17-rem !important;
  }
  .u-ml-sp-18 {
    margin-left: 18rem !important;
  }
  .u-ml-sp--18 {
    margin-left: 18-rem !important;
  }
  .u-ml-sp-19 {
    margin-left: 19rem !important;
  }
  .u-ml-sp--19 {
    margin-left: 19-rem !important;
  }
  .u-ml-sp-20 {
    margin-left: 20rem !important;
  }
  .u-ml-sp--20 {
    margin-left: 20-rem !important;
  }
  .u-ml-sp-21 {
    margin-left: 21rem !important;
  }
  .u-ml-sp--21 {
    margin-left: 21-rem !important;
  }
  .u-ml-sp-22 {
    margin-left: 22rem !important;
  }
  .u-ml-sp--22 {
    margin-left: 22-rem !important;
  }
  .u-ml-sp-23 {
    margin-left: 23rem !important;
  }
  .u-ml-sp--23 {
    margin-left: 23-rem !important;
  }
  .u-ml-sp-24 {
    margin-left: 24rem !important;
  }
  .u-ml-sp--24 {
    margin-left: 24-rem !important;
  }
  .u-ml-sp-25 {
    margin-left: 25rem !important;
  }
  .u-ml-sp--25 {
    margin-left: 25-rem !important;
  }
}

/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px;
}

.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite;
}

.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px;
}

@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0;
  }
  60% {
    opacity: .5;
  }
  100% {
    opacity: .5;
  }
}

/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
.p-top {
  overflow: hidden;
}

@media screen and (max-width: 767px), print {
  .p-top {
    padding-bottom: 3rem;
  }
}

.p-top .s-mv {
  width: 100%;
  height: 100lvh;
  position: relative;
  opacity: 0;
}

.p-top .s-mv.is-active {
  opacity: 1;
}

.p-top .s-mv-bg {
  width: 100%;
  height: 100lvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-top .s-mv-bg__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("images/top/mv.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-bg__inner {
    background: url("images/top/mv-sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.p-top .s-mv-inner {
  width: 100%;
  height: 100vh;
  position: relative;
}

.p-top .s-mv-logo {
  width: 72rem;
  height: 63.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  mix-blend-mode: overlay;
  z-index: 1;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-logo {
    width: 26.3rem;
    height: 23.1rem;
    -webkit-transform: translateX(-50%) translateY(-2rem);
            transform: translateX(-50%) translateY(-2rem);
  }
}

@-webkit-keyframes expansion-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes expansion-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes expansion-anim-sp {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

@keyframes expansion-anim-sp {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}

.p-top .s-mv-img {
  width: 26rem;
  height: 16rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-img {
    width: 16.2rem;
    -webkit-transform: translateX(-50%) translateY(5rem);
            transform: translateX(-50%) translateY(5rem);
  }
}

.p-top .s-mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes blur-anim2 {
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blur-anim2 {
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

.p-top .s-mv-title {
  font-size: 3.9rem;
  line-height: 2;
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  right: calc(50vw - 55rem);
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(15rem);
          transform: translateY(-50%) translateX(15rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
}

.p-top .s-mv-title span {
  opacity: 0;
}

.p-top .s-mv-title span.subtitle {
  display: block;
  font-size: 2rem;
  margin-right: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-title span.subtitle {
    margin-right: 1rem;
  }
}

.p-top .s-mv-title span.subtitle svg {
  width: 2.9rem;
  height: 30rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-title span.subtitle svg {
    width: 3.5rem;
    height: 22.7rem;
  }
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-title {
    font-size: 3.5rem;
    line-height: 1.5;
    right: inherit;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-26rem);
            transform: translateX(-50%) translateY(-26rem);
  }
}

.p-top .s-mv-news {
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  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;
  opacity: 0;
  z-index: 3;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-news {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-top .s-mv-news a > div {
  margin: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-top .s-mv-news__link:hover .s-mv-news__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-top .s-mv-news__link:hover .s-mv-news__desc {
  opacity: 0.7;
}

.p-top .s-mv-news__img {
  width: 9.8rem;
  height: 6.4rem;
  overflow: hidden;
}

@media screen and (max-width: 767px), print {
  .p-top .s-mv-news__img {
    display: none;
  }
}

.p-top .s-mv-news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.p-top .s-mv-news__desc {
  font-size: 1.4rem;
  color: #FFF;
  margin-left: 1.8rem;
  width: 25rem;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.p-top .s-mv-news__desc h4 {
  margin-top: 0.3rem;
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-top .s-mv-news > div {
  width: 5rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.p-top .s-mv-news > div > span {
  width: 1rem;
  height: 2rem;
  display: block;
}

.p-top .s-mv-news > div > span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .s-top {
  width: 100%;
  height: 95rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top {
    height: 85rem;
  }
}

.p-top .s-top-concept {
  width: 100%;
  height: 100%;
  padding-top: 10rem;
  margin-top: 5rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-concept {
    padding-top: 6rem;
    margin-top: 2rem;
  }
}

.p-top .s-top-concept__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  opacity: 0;
  background: rgba(13, 13, 13, 0.2);
  z-index: -1;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-concept__bg {
    background: rgba(13, 13, 13, 0.4);
  }
}

.p-top .s-top-concept-inner {
  width: 56rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-concept-inner {
    width: 100%;
    padding: 0 3rem;
  }
}

.p-top .s-top-concept__ttl {
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 2;
}

.p-top .s-top-concept__text {
  margin-top: 3rem;
}

.p-top .s-top-concept__text p {
  font-size: 1.6rem;
  line-height: 2;
  color: #FFF;
}

.p-top .s-top-concept__text p + p {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-concept__text p + p {
    margin-top: 2rem;
  }
}

.p-top .s-top-deco {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 24.5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco {
    height: 18rem;
  }
}

.p-top .s-top-deco > div {
  position: relative;
  z-index: 1;
  height: 24.5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco > div {
    height: 22rem;
  }
}

.p-top .s-top-deco-img {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.p-top .s-top-deco-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top .s-top-deco-img > div {
  position: relative;
}

.p-top .s-top-deco-img > div::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: 0;
  width: 100%;
  height: 10rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco-img > div::after {
    height: 6rem;
    bottom: -5rem;
  }
}

.p-top .s-top-deco-img.top {
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco-img.top {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-top .s-top-deco-img.top > div::after {
  background-color: #81999C;
}

.p-top .s-top-deco-img.middle {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco-img.middle {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-top .s-top-deco-img.middle > div::after {
  background-color: #21636A;
}

.p-top .s-top-deco-img.bottom {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 767px), print {
  .p-top .s-top-deco-img.bottom {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-top .s-top-deco-img.bottom > div::after {
  background-color: #004C54;
}

.p-top .s-concept {
  position: relative;
  background-color: #829A9D;
  padding-bottom: 18rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept {
    margin-top: 2rem;
    padding-bottom: 0;
  }
}

.p-top .s-concept-wrap {
  max-width: 140rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-wrap {
    max-width: inherit;
  }
}

.p-top .s-concept-top {
  position: relative;
  width: 50vw;
  min-height: 45.4rem;
  margin-left: auto;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-top {
    min-height: 17.1rem;
  }
}

.p-top .s-concept-top figure {
  width: 60.6rem;
  height: 45.4rem;
  position: absolute;
  top: 50%;
  right: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-top figure {
    width: 23rem;
    height: 17.1rem;
    right: 0;
    top: 14rem;
    -webkit-transform: inherit;
            transform: inherit;
  }
}

.p-top .s-concept-top figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .s-concept-bottom {
  position: relative;
  width: 50vw;
  min-height: 32.9rem;
  margin-right: auto;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-bottom {
    min-height: 11.5rem;
  }
}

.p-top .s-concept-bottom figure {
  width: 49.4rem;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateY(-5rem);
          transform: translateY(-50%) translateY(-5rem);
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-bottom figure {
    width: 14rem;
    height: 11.5rem;
    left: 0;
    top: 7rem;
    -webkit-transform: inherit;
            transform: inherit;
  }
}

.p-top .s-concept-bottom figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .s-concept__copy {
  font-size: 4.4rem;
  font-weight: 600;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  position: absolute;
  top: 8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFF;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept__copy {
    font-size: 2.8rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    top: 3rem;
    left: 3rem;
    -webkit-transform: inherit;
            transform: inherit;
  }
}

.p-top .s-concept-inner {
  width: 53rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-4rem);
          transform: translateX(-50%) translateY(-4rem);
  bottom: 7rem;
  color: #FFF;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-inner {
    width: 100%;
    padding: 0 3rem;
    left: inherit;
    bottom: inherit;
    position: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
  }
}

.p-top .s-concept-inner__ttl {
  font-size: 7.2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-inner__ttl {
    font-size: 4.8rem;
  }
}

.p-top .s-concept-inner__text p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-top .s-concept-inner__text p + p {
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-concept-inner__text {
    margin-top: 1rem;
  }
}

.p-top .s-concept-inner__btn {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-top .s-concept-inner__btn a:hover svg path {
  fill: #829A9D;
}

.p-top .s-beauty {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#829A9D), to(#ECEEEC));
  background: linear-gradient(to bottom, #829A9D, #ECEEEC);
  padding-top: 10rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty {
    padding-top: 18rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #829A9D), color-stop(30%, #B6C3C4), color-stop(60%, #ECEEEC));
    background: linear-gradient(to bottom, #829A9D 20%, #B6C3C4 30%, #ECEEEC 60%);
  }
}

.p-top .s-beauty__img {
  position: relative;
}

.p-top .s-beauty__img figure {
  width: calc(125rem + 50vw - 55rem);
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__img figure {
    width: calc(100% + 3rem);
    height: 24rem;
  }
}

.p-top .s-beauty__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .s-beauty__img .ttl {
  position: absolute;
  right: 0;
  top: -3rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  color: #FFF;
  z-index: 1;
  white-space: nowrap;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__img .ttl {
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    left: 3rem;
    top: -6rem;
  }
}

.p-top .s-beauty__img .ttl .en {
  font-size: 7.2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__img .ttl .en {
    font-size: 4.8rem;
    line-height: 1;
    display: block;
    margin-top: 0.5rem;
  }
}

.p-top .s-beauty__img .ttl .subTtl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__img .ttl .subTtl {
    font-size: 1.4rem;
  }
}

.p-top .s-beauty__img .ttl .mainTtl {
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__img .ttl .mainTtl {
    font-size: 1.6rem;
  }
}

.p-top .s-beauty__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 98rem;
  margin: 6rem auto 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
  }
}

.p-top .s-beauty__content .l-content {
  width: 54rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .l-content {
    width: 100%;
  }
}

.p-top .s-beauty__content .l-content__ttl {
  font-size: 3.2rem;
  font-weight: 600;
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .l-content__ttl {
    font-size: 2.4rem;
  }
}

.p-top .s-beauty__content .l-content__text {
  color: #361D10;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 2.6rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .l-content__text {
    margin-top: 3rem;
  }
}

.p-top .s-beauty__content .r-content {
  width: calc(100% - 54rem - 9rem);
  margin-left: 9rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .r-content {
    width: 100%;
    margin-top: 3rem;
    margin-left: 0;
  }
}

.p-top .s-beauty__content .r-content__btn a {
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .r-content__btn a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-top .s-beauty__content .r-content__btn a span {
  border: 0.1rem solid #9D9282;
}

.p-top .s-beauty__content .r-content__btn a span svg path {
  fill: #9D9282;
}

.p-top .s-beauty__content .r-content__btn a:hover span {
  background-color: #9D9282;
}

.p-top .s-beauty__content .r-content__btn a:hover svg path {
  fill: #EEEEEC;
}

.p-top .s-beauty__content .r-content__link {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-beauty__content .r-content__link {
    margin-top: 2rem;
    text-align: right;
  }
}

.p-top .s-beauty__content .r-content__link a {
  background-color: #9D9282;
  border: 0.1rem solid #9D9282;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 500;
  padding-right: 1.5rem;
}

.p-top .s-beauty__content .r-content__link a span {
  background-color: #FFF;
  padding: 1rem 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.5rem;
}

.p-top .s-beauty__content .r-content__link a span svg {
  width: 2rem;
}

.p-top .s-beauty__content .r-content__link a:hover {
  opacity: 0.6;
}

.p-top .s-news {
  padding-top: 20rem;
  background-color: #EEEEEC;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news {
    padding-top: 10rem;
  }
}

.p-top .s-news-inner {
  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: 767px), print {
  .p-top .s-news-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top .s-news-inner__list {
  width: 76rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list {
    width: 100%;
    margin-top: 3rem;
  }
}

.p-top .s-news-inner__list ul li:first-child {
  margin-top: -3rem;
}

.p-top .s-news-inner__list ul li:nth-child(n + 2) {
  border-top: 0.1rem solid #9D9282;
}

.p-top .s-news-inner__list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 2rem 3rem 2rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-top .s-news-inner__list ul li a::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1rem;
  background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list ul li a::after {
    content: none;
  }
}

.p-top .s-news-inner__list ul li a .news__date {
  font-size: 1.4rem;
  color: #9D9282;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-top .s-news-inner__list ul li a .news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list ul li a .news__content {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    position: relative;
  }
  .p-top .s-news-inner__list ul li a .news__content::after {
    content: "";
    position: absolute;
    width: 1.6rem;
    height: 1rem;
    background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
    right: 0;
    top: 50%;
  }
}

.p-top .s-news-inner__list ul li a .news__content figure {
  width: 12rem;
  height: 8rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list ul li a .news__content figure {
    width: 9rem;
    height: 6rem;
  }
}

.p-top .s-news-inner__list ul li a .news__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top .s-news-inner__list ul li a .news__content .ttl {
  margin-left: 3rem;
  width: 70rem;
  font-size: 1.6rem;
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-news-inner__list ul li a .news__content .ttl {
    margin-left: 1.5rem;
    width: 20rem;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.p-top .s-news-inner__list ul li a:hover {
  opacity: 0.6;
}

.p-top .s-news-inner__btn {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-top .s-news-inner__btn a {
  color: #361D10;
}

.p-top .s-news-inner__btn a span {
  border: 0.1rem solid #9D9282;
}

.p-top .s-news-inner__btn a span svg path {
  fill: #9D9282;
}

.p-top .s-news-inner__btn a:hover span {
  background-color: #9D9282;
}

.p-top .s-news-inner__btn a:hover svg path {
  fill: #EEEEEC;
}

.p-top .s-about {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-color: #EEEEEC;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.p-top .s-about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-top .s-about-inner__text {
  margin-left: 9rem;
  font-size: 1.6rem;
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-inner__text {
    margin-left: 0;
    margin-top: 3rem;
  }
}

.p-top .s-about-content {
  margin-top: 5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content {
    margin-top: 3rem;
  }
}

.p-top .s-about-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top .s-about-content ul li {
  width: calc(100% / 3);
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content ul li {
    width: calc(100% + 3rem);
  }
}

.p-top .s-about-content ul li:nth-child(n + 2) {
  margin-left: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content ul li:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 3rem;
  }
}

.p-top .s-about-content ul li figure {
  position: relative;
  height: 58rem;
  overflow: hidden;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content ul li figure {
    height: 45rem;
  }
}

.p-top .s-about-content ul li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.p-top .s-about-content ul li figure::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-color: rgba(60, 60, 60, 0.42);
  top: 0;
  left: 0;
}

.p-top .s-about-content ul li a {
  position: relative;
  display: block;
}

.p-top .s-about-content ul li a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-top .s-about-content__subttl {
  position: absolute;
  left: 2rem;
  top: 2rem;
}

.p-top .s-about-content__subttl > div {
  font-size: 2rem;
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
}

.p-top .s-about-content__subttl > div::after {
  width: 0.1rem;
  height: 9rem;
  background-color: #FFFFFF;
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%) translateX(-0.4rem) translateY(1rem);
          transform: translateX(-50%) translateX(-0.4rem) translateY(1rem);
}

.p-top .s-about-content__mainttl {
  font-size: 4.4rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media screen and (max-width: 767px), print {
  .p-top .s-about-content__mainttl {
    font-size: 3.8rem;
    left: 2rem;
    right: inherit;
    line-height: 1;
  }
}

.p-top .s-blog {
  padding: 8rem 0;
  width: 100%;
  height: 100%;
  background: url("images/top/bg-blog.jpg");
  background-size: cover;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog {
    padding: 5rem 0;
  }
}

.p-top .s-blog-inner__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-top .s-blog-inner__ttl .c-ttl01 {
  color: #FFF;
}

.p-top .s-blog-inner__ttl a:hover svg path {
  fill: #403C36;
}

.p-top .s-blog-inner__list {
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list {
    margin-top: 3rem;
  }
}

.p-top .s-blog-inner__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

.p-top .s-blog-inner__list ul li {
  width: calc(100% / 2 - 5rem);
  margin: 0 2.5rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul li {
    width: 100%;
    margin: 0;
  }
  .p-top .s-blog-inner__list ul li:nth-child(n + 2) {
    margin-top: 2rem;
  }
  .p-top .s-blog-inner__list ul li:last-child a::after {
    content: none;
  }
}

.p-top .s-blog-inner__list ul li:nth-child(n + 3) {
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul li:nth-child(n + 3) {
    margin-top: 2rem;
  }
}

.p-top .s-blog-inner__list ul li .blog__link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-top .s-blog-inner__list ul li .blog__link:hover + .blog-inner img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-top .s-blog-inner__list ul li .blog-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul li .blog-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding-bottom: 2rem;
  }
  .p-top .s-blog-inner__list ul li .blog-inner::after {
    width: 100%;
    height: 0.1rem;
    background-color: #FFF;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

.p-top .s-blog-inner__list ul li .blog-inner > figure {
  width: 22rem;
  height: 14.6rem;
  overflow: hidden;
}

.p-top .s-blog-inner__list ul li .blog-inner > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content {
  margin-left: 3rem;
  width: calc(100% - 22rem - 3rem);
  color: #FFF;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul li .blog-inner .r-content {
    margin-left: 0;
    width: 100%;
  }
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content__cat a {
  color: #FFF;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content__cat a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1rem;
  background-color: #FFF;
  bottom: 0.1rem;
  left: 0;
  z-index: 2;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content__cat a:hover {
  opacity: 0.6;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea {
  margin-top: 2rem;
  line-height: 2;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 1.5rem;
  }
  .p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea::after {
    content: "";
    position: absolute;
    width: 1.6rem;
    height: 1rem;
    background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
    right: 0;
    top: 50%;
  }
  .p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea .ttl {
    margin-left: 1.5rem;
    width: 20rem;
    line-height: 2;
  }
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea figure {
  width: 9rem;
  height: 6rem;
}

.p-top .s-blog-inner__list ul li .blog-inner .r-content .titleArea figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px), print {
  .p-top .s-blog-inner__list .c-btn01 {
    margin-top: 2rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.p-top .s-access {
  padding-top: 12rem;
  background-color: #EEEEEC;
  padding-bottom: 25rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access {
    padding-top: 5rem;
    padding-bottom: 12rem;
  }
}

.p-top .s-access-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top .s-access-map .l-content {
  width: calc(100% - 72rem - 6rem);
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-map .l-content {
    width: 100%;
  }
}

.p-top .s-access-map .l-content .address {
  margin-top: 1rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-map .l-content .address {
    margin-top: 3rem;
  }
}

.p-top .s-access-map .l-content .address p {
  line-height: 2;
}

.p-top .s-access-map .l-content .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}

.p-top .s-access-map .l-content .number p + p {
  margin-left: 2.3rem;
}

.p-top .s-access-map .l-content .car {
  margin-top: 2rem;
}

.p-top .s-access-map .l-content .caption {
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 2;
}

.p-top .s-access-map .r-map {
  width: 72rem;
  margin-left: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-map .r-map {
    width: 100%;
    height: 20rem;
    margin-top: 2rem;
    margin-left: 0;
  }
}

.p-top .s-access-map .r-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.p-top .s-access-desc {
  margin-top: 5rem;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-desc {
    margin-top: 3rem;
  }
}

.p-top .s-access-desc__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  color: #9D9282;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-desc__ttl {
    padding-bottom: 1rem;
  }
}

.p-top .s-access-desc__ttl::after {
  width: 100%;
  height: 0.1rem;
  background-color: #9D9282;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-desc__ttl::after {
    top: inherit;
    bottom: 0;
    -webkit-transform: inherit;
            transform: inherit;
    left: 0;
  }
}

.p-top .s-access-desc ul {
  margin-top: 2rem;
}

.p-top .s-access-desc ul li {
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-top .s-access-desc ul li {
    padding-left: 1em;
    text-indent: -1em;
  }
}

.p-top .s-access-desc ul li:nth-child(n + 2) {
  margin-top: 1rem;
}

.p-top .s-access-desc ul li span {
  margin-right: 1rem;
  color: #145258;
}

.p-bihadanoyu .c-breadcrumbs > ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-bihadanoyu-history {
  overflow: hidden;
  margin-top: 7rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history {
    width: 100%;
    padding: 0 3rem;
    margin-top: 3rem;
  }
}

.p-bihadanoyu-history > p {
  width: 70rem;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #361D10;
  line-height: 2;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history > p {
    width: 100%;
  }
}

.p-bihadanoyu-history__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6rem;
  }
}

.p-bihadanoyu-history__inner .l-content {
  position: relative;
  padding-left: calc(50vw - 55rem);
  width: 50vw;
  padding-right: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history__inner .l-content {
    width: 100%;
    text-align: left;
    padding-right: 0;
  }
}

.p-bihadanoyu-history__inner .l-content > p {
  margin-top: 4rem;
}

.p-bihadanoyu-history__inner .l-content > p + p {
  margin-top: 2rem;
}

.p-bihadanoyu-history__inner .r-img {
  position: relative;
  width: 50vw;
  min-height: 50.2rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history__inner .r-img {
    margin-top: 3rem;
    margin-left: 3rem;
    width: calc(100% + 3rem);
    min-height: inherit;
    height: 19rem;
  }
}

.p-bihadanoyu-history__inner .r-img figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-history__inner .r-img figure {
    left: 0;
  }
}

.p-bihadanoyu-history__inner .r-img figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-bihadanoyu-history__inner .b-content {
  margin-top: 3rem;
}

.p-bihadanoyu-history__inner .b-content > p {
  font-size: 1.6rem;
}

.p-bihadanoyu-history__inner .b-content > p + p {
  margin-top: 3rem;
}

.p-bihadanoyu-features {
  margin-top: 20rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features {
    margin-top: 8rem;
  }
}

.p-bihadanoyu-features .c-ttl01 {
  text-align: center;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features .c-ttl01 {
    text-align: left;
  }
}

.p-bihadanoyu-features__list {
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list {
    margin-top: 3rem;
  }
}

.p-bihadanoyu-features__list > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 4rem;
  border-bottom: 0.1rem solid #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li {
    padding: 1rem 0 4rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-bihadanoyu-features__list > ul > li:first-child {
  border-top: 0.1rem solid #9D9282;
}

.p-bihadanoyu-features__list > ul > li .top-content {
  width: 45vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .top-content {
    width: 100%;
    padding: 0 1rem;
  }
}

.p-bihadanoyu-features__list > ul > li .top-content__num {
  width: 13rem;
  font-size: 6.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #9D9282;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .top-content__num {
    width: 6rem;
    font-size: 3.2rem;
  }
}

.p-bihadanoyu-features__list > ul > li .top-content__num span {
  display: block;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .top-content__num span {
    font-size: 1rem;
  }
}

.p-bihadanoyu-features__list > ul > li .top-content__num::after {
  width: 0.1rem;
  height: calc(100% + 6rem);
  background-color: #9D9282;
  content: "";
  position: absolute;
  right: 0;
  top: -3rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .top-content__num::after {
    height: 100%;
    top: 0;
  }
}

.p-bihadanoyu-features__list > ul > li .top-content__title {
  width: calc(100% - 13rem);
  font-size: 2.4rem;
  padding-left: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .top-content__title {
    width: calc(100% - 6rem);
    font-size: 1.8rem;
    padding-left: 2rem;
  }
}

.p-bihadanoyu-features__list > ul > li .bottom-content {
  width: 55vw;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-features__list > ul > li .bottom-content {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.p-bihadanoyu-effect {
  margin-top: 20rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-effect {
    margin-top: 8rem;
  }
}

.p-bihadanoyu-effect__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-effect__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-bihadanoyu-effect__inner .l-img {
  width: 39.6rem;
  margin-right: 9rem;
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-effect__inner .l-img {
    width: calc(100% + 6rem);
    margin-right: 3rem;
    margin-top: 3rem;
  }
}

.p-bihadanoyu-effect__inner .r-content {
  width: calc(100% - 39.6rem - 9rem);
}

@media screen and (max-width: 767px), print {
  .p-bihadanoyu-effect__inner .r-content {
    width: 100%;
  }
}

.p-bihadanoyu-effect__inner .r-content__text {
  margin-top: 4rem;
}

.p-bihadanoyu-effect__inner .r-content__text > p + p {
  margin-top: 2rem;
}

.p-bihadanoyu-effect .b-content {
  margin-top: 3rem;
}

.p-bihadanoyu-effect .b-content > p + p {
  margin-top: 2rem;
}

.p-bihadanoyu-btn .c-btn02 {
  margin: 0 auto;
}

.p-concept {
  overflow: hidden;
}

.p-concept .c-breadcrumbs > ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-concept-story {
  margin-top: 7rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story {
    margin-top: 6rem;
  }
}

.p-concept-story__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-concept-story__desc .l-content {
  width: calc(100% - 55.4rem - 22.8rem);
  margin-right: 22.8rem;
  padding-left: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc .l-content {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
  }
}

.p-concept-story__desc .m-content {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}

.p-concept-story__desc .m-content__img01 {
  position: absolute;
  width: 7.4rem;
  height: 10.1rem;
  right: 3rem;
  top: -8rem;
}

.p-concept-story__desc .m-content > figure {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-concept-story__desc .r-content {
  width: 55.4rem;
  padding-right: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc .r-content {
    width: 100%;
    padding-right: 0;
    margin-top: 3rem;
  }
}

.p-concept-story__desc .r-content__ttl {
  font-size: 3.2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc .r-content__ttl {
    font-size: 2.4rem;
  }
}

.p-concept-story__desc .r-content__text {
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc .r-content__text {
    margin-top: 3rem;
  }
}

.p-concept-story__desc .r-content__text > p + p {
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__desc .r-content__text > p + p {
    margin-top: 3rem;
  }
}

.p-concept-story__img {
  margin-top: 8rem;
  position: relative;
}

.p-concept-story__img .img01 {
  position: absolute;
  width: 19rem;
  height: 25.8rem;
  top: -21rem;
  left: 26%;
}

.p-concept-story__img picture {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-concept-story__content {
  margin-top: 12rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content {
    margin-top: 4rem;
  }
}

.p-concept-story__content .inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-concept-story__content .inner-content .l-img {
  width: 54.2rem;
  margin-right: 9.5rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .l-img {
    width: 100%;
    margin-right: 0;
  }
  .p-concept-story__content .inner-content .l-img > picture {
    width: 17.5rem;
    height: 15.1rem;
    margin-right: 0;
  }
  .p-concept-story__content .inner-content .l-img > figure {
    width: 13.5rem;
    height: 12.2rem;
    margin-left: auto;
    margin-top: -5rem;
  }
}

.p-concept-story__content .inner-content .r-content {
  width: calc(100% - 54.2rem - 9.5rem);
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .r-content {
    width: 100%;
    margin-top: 4rem;
  }
}

.p-concept-story__content .inner-content .l-content {
  width: calc(100% - 46.3rem - 9.5rem);
  padding-left: 8rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .l-content {
    width: 100%;
    padding-left: 0;
  }
}

.p-concept-story__content .inner-content .r-img {
  width: 46.3rem;
  margin-left: 9.5rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .r-img {
    width: 100%;
    margin-left: 0;
  }
}

.p-concept-story__content .inner-content .l-imgs {
  width: calc(100% - 35.2rem - 11.1rem);
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .l-imgs {
    width: 100%;
  }
}

.p-concept-story__content .inner-content .l-imgs picture:first-of-type {
  width: 25.7rem;
  height: 30rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .l-imgs picture:first-of-type {
    width: 12.1rem;
    height: 17.5rem;
  }
}

.p-concept-story__content .inner-content .l-imgs picture:last-of-type {
  width: 28.5rem;
  height: 38rem;
  margin-left: auto;
  margin-top: -13rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .l-imgs picture:last-of-type {
    width: 18.2rem;
    height: 13rem;
    margin-top: -8rem;
  }
}

.p-concept-story__content .inner-content .r-text {
  width: 35.2rem;
  margin-left: 11.1rem;
  padding-top: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-story__content .inner-content .r-text {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    margin-top: 4rem;
  }
}

.p-concept-feature {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-concept-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.p-concept-feature .l-content {
  width: 50vw;
  padding-left: 7rem;
  margin-right: 9.5rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-feature .l-content {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
    margin-top: 4rem;
  }
}

.p-concept-feature .l-content__ttl {
  font-size: 3.2rem;
  font-weight: 600;
}

@media screen and (max-width: 767px), print {
  .p-concept-feature .l-content__ttl {
    font-size: 2.4rem;
  }
}

.p-concept-feature .l-content__text {
  line-height: 1.7;
}

.p-concept-feature .r-img {
  width: 50vw;
  min-height: 49rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-concept-feature .r-img {
    width: calc(100% + 6rem);
    min-height: 18rem;
    margin-left: 6rem;
    margin-right: 6rem;
  }
}

@media screen and (min-width: 768px), print {
  .p-concept-feature .r-img picture {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 69.2rem;
    height: 100%;
  }
}

.p-concept-feature .r-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept-connection {
  margin-top: 27rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection {
    margin-top: 12rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-concept-connection .c-ttl01 {
  width: calc(100% - 68rem - 5rem);
}

@media screen and (max-width: 767px), print {
  .p-concept-connection .c-ttl01 {
    width: 100%;
  }
}

.p-concept-connection ul {
  width: 68rem;
  margin-left: 5rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
  }
}

.p-concept-connection ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-concept-connection ul > li .l-content {
  width: calc(100% - 51.5rem - 2rem);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .l-content {
    width: 100%;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}

.p-concept-connection ul > li .l-content__subttl {
  color: #9D9282;
  font-size: 2rem;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .l-content__subttl {
    font-size: 1.6rem;
  }
}

.p-concept-connection ul > li .l-content__subttl span {
  position: relative;
  padding-bottom: 1rem;
  background-color: #EEEEEC;
  z-index: 1;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .l-content__subttl span {
    padding-right: 1rem;
  }
}

.p-concept-connection ul > li .l-content__subttl::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 10rem;
  background-color: #9D9282;
  right: 50%;
  top: 7rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .l-content__subttl::after {
    width: 10rem;
    height: 0.1rem;
    left: 5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-concept-connection ul > li .l-content__ttl {
  font-size: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .l-content__ttl {
    font-size: 2.4rem;
  }
}

.p-concept-connection ul > li .r-content {
  width: 51.5rem;
  margin-left: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .r-content {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}

.p-concept-connection ul > li .r-content__img {
  position: relative;
}

.p-concept-connection ul > li .r-content__img > .icon {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  font-size: 6rem;
  font-weight: 600;
  color: #FFF;
  bottom: 2rem;
  right: 1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li .r-content__img > .icon {
    font-size: 4.2rem;
  }
}

.p-concept-connection ul > li .r-content__text {
  margin-top: 3rem;
}

.p-concept-connection ul > li .r-content__text p {
  line-height: 1.6;
}

.p-concept-connection ul > li:nth-child(n + 2) {
  margin-top: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-concept-connection ul > li:nth-child(n + 2) {
    margin-top: 8rem;
  }
}

.p-news {
  margin-bottom: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-news {
    margin-bottom: 8rem;
  }
}

.p-news-list {
  margin-top: 10rem;
}

@media screen and (max-width: 767px), print {
  .p-news-list {
    margin-top: 5rem;
  }
}

.p-news-list__inner {
  width: 100%;
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner {
    width: 100%;
    margin-top: 3rem;
  }
}

.p-news-list__inner ul li:first-child {
  margin-top: -3rem;
}

.p-news-list__inner ul li:nth-child(n + 2) {
  border-top: 0.1rem solid #9D9282;
}

.p-news-list__inner ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 2rem 3rem 2rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner ul li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-news-list__inner ul li a::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1rem;
  background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner ul li a::after {
    content: none;
  }
}

.p-news-list__inner ul li a .date {
  font-size: 1.4rem;
  color: #9D9282;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-news-list__inner ul li a .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner ul li a .content {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    position: relative;
  }
  .p-news-list__inner ul li a .content::after {
    content: "";
    position: absolute;
    width: 1.6rem;
    height: 1rem;
    background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
    right: 0;
    top: 50%;
  }
}

.p-news-list__inner ul li a .content figure {
  width: 12rem;
  height: 8rem;
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner ul li a .content figure {
    width: 9rem;
    height: 6rem;
  }
}

.p-news-list__inner ul li a .content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-list__inner ul li a .content .ttl {
  margin-left: 3rem;
  width: 70rem;
  font-size: 1.6rem;
  color: #361D10;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px), print {
  .p-news-list__inner ul li a .content .ttl {
    margin-left: 1.5rem;
    width: 20rem;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: inherit;
    white-space: inherit;
  }
}

.p-news-list__inner ul li a:hover {
  opacity: 0.6;
}

.p-news-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px), print {
  .p-news-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-news-title .c-ttl01 {
    font-size: 3.8rem;
  }
  .p-news-title .c-breadcrumbs {
    margin-left: auto;
  }
}

.p-blog {
  margin-bottom: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-blog {
    margin-bottom: 8rem;
  }
}

.p-blog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px), print {
  .p-blog-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-blog-title .c-ttl01 {
    font-size: 3.8rem;
  }
  .p-blog-title .c-breadcrumbs {
    margin-left: auto;
  }
}

.p-blog-list {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__category .title {
    padding: 1rem 1rem;
    font-size: 1.6rem;
    position: relative;
    color: #361D10;
    background-color: #FFF;
  }
  .p-blog-list__category .title::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 0;
    border-bottom: solid 0.1rem #361D10;
    border-right: solid 0.1rem #361D10;
    position: absolute;
    top: 50%;
    right: 2rem;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .p-blog-list__category .title.active::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
}

.p-blog-list__category > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__category > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 0;
    background-color: #FFF;
    display: none;
  }
}

.p-blog-list__category > ul > li {
  margin: 0 1rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__category > ul > li {
    margin: 0;
  }
  .p-blog-list__category > ul > li:nth-child(n + 2) {
    margin-top: 1rem;
  }
}

.p-blog-list__category > ul > li a {
  color: #9D9282;
  position: relative;
  padding: 0 1rem;
}

.p-blog-list__category > ul > li a.is-active > * {
  color: #361D10;
}

.p-blog-list__category > ul > li a::after {
  width: 100%;
  height: 0.1rem;
  background-color: #9D9282;
  left: 0;
  bottom: -0.75rem;
  content: "";
  position: absolute;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__category > ul > li a::after {
    content: none;
  }
}

.p-blog-list__category > ul > li a:hover, .p-blog-list__category > ul > li a.is-active {
  color: #361D10;
}

.p-blog-list__category > ul > li a:hover::after, .p-blog-list__category > ul > li a.is-active::after {
  background-color: #361D10;
}

.p-blog-list__keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 0.1rem solid #9D9282;
  border-bottom: 0.1rem solid #9D9282;
}

.p-blog-list__keyword .list > ul > li a.is-active {
  color: #361D10;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__keyword {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
  }
}

.p-blog-list__keyword .ttl {
  width: 10rem;
  font-size: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__keyword .ttl {
    width: 100%;
    margin-right: 0;
  }
}

.p-blog-list__keyword .list {
  width: calc(100% - 11rem - 1rem);
}

@media screen and (max-width: 767px), print {
  .p-blog-list__keyword .list {
    width: 100%;
    margin-top: 1rem;
  }
}

.p-blog-list__keyword .list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.p-blog-list__keyword .list > ul > li {
  margin: 0 1rem;
}

.p-blog-list__keyword .list > ul > li a {
  color: #9D9282;
  white-space: nowrap;
}

.p-blog-list__keyword .list > ul > li a:hover {
  opacity: 0.6;
}

.p-blog-list__content {
  margin-top: 6rem;
}

.p-blog-list__content > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul {
    margin: 0;
  }
}

.p-blog-list__content > ul > li {
  position: relative;
  width: calc(100% / 3 - 4rem);
  margin: 0 2rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul > li {
    width: 100%;
    margin: 0;
  }
}

.p-blog-list__content > ul > li:nth-child(n + 4) {
  margin-top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul > li:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul > li:nth-child(n + 2) {
    margin-top: 4rem;
  }
}

.p-blog-list__content > ul > li .blog__link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-blog-list__content > ul > li .blog__link:hover + .pctArea img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-blog-list__content > ul > li .pctArea {
  position: relative;
}

.p-blog-list__content > ul > li .pctArea figure {
  width: 100%;
  height: 23rem;
  overflow: hidden;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul > li .pctArea figure {
    height: 20rem;
  }
}

.p-blog-list__content > ul > li .pctArea figure img {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.p-blog-list__content > ul > li .pctArea .category {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
  background-color: #9D9282;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 1rem;
}

.p-blog-list__content > ul > li .date {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

.p-blog-list__content > ul > li .ttl {
  font-size: 1.6rem;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 767px), print {
  .p-blog-list__content > ul > li .ttl {
    width: 100%;
  }
}

.p-blog-list__content > ul > li .keyword ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.7rem;
  margin-right: -0.7rem;
}

.p-blog-list__content > ul > li .keyword ul li {
  margin: 0 0.7rem;
}

.p-blog-list__content > ul > li .keyword ul li a {
  font-size: 1.4rem;
  color: #9D9282;
  position: relative;
  z-index: 2;
}

.p-blog-list__content > ul > li .keyword ul li a:hover {
  opacity: 0.6;
}

.p-abouthotel-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-abouthotel-title .c-ttl01 {
    font-size: 3.8rem;
  }
  .p-abouthotel-title .c-breadcrumbs {
    margin-left: auto;
  }
}

.p-abouthotel-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 9rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
  }
}

.p-abouthotel-inner__side {
  width: calc(100% - 96rem - 5rem);
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side {
    width: 100%;
  }
}

.p-abouthotel-inner__side > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    background: #EEEEEC;
    top: inherit;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 2rem 3rem;
    -webkit-transition: .3s all;
    transition: .3s all;
  }
  .p-abouthotel-inner__side > ul.is-active {
    width: 100%;
    position: fixed;
    bottom: 0;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul > li {
    width: calc(100% / 3 - 2rem);
    margin: 0 1rem;
  }
}

.p-abouthotel-inner__side > ul > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul > li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
  }
  .p-abouthotel-inner__side > ul > li a::before {
    content: '';
    width: 0.7rem;
    height: 0.7rem;
    border: 0;
    border-bottom: solid 0.1rem #9D9282;
    border-right: solid 0.1rem #9D9282;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .p-abouthotel-inner__side > ul > li a::after {
    width: 100%;
    height: 0.1rem;
    content: "";
    position: absolute;
    background-color: #9D9282;
    bottom: -1rem;
    left: 0;
  }
}

.p-abouthotel-inner__side > ul > li a > * {
  -webkit-transition: .3s all;
  transition: .3s all;
}

.p-abouthotel-inner__side > ul > li a.is-active > * {
  color: #361D10;
}

@media screen and (min-width: 767px), print {
  .p-abouthotel-inner__side > ul > li a:hover > * {
    color: #361D10;
  }
}

.p-abouthotel-inner__side > ul > li a .num {
  font-size: 1.4rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul > li a .num {
    font-size: 1.2rem;
  }
}

.p-abouthotel-inner__side > ul > li a .num::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 2rem;
  left: 50%;
  bottom: -2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul > li a .num::after {
    content: none;
  }
}

.p-abouthotel-inner__side > ul > li a .title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2rem;
  padding-top: 2.5rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__side > ul > li a .title {
    font-size: 1.3rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    padding-top: 0;
    letter-spacing: 0.1em;
    margin-left: 0.5rem;
  }
}

.p-abouthotel-inner__main {
  width: 96rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-inner__main {
    width: 100%;
    margin-top: 8rem;
  }
}

.p-abouthotel-rooms .price-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-abouthotel-rooms .price-inner .content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 0;
}

.p-abouthotel-rooms .price-inner .content:last-of-type {
  position: relative;
}

.p-abouthotel-rooms .price-inner .content:last-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #9D9282;
}

.p-abouthotel-rooms .price-inner .content .ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms .price-inner .content .ttl {
    font-size: 2.2rem;
  }
}

.p-abouthotel-rooms .price-inner .content .ttl.medium {
  font-weight: 500;
}

.p-abouthotel-rooms .price-inner .content .ttl span {
  text-orientation: upright;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms .price-inner .content .ttl span {
    text-combine-upright: all;
    letter-spacing: normal;
  }
}

.p-abouthotel-rooms .price-inner .content .ttl small {
  font-size: 1.6rem;
  display: block;
  letter-spacing: 0;
}

.p-abouthotel-rooms .price-inner .content .price {
  font-size: 2rem;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  margin-left: 1.5rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms .price-inner .content .price {
    margin-left: 1rem;
  }
}

.p-abouthotel-rooms .price-inner .content .price small {
  font-size: 1.5rem;
}

.p-abouthotel-rooms__top {
  position: relative;
  margin-top: 5rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top {
    position: inherit;
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .pctArea {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    position: relative;
  }
}

.p-abouthotel-rooms__top figure {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top figure {
    height: 100%;
  }
}

.p-abouthotel-rooms__top figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.42);
  mix-blend-mode: multiply;
}

.p-abouthotel-rooms__top .subttl {
  position: absolute;
  left: 6rem;
  top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .subttl {
    left: 3rem;
    top: 2rem;
  }
}

.p-abouthotel-rooms__top .subttl span {
  font-size: 2rem;
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .subttl span {
    font-size: 1.4rem;
  }
}

.p-abouthotel-rooms__top .subttl span::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 10rem;
  background-color: #FFFFFF;
  left: 50%;
  top: calc(100% + 1rem);
  -webkit-transform: translateX(-50%) translateX(-0.3rem);
          transform: translateX(-50%) translateX(-0.3rem);
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .subttl span::after {
    height: 4rem;
  }
}

.p-abouthotel-rooms__top .ttl {
  color: #FFF;
  font-size: 5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.2em;
  left: 5rem;
  top: 25rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .ttl {
    font-size: 2.8rem;
    left: inherit;
    right: 3rem;
    top: inherit;
    bottom: 2rem;
  }
}

.p-abouthotel-rooms__top .copy {
  color: #FFF;
  font-size: 4.3rem;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 11rem;
  right: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .copy {
    position: inherit;
    font-size: 2.2rem;
    color: #361D10;
    bottom: inherit;
    right: inherit;
    margin-top: 2rem;
  }
}

.p-abouthotel-rooms__top .text {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.7;
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  text-align: right;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__top .text {
    font-size: 1.4rem;
    margin: 1.5rem 0 0 0;
    position: inherit;
    bottom: inherit;
    right: inherit;
    text-align: left;
    color: #361D10;
    font-family: "Zen Kaku Gothic Antique", sans-serif !important;
  }
}

.p-abouthotel-rooms__bottom {
  margin-top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom {
    margin-top: 4rem;
  }
}

.p-abouthotel-rooms__bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-abouthotel-rooms__bottom ul li {
  width: calc(100% / 3 - 3rem);
  margin: 0 1.5rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li {
    width: 100%;
    margin: 0;
  }
}

.p-abouthotel-rooms__bottom ul li .pct {
  position: relative;
}

.p-abouthotel-rooms__bottom ul li .pct figure {
  position: relative;
}

.p-abouthotel-rooms__bottom ul li .pct figure::after {
  width: 100%;
  height: 85%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#24221B), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #24221B, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}

.p-abouthotel-rooms__bottom ul li .pct .capacity {
  font-size: 1.4rem;
  color: #361D10;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 0.5rem 0.2rem;
  letter-spacing: 0.2em;
  background-color: #EEEEEC;
  position: absolute;
  top: 0;
  right: 1rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .pct .capacity {
    font-size: 1.6rem;
  }
}

.p-abouthotel-rooms__bottom ul li .pct .capacity span {
  text-orientation: upright;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .pct .capacity span {
    text-combine-upright: all;
    letter-spacing: normal;
  }
}

.p-abouthotel-rooms__bottom ul li .pct .ttl {
  font-size: 2.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.4;
  color: #FFF;
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .pct .ttl {
    font-size: 2.2rem;
  }
}

.p-abouthotel-rooms__bottom ul li .pct .ttl span {
  font-size: 1.4rem;
}

.p-abouthotel-rooms__bottom ul li .text {
  font-size: 1.4rem;
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}

.p-abouthotel-rooms__bottom ul li .desc {
  margin-top: 1.5rem;
}

.p-abouthotel-rooms__bottom ul li .desc > dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .desc > dl > div {
    font-size: 1.6rem;
  }
}

.p-abouthotel-rooms__bottom ul li .desc > dl > div dt {
  position: relative;
  padding-right: 0.9rem;
}

.p-abouthotel-rooms__bottom ul li .desc > dl > div dt::after {
  width: 0.1rem;
  height: 1rem;
  background-color: #9D9282;
  content: "";
  position: absolute;
  right: 0;
  top: 0.7rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li .desc > dl > div dt::after {
    height: 1.5rem;
  }
}

.p-abouthotel-rooms__bottom ul li .desc > dl > div dd {
  padding-left: 0.9rem;
}

.p-abouthotel-rooms__bottom ul li:nth-child(n + 4) {
  margin-top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-rooms__bottom ul li:nth-child(n + 2) {
    margin-top: 8rem;
  }
}

.p-abouthotel-food {
  margin-top: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food {
    margin-top: 8rem;
  }
}

.p-abouthotel-food__top {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top {
    padding: inherit;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .pctArea {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    position: relative;
  }
}

.p-abouthotel-food__top figure {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top figure {
    height: 100%;
  }
}

.p-abouthotel-food__top figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.42);
  mix-blend-mode: multiply;
}

.p-abouthotel-food__top .subttl {
  position: absolute;
  left: 6rem;
  top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .subttl {
    left: 3rem;
    top: 2rem;
  }
}

.p-abouthotel-food__top .subttl span {
  font-size: 2rem;
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .subttl span {
    font-size: 1.4rem;
  }
}

.p-abouthotel-food__top .subttl span::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 10rem;
  background-color: #FFFFFF;
  left: 50%;
  top: calc(100% + 1rem);
  -webkit-transform: translateX(-50%) translateX(-0.3rem);
          transform: translateX(-50%) translateX(-0.3rem);
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .subttl span::after {
    height: 4rem;
  }
}

.p-abouthotel-food__top .ttl {
  color: #FFF;
  font-size: 5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.2em;
  left: 5rem;
  top: 23rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .ttl {
    font-size: 2.8rem;
    left: inherit;
    right: 3rem;
    top: inherit;
    bottom: 2rem;
  }
}

.p-abouthotel-food__top .copy {
  color: #FFF;
  font-size: 4.3rem;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 11rem;
  right: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .copy {
    position: inherit;
    font-size: 2.2rem;
    color: #361D10;
    bottom: inherit;
    right: inherit;
    margin-top: 2rem;
  }
}

.p-abouthotel-food__top .text {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.7;
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  text-align: right;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__top .text {
    font-size: 1.4rem;
    margin: 1.5rem 0 0 0;
    position: inherit;
    bottom: inherit;
    right: inherit;
    text-align: left;
    color: #361D10;
    font-family: "Zen Kaku Gothic Antique", sans-serif !important;
  }
}

.p-abouthotel-food__bottom {
  margin-top: 6rem;
}

.p-abouthotel-food__bottom > ul {
  width: 85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px), print {
  .p-abouthotel-food__bottom > ul {
    margin-left: 0;
  }

  .p-abouthotel-food__bottom > ul > li:first-child {
    width: auto;
    margin-left: 0;
  }
}

.p-abouthotel-food__bottom > ul > li {
  width: calc(100% / 3 - 3rem);
  margin: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li {
    width: 100%;
    margin: 0;
  }
  .p-abouthotel-food__bottom > ul > li:nth-child(n + 2) {
    margin-top: 8rem;
  }
}

.p-abouthotel-food__bottom > ul > li .pct {
  width: 22rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .pct {
    width: 100%;
  }
}

.p-abouthotel-food__bottom > ul > li .pct picture {
  position: relative;
}

.p-abouthotel-food__bottom > ul > li .pct picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(60, 60, 60, 0.42);
  mix-blend-mode: multiply;
}

.p-abouthotel-food__bottom > ul > li .pct .subttl {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.p-abouthotel-food__bottom > ul > li .pct .subttl span {
  color: #FFF;
  font-size: 1.6rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .pct .subttl span {
    font-size: 1.4rem;
  }
}

.p-abouthotel-food__bottom > ul > li .pct .subttl span::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 5rem;
  background-color: #FFFFFF;
  left: 50%;
  top: calc(100% + 1rem);
  -webkit-transform: translateX(-50%) translateX(-0.3rem);
          transform: translateX(-50%) translateX(-0.3rem);
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .pct .subttl span::after {
    height: 3rem;
  }
}

.p-abouthotel-food__bottom > ul > li .pct .ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .pct .ttl {
    font-size: 2.8rem;
  }
}

.p-abouthotel-food__bottom > ul > li .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #361D10;
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .content {
    margin-top: 1rem;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-abouthotel-food__bottom > ul > li .content .title {
  font-size: 1.6rem;
  -webkit-transform: translateY(0.3rem);
          transform: translateY(0.3rem);
  position: relative;
  padding-right: 0.8rem;
}

.p-abouthotel-food__bottom > ul > li .content .title::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 1.2rem;
  background-color: #9D9282;
  right: 0;
  top: 0.8rem;
}

.p-abouthotel-food__bottom > ul > li .content .time {
  font-size: 2.4rem;
  line-height: 1.3;
  padding-left: 0.8rem;
}

.p-abouthotel-food__bottom > ul > li .content .time span {
  font-size: 1.6rem;
  display: block;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .content .time span {
    display: inline;
    margin-left: 1rem;
  }
}

.p-abouthotel-food__bottom > ul > li .caption {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  white-space: nowrap;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .caption {
    margin-right: auto;
  }
}

.p-abouthotel-food__bottom > ul > li .btn {
  margin-top: 2rem;
  width: 23rem;
  height: 4.4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .btn {
    width: 25rem;
    height: 5rem;
  }
}

.p-abouthotel-food__bottom > ul > li .btn a {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #9D9282;
  color: #FFF;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-food__bottom > ul > li .btn a {
    font-size: 1.6rem;
  }
}

.p-abouthotel-food__bottom > ul > li .btn a:hover {
  opacity: 0.6;
}

.p-abouthotel-facilities {
  margin-top: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities {
    margin-top: 8rem;
  }
}

.p-abouthotel-facilities__top {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top {
    position: inherit;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .pctArea {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    position: relative;
  }
}

.p-abouthotel-facilities__top figure {
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top figure {
    height: 100%;
  }
}

.p-abouthotel-facilities__top figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.42);
  mix-blend-mode: multiply;
}

.p-abouthotel-facilities__top .subttl {
  position: absolute;
  left: 6rem;
  top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .subttl {
    left: 3rem;
    top: 2rem;
  }
}

.p-abouthotel-facilities__top .subttl span {
  font-size: 2rem;
  color: #FFF;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .subttl span {
    font-size: 1.4rem;
  }
}

.p-abouthotel-facilities__top .subttl span::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 10rem;
  background-color: #FFFFFF;
  left: 50%;
  top: calc(100% + 1rem);
  -webkit-transform: translateX(-50%) translateX(-0.3rem);
          transform: translateX(-50%) translateX(-0.3rem);
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .subttl span::after {
    height: 4rem;
  }
}

.p-abouthotel-facilities__top .ttl {
  color: #FFF;
  font-size: 5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.2em;
  left: 5rem;
  top: 27rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .ttl {
    font-size: 2.8rem;
    left: inherit;
    right: 3rem;
    top: inherit;
    bottom: 2rem;
  }
}

.p-abouthotel-facilities__top .copy {
  color: #FFF;
  font-size: 4.3rem;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 8rem;
  right: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .copy {
    position: inherit;
    font-size: 2.2rem;
    color: #361D10;
    bottom: inherit;
    right: inherit;
    margin-top: 2rem;
  }
}

.p-abouthotel-facilities__top .text {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.7;
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  text-align: right;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__top .text {
    font-size: 1.4rem;
    margin: 1.5rem 0 0 0;
    position: inherit;
    bottom: inherit;
    right: inherit;
    text-align: left;
    color: #361D10;
    font-family: "Zen Kaku Gothic Antique", sans-serif !important;
  }
}

.p-abouthotel-facilities__bottom {
  margin-top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom {
    margin-top: 4rem;
  }
}

.p-abouthotel-facilities__bottom > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -3rem;
  margin-right: -3rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-abouthotel-facilities__bottom > ul > li {
  width: calc(100% / 2 - 6rem);
  margin: 0 3rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li {
    width: 100%;
    margin: 0;
  }
}

.p-abouthotel-facilities__bottom > ul > li .ttl {
  margin-top: 2.4rem;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li .ttl {
    margin-top: 1.5rem;
  }
}

.p-abouthotel-facilities__bottom > ul > li .text {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li .text {
    margin-top: 1.5rem;
  }
}

.p-abouthotel-facilities__bottom > ul > li .btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li .btnArea {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-abouthotel-facilities__bottom > ul > li .btnArea > div {
  width: calc(100% / 2 - 3rem);
  margin: 0 1.5rem;
  height: 4.4rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li .btnArea > div {
    width: 25rem;
    height: 5rem;
    margin: 0;
  }
  .p-abouthotel-facilities__bottom > ul > li .btnArea > div:nth-child(n + 2) {
    margin-top: 2rem;
  }
}

.p-abouthotel-facilities__bottom > ul > li .btnArea > div a {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #9D9282;
  color: #FFF;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.p-abouthotel-facilities__bottom > ul > li .btnArea > div a:hover {
  opacity: 0.6;
}

.p-abouthotel-facilities__bottom > ul > li:nth-child(n + 3) {
  margin-top: 9rem;
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px), print {
  .p-abouthotel-facilities__bottom > ul > li:nth-child(n + 2) {
    margin-top: 8rem;
  }
}

.p-hotspring .c-breadcrumbs ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-hotspring-inner {
  width: 86rem;
  margin: 6rem auto 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner {
    width: 100%;
    margin-top: 3rem;
  }
}

.p-hotspring-inner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-hotspring-inner__content:not(:last-of-type) {
  padding-bottom: 6rem;
  border-bottom: 0.1rem solid #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content:not(:last-of-type) {
    padding-bottom: 4rem;
    border-bottom: 0.1rem solid #9D9282;
  }
}

.p-hotspring-inner__content:nth-of-type(n + 2) {
  padding-top: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content:nth-of-type(n + 2) {
    padding-top: 4rem;
  }
}

.p-hotspring-inner__content .l-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: calc(100% - 72rem - 7rem);
  font-size: 2.8rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .l-ttl {
    width: 100%;
    font-size: 2.4rem;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-hotspring-inner__content .l-ttl span {
  font-size: 1.3rem;
  margin-left: 0.5rem;
  letter-spacing: 0;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .l-ttl span {
    font-size: 1.6rem;
    margin-left: 0;
  }
}

.p-hotspring-inner__content .r-content {
  width: 72rem;
  margin-left: 7rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content {
    width: 100%;
    margin-left: 0;
  }
}

.p-hotspring-inner__content .r-content .text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2rem;
}

.p-hotspring-inner__content .r-content .icon {
  width: 9.8rem;
  height: 3.3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  border-radius: 2.1rem;
  background-color: #9D9282;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .icon {
    margin-top: 2rem;
  }
}

.p-hotspring-inner__content .r-content .textArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .textArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-hotspring-inner__content .r-content .textArea > div {
  font-size: 1.8rem;
}

.p-hotspring-inner__content .r-content .textArea > div span {
  font-size: 1.5rem;
}

.p-hotspring-inner__content .r-content .textArea > div:last-of-type {
  margin-left: 0.5rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .textArea > div:last-of-type {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .textArea.last {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-hotspring-inner__content .r-content .list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .list-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-hotspring-inner__content .r-content .list-inner > .list {
  width: calc(100% / 2 - 4rem);
  margin: 0 2rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .list-inner > .list {
    width: 100%;
    margin: 0;
  }
}

.p-hotspring-inner__content .r-content .list-inner > .list .ttl {
  font-size: 1.8rem;
  font-weight: 600;
}

.p-hotspring-inner__content .r-content .list-inner > .list table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}

.p-hotspring-inner__content .r-content .list-inner > .list table tr th {
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.p-hotspring-inner__content .r-content .list-inner > .list table tr th::after {
  width: 100%;
  height: 0.2rem;
  background-color: #361D10;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-hotspring-inner__content .r-content .list-inner > .list table tr td {
  padding: 2rem 0;
  text-align: center;
  font-size: 1.6rem;
  position: relative;
}

.p-hotspring-inner__content .r-content .list-inner > .list table tr td::after {
  width: 100%;
  height: 0.1rem;
  background-color: #9D9282;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-hotspring-inner__content .r-content .list-inner > .list table tr td:first-of-type {
  font-weight: bold;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-inner__content .r-content .list-inner > .list:last-of-type {
    margin-top: 4rem;
  }
}

.p-hotspring-inner__content .r-content .caption {
  font-size: 1.4rem;
}

.p-hotspring-img {
  margin-top: 12rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-img {
    margin-top: 6rem;
  }
}

.p-hotspring-img > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-hotspring-desc {
  margin-top: 8rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc {
    margin-top: 6rem;
  }
}

.p-hotspring-desc > dl {
  width: 73rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc > dl {
    width: 100%;
  }
}

.p-hotspring-desc > dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc > dl > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-hotspring-desc > dl > div:nth-child(n + 2) {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc > dl > div:nth-child(n + 2) {
    margin-top: 4rem;
  }
}

.p-hotspring-desc > dl > div dt {
  width: 20%;
  font-size: 1.8rem;
  text-align: right;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc > dl > div dt {
    width: 100%;
    text-align: left;
  }
}

.p-hotspring-desc > dl > div dd {
  width: calc(100% - 20% - 2rem);
  font-size: 1.6rem;
  line-height: 1.7;
  margin-left: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-hotspring-desc > dl > div dd {
    width: 100%;
    margin-top: 1rem;
    margin-left: 0;
  }
}

.p-hotspring-desc .c-btn02 {
  margin: 5rem auto 0 auto;
}

.p-hotspring-desc .c-btn02 small {
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

.p-single {
  margin-bottom: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-single {
    margin-bottom: 8rem;
  }
}

.p-single-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-single-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-single-inner__main {
  width: 72rem;
  margin-right: 8rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main {
    width: 100%;
    margin-right: 0;
  }
}

.p-single-inner__main .article-title__date {
  font-size: 1.3rem;
}

.p-single-inner__main .wp-block-heading > h2,h1 {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .wp-block-heading > h2,h1 {
    font-size: 2rem;
  }
}

.p-single-inner__main .article-desc {
  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;
  margin-top: 0.5rem;
}

.p-single-inner__main .article-desc__keyword ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.7rem;
  margin-right: -0.7rem;
}

.p-single-inner__main .article-desc__keyword ul li {
  margin: 0 0.7rem;
}

.p-single-inner__main .article-desc__keyword ul li a {
  color: #9D9282;
  font-size: 1.4rem;
}

.p-single-inner__main .article-desc__keyword ul li a:hover {
  opacity: 0.6;
}

.p-single-inner__main .article-desc__category a {
  color: #FFF;
  background-color: #9D9282;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 1rem;
}

.p-single-inner__main .article-desc__category a:hover {
  background-color: #FFF;
  color: #9D9282;
}

.p-single-inner__main .post-thumbnail {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .post-thumbnail {
    margin-top: 2rem;
  }
}

.p-single-inner__main .post-thumbnail figure {
  width: 100%;
  height: 41rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .post-thumbnail figure {
    height: 20rem;
  }
}

.p-single-inner__main .post-thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-inner__main .article-content {
  margin-top: 5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif !important;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-content {
    margin-top: 4rem;
  }
}

.p-single-inner__main .article-content > h2 {
  font-size: 2rem;
  padding: 1.5rem 0;
  border-top: 0.1rem solid #9D9282;
  border-bottom: 0.1rem solid #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-content > h2 {
    font-size: 1.8rem;
  }
}

.p-single-inner__main .article-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 4rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-content p {
    margin-top: 2rem;
  }
}

.p-single-inner__main .article-content a {
  display: inline-block;
  color: #9D9282;
  margin-top: 4rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-content a {
    margin-top: 2rem;
  }
}

.p-single-inner__main .article-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 0.1rem;
  background-color: #9D9282;
}

.p-single-inner__main .article-content a:hover {
  opacity: 0.6;
}

.p-single-inner__main .article-nav {
  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;
  margin-top: 5rem;
}

.p-single-inner__main .article-nav__prev {
  min-width: 9rem;
}

.p-single-inner__main .article-nav__prev a {
  position: relative;
  color: #9D9282;
  padding-left: 2.5rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-nav__prev a {
    font-size: 1.5rem;
  }
}

.p-single-inner__main .article-nav__prev a::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1rem;
  background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.p-single-inner__main .article-nav__prev a:hover {
  opacity: 0.6;
}

.p-single-inner__main .article-nav__list a {
  width: 23rem;
  height: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  color: #FFF;
  background-color: #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-nav__list a {
    width: inherit;
    height: 3rem;
    padding: 0.2rem 2rem;
  }
}

.p-single-inner__main .article-nav__list a:hover {
  opacity: 0.6;
}

.p-single-inner__main .article-nav__next {
  min-width: 9rem;
}

.p-single-inner__main .article-nav__next a {
  position: relative;
  color: #9D9282;
  padding-right: 2.5rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__main .article-nav__next a {
    font-size: 1.5rem;
  }
}

.p-single-inner__main .article-nav__next a::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1rem;
  background: url(images/common/ic_arrow_news.svg) no-repeat center center/99% 99%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-single-inner__main .article-nav__next a:hover {
  opacity: 0.6;
}

.p-single-inner__side {
  width: calc(100% - 72rem - 8rem);
}

@media screen and (max-width: 767px), print {
  .p-single-inner__side {
    width: 100%;
    margin-top: 5rem;
  }
}

.p-single-inner__side > .title {
  font-size: 2.2rem;
  position: relative;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__side > .title {
    font-size: 1.8rem;
  }
}

.p-single-inner__side > .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 0.1rem;
  background-color: #9D9282;
}

.p-single-inner__side ul {
  margin-top: 2.5rem;
}

.p-single-inner__side ul.new-list li:nth-child(n + 2) {
  margin-top: 3rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__side ul.new-list li:nth-child(n + 2) {
    margin-top: 1.5rem;
  }
}

.p-single-inner__side ul.new-list li a {
  color: #361D10;
}

.p-single-inner__side ul.new-list li a:hover {
  opacity: 0.6;
}

.p-single-inner__side ul .new-list__date {
  font-size: 1.4rem;
  color: #9D9282;
}

.p-single-inner__side ul .new-list__ttl {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.5rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__side ul .new-list__ttl {
    margin-top: 0;
  }
}

.p-single-inner__side ul.related-list li {
  position: relative;
}

.p-single-inner__side ul.related-list li:nth-child(n + 2) {
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-single-inner__side ul.related-list li:nth-child(n + 2) {
    margin-top: 1.5rem;
  }
}

.p-single-inner__side ul.related-list li a {
  color: #361D10;
}

.p-single-inner__side ul.related-list li a:hover {
  opacity: 0.6;
}

.p-single-inner__side ul .related-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.p-single-inner__side ul .related-list__link {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-single-inner__side ul .related-list__link:hover + .related-list__inner {
  opacity: 0.6;
}

.p-single-inner__side ul .related-list__thum {
  margin-right: 1.5rem;
}

.p-single-inner__side ul .related-list__thum figure {
  width: 7.6rem;
  height: 7.6rem;
  overflow: hidden;
}

.p-single-inner__side ul .related-list__thum figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-inner__side ul .related-list__content {
  width: calc(100% - 7.6rem - 1.5rem);
}

.p-single-inner__side ul .related-list__desc {
  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;
}

.p-single-inner__side ul .related-list__desc .date {
  font-size: 1.4rem;
}

.p-single-inner__side ul .related-list__desc .category {
  position: relative;
  z-index: 2;
}

.p-single-inner__side ul .related-list__desc .category a {
  display: block;
  font-size: 1.2rem;
  color: #FFF;
  background-color: #9D9282;
  padding: 0.2rem 0.6rem;
}

.p-single-inner__side ul .related-list__desc .category a:hover {
  background-color: #FFF;
  color: #9D9282;
}

.p-single-inner__side ul .related-list__ttl {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.p-contact {
  margin-bottom: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-contact {
    margin-bottom: 8rem;
  }
}

.p-contact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px), print {
  .p-contact-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-contact-title .c-ttl01 {
    font-size: 3.8rem;
  }
  .p-contact-title .c-breadcrumbs {
    margin-left: auto;
  }
}

.p-contact-inner {
  margin-top: 11rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner {
    margin-top: 5rem;
  }
}

.p-contact-inner__desc {
  padding: 3rem 0;
  border-top: 0.2rem solid #9D9282;
  border-bottom: 0.2rem solid #9D9282;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__desc {
    padding: 2rem 0;
  }
}

.p-contact-inner__desc .desc-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-inner__desc .desc-content__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__desc .desc-content__ttl {
    font-size: 2rem;
  }
}

.p-contact-inner__desc .desc-content__tel {
  font-size: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__desc .desc-content__tel {
    font-size: 3rem;
  }
}

.p-contact-inner__desc .desc-content__tel .title {
  line-height: 1.6;
}

.p-contact-inner__desc .desc-content__tel .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  margin-left: 1rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__desc .desc-content__tel .number {
    margin-left: 0.5rem;
  }
}

.p-contact-inner__desc .desc-content__tel .number a {
  color: #361D10;
}

.p-contact-inner__desc .desc-content__tel .number span {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__desc .desc-content__tel .number span {
    font-size: 1.6rem;
  }
}

.p-contact-inner__form {
  width: 80rem;
  margin: 7.5rem auto 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form {
    width: 100%;
    margin-top: 5rem;
  }
}

.p-contact-inner__form .form__ttl {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__ttl {
    font-size: 2rem;
  }
}

.p-contact-inner__form .form__text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__text {
    margin-top: 1rem;
  }
}

.p-contact-inner__form .form__text span {
  color: #E31132;
}

.p-contact-inner__form .form__content {
  margin-top: 6.5rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content {
    margin-top: 4rem;
  }
}

.p-contact-inner__form .form__content dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content dl > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-contact-inner__form .form__content dl > div:not(:last-of-type) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-inner__form .form__content dl > div:not(:last-of-type) > dd {
  height: 6rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content dl > div:not(:last-of-type) > dd {
    height: 5rem;
  }
}

.p-contact-inner__form .form__content dl > div:not(:last-of-type) > dd span {
  margin-top: 0.5rem;
}

.p-contact-inner__form .form__content dl > div:last-of-type > dd {
  height: 18rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content dl > div:last-of-type > dd {
    height: 15rem;
  }
}

.p-contact-inner__form .form__content dl > div:last-of-type > dd span {
  margin-top: 0rem;
}

.p-contact-inner__form .form__content dl > div:nth-child(n + 2) {
  margin-top: 4rem;
}

.p-contact-inner__form .form__content dl > div dt {
  width: calc(100% - 59rem - 3rem);
  margin-right: 3rem;
  text-align: right;
  letter-spacing: 0.05em;
}

.p-contact-inner__form .form__content dl > div dt span {
  color: #E31132;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content dl > div dt {
    width: 100%;
    text-align: left;
    margin-right: 0;
  }
}

.p-contact-inner__form .form__content dl > div dd {
  width: 59rem;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__content dl > div dd {
    width: 100%;
    margin-top: 1rem;
  }
}

.p-contact-inner__form .form__content dl > div dd span {
  font-size: 1.3rem;
  color: #E31132;
  display: block;
}

.p-contact-inner__form .form__content dl p,
.p-contact-inner__form .form__content dl p span {
  width: 100%;
  height: 100%;
}

.p-contact-inner__form .form__content dl.confirm p,
.p-contact-inner__form .form__content dl.confirm p span {
  width: 100%;
  height: 6rem;
  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
.p-contact-inner__form .form__content dl.confirm p,
.p-contact-inner__form .form__content dl.confirm p span {
  height: 100%;
}
}

.p-contact-inner__form .form__content dl > div dd input, .input-user-name {
  width: 100%;
  height: 100%;
  border: 0.1rem solid #AC9A91;
  background: none;
  outline: none;
  padding: 0 2rem;
}

.p-contact-inner__form .form__content dl > div dd input::-webkit-input-placeholder {
  color: #AC9A91;
  font-family: "Shippori Mincho B1", serif !important;
}

.p-contact-inner__form .form__content dl > div dd input:-ms-input-placeholder {
  color: #AC9A91;
  font-family: "Shippori Mincho B1", serif !important;
}

.p-contact-inner__form .form__content dl > div dd input::-ms-input-placeholder {
  color: #AC9A91;
  font-family: "Shippori Mincho B1", serif !important;
}

.p-contact-inner__form .form__content dl > div dd input::placeholder {
  color: #AC9A91;
  font-family: "Shippori Mincho B1", serif !important;
}

.p-contact-inner__form .form__content dl > div dd textarea {
  width: 100%;
  height: 100%;
  border: 0.1rem solid #AC9A91;
  background: none;
  padding: 2rem;
  outline: none;
}

.p-contact-inner__form .form__privacy {
  margin-top: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__privacy {
    margin-top: 4rem;
  }
}

.p-contact-inner__form .form__privacy label {
  position: relative;
  display: inline-block;
  padding-left: 5rem;
}

.p-contact-inner__form .form__privacy label input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.p-contact-inner__form .form__privacy label input::before, .p-contact-inner__form .form__privacy label input::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  content: "";
  background: #EEEEEC;
  border: 1px solid #9D9282;
}

.p-contact-inner__form .form__privacy label input::after {
  display: none;
  background: url(images/common/ic_check.png) no-repeat center center/1.7rem 1.2rem;
  border: none;
}

.p-contact-inner__form .form__privacy label input:checked::after {
  display: block;
}

.p-contact-inner__form .form__privacy a {
  color: #9D9282;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  text-decoration-thickness: 0.1rem;
}

.p-contact-inner__form .form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}

.p-contact-inner__form .form__btn > div:nth-of-type(n + 2) {
  margin-left: 2rem;
}

.p-contact-inner__form .form__btn--confirm p {
  width: 100%;
  height: 5rem;
}

.p-contact-inner__form .form__btn--confirm, .p-contact-inner__form .form__btn--submit {
  width: 32rem;
  height: 7rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--confirm, .p-contact-inner__form .form__btn--submit {
    width: 48%;
    height: 5rem;
  }
}

.p-contact-inner__form .form__btn--confirm::after, .p-contact-inner__form .form__btn--submit::after {
  content: "";
  position: absolute;
  right: 3.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(images/common/ic_submit.svg);
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 3rem;
  background-size: contain;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--confirm::after, .p-contact-inner__form .form__btn--submit::after {
    right: 1.5rem;
    width: 2.5rem;
    height: 2rem;
  }
}

.p-contact-inner__form .form__btn--confirm input, .p-contact-inner__form .form__btn--submit p {
  height: 100%;
}

.p-contact-inner__form .form__btn--confirm input, .p-contact-inner__form .form__btn--submit input {
  width: 100%;
  height: 100%;
  background-color: #9D9282;
  font-size: 1.8rem;
  color: #FFF;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--confirm input, .p-contact-inner__form .form__btn--submit input {
    font-size: 1.6rem;
  }
}

.p-contact-inner__form .form__btn--confirm input:hover, .p-contact-inner__form .form__btn--submit input:hover {
  opacity: 0.6;
}

.p-contact-inner__form .form__btn--confirm {
  width: 100%;
  height: 5rem;
}

.p-contact-inner__form .form__btn--back p {
  height: 100%;
}

.p-contact-inner__form .form__btn--back {
  width: 32rem;
  height: 7rem;
  position: relative;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--back {
    width: 48%;
    height: 5rem;
  }
}

.p-contact-inner__form .form__btn--back::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(images/common/ic_back.svg);
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 3rem;
  background-size: contain;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--back::after {
    left: 1.5rem;
    width: 2.5rem;
    height: 2rem;
  }
}

.p-contact-inner__form .form__btn--back p input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0.15rem solid #9D9282;
  font-size: 1.8rem;
  color: #9D9282;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media screen and (max-width: 767px), print {
  .p-contact-inner__form .form__btn--back input {
    font-size: 1.6rem;
  }
}

.p-contact-inner__form .form__btn--back input:hover {
  opacity: 0.6;
}

.p-contact-inner__form.confirm .form__content dl > div dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-inner__form.confirm .form__content dl > div:last-of-type dd {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
}

.p-contact-inner__form.thanks .form__text {
  margin-top: 2rem;
}

.p-policy {
  counter-reset: number 0;
  letter-spacing: 0.08rem;
  margin-bottom: 14rem;
}

@media screen and (max-width: 767px), print {
  .p-policy {
    margin-bottom: 8rem;
  }
}

.p-policy-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px), print {
  .p-policy-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-policy-title .c-ttl01 {
    font-size: 3.8rem;
  }
  .p-policy-title .c-breadcrumbs {
    margin-left: auto;
  }
}

.p-policy-inner {
  width: 90rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px), print {
  .p-policy-inner {
    width: 100%;
  }
}

.p-policy-inner__contain {
  margin-top: 3rem;
}

.p-policy-inner__contain .section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px), print {
  .p-policy-inner__contain .section-title {
    font-size: 1.8rem;
  }
}

.p-policy-inner__contain .section-title::before {
  counter-increment: number 1;
  content: counter(number) ".";
}

.p-policy-inner__contain li {
  margin-left: 1.5rem;
  text-indent: -1.5rem;
}
/*# sourceMappingURL=styles.css.map */
