@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
* Variables
*/
:root {
  /* family: */
  --font-family-text: "Noto Sans JP", sans-serif;
  --font-family-title: "Noto Serif JP", serif;
  --font-family-en: "Noto Sans JP", sans-serif;
  /* Colors: */
  --text-color: #3e3a39;
  --text-dark-color: #c8c9ca;
  --loud-color: #f39800;
  --title-color: #3e3a39;
  --menu-color: #FFFFFF;
  --primary-btn-color: #FFFFFF;
  /* background: */
  --background-primary-btn: #f29600;
  --background-loud: #f3ede3;
  --background-footer: #bca788;
  /* size */
  --base-font-size: 1.6rem;
  --h1-font-size: 3.5rem;
  --h2-font-size: 3.5rem;
  --h3-font-size: 3rem;
  --h4-font-size: 3rem; }

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
  .class {
    width: 60%; } }

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

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

/*
 * reset
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

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

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-size: var(--base-font-size);
  font-family: var(--font-family-text); }

input {
  padding: 0;
  font-family: var(--font-family-text);
  font-size: var(--base-font-size); }

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.4; }

h1 {
  font-size: var(--h1-font-size); }

h2 {
  font-size: var(--h2-font-size); }

h3 {
  font-size: var(--h3-font-size); }

h4 {
  font-size: var(--h4-font-size); }

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: var(--text-color);
  text-decoration: none; }
  a:visited {
    color: var(--text-color);
    text-decoration: none; }
  a:hover, a:visited:hover {
    color: var(--loud-color);
    text-decoration: none; }
  a:focus {
    outline: none;
    text-decoration: none; }

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out; }

.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 24.8rem;
  height: 5rem;
  background: #f39800;
  border-radius: 5rem;
  color: #FFFFFF !important;
  font-weight: 700; }
  .btn-primary:hover {
    background: #000; }

.nav-bar-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem; }
  .nav-bar-menu ul li {
    position: relative; }
    .nav-bar-menu ul li::after {
      content: '/';
      color: #FFFFFF;
      position: absolute;
      top: 50%;
      right: -1.75rem;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
    .nav-bar-menu ul li a {
      display: block;
      font-size: 1.3rem;
      color: #FFFFFF;
      font-family: var(--font-family-title);
      transition: all 300ms ease-in-out;
      -webkit-transition: all 300ms ease-in-out;
      -moz-transition: all 300ms ease-in-out;
      -o-transition: all 300ms ease-in-out; }
      .nav-bar-menu ul li a:hover {
        color: var(--loud-color); }
    .nav-bar-menu ul li:last-child::after {
      display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-arrow {
  position: absolute;
  top: 17rem;
  text-indent: -9999px;
  width: 3.6rem;
  height: 17.5rem; }
  .slick-arrow.slick-prev {
    left: 0;
    background-image: url("../images/slick-prev.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain; }
  .slick-arrow.slick-next {
    right: 0;
    background-image: url("../images/slick-next.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  -o-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); } }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right)); } } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px; }

body {
  background: #fff;
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 2;
  overflow-x: hidden;
  font-weight: 500;
  letter-spacing: 0;
  width: 100%; }

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
     border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0; }

.container {
  width: 100%;
  max-width: 103rem;
  padding: 0 1.5rem;
  margin: 0 auto; }

p {
  margin-bottom: 1.5rem; }

input:focus {
  outline: none; }

a img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out; }
  a img:hover {
    opacity: 0.7; }

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

iframe {
  width: 100%;
  vertical-align: middle; }

.d-block {
  display: block !important; }

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: start !important;
      -ms-flex-align: start !important;
          align-items: start !important; }

.error {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #ff0000; }

#result input.error {
  border-color: #e41919; }

#result div.error {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(228, 25, 25, 0.75);
  color: #fff; }

#result div.success {
  margin-top: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(50, 178, 95, 0.75);
  color: #fff; }

.loader_wrap {
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: white;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0; }

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.head-box {
  text-align: center;
  margin-bottom: 8rem;
  padding-bottom: 2.5rem;
  position: relative; }
  .head-box::after {
    content: '';
    width: 8.4rem;
    height: 3px;
    background-image: url("../images/line.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
  .head-box p {
    margin-bottom: 2rem;
    font-size: 3.5rem;
    line-height: 1;
    color: #c8c9ca; }

.entry-head {
  margin-bottom: 8rem;
  text-align: center; }
  .entry-head p {
    padding-bottom: 2rem;
    margin-bottom: 5rem;
    font-size: 4.4rem;
    line-height: 1;
    color: #c8c9ca;
    position: relative;
    font-family: var(--font-family-title); }
    .entry-head p::after {
      content: '';
      width: 8.4rem;
      height: 3px;
      background-image: url("../images/line.webp");
      background-position: 0 0;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
  .entry-head h2 {
    font-size: 4.5rem;
    font-weight: 500; }
  .entry-head__txt {
    margin-top: 3rem;
    font-family: var(--font-family-title); }

@media (max-width: 575px) {
  .entry-head p {
    font-size: 3.4rem; }
  .entry-head h2 {
    font-size: 3.5rem; } }

.header {
  background: #231815; }
  .header__main {
    padding: 2rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__main .logo {
      width: 41.1rem; }

.header-top {
  position: absolute;
  width: 100%;
  z-index: 999; }
  .header-top__main {
    padding: 1.5rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .header-top__main .logo {
      width: 33.5rem; }
    .header-top__main--btn {
      display: grid;
      gap: 1.7rem;
      grid-template-columns: repeat(2, 19rem); }

@media (max-width: 768px) {
  .header__main {
    padding: 2rem 0;
    gap: 2rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start; }
    .header__main .logo {
      width: 41.1rem; } }

@media (max-width: 575px) {
  .header-top__main--btn {
    display: none; } }

.breadcrumb-box {
  padding: 3rem 0; }
  .breadcrumb-box__main ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    justify-self: start; }
    .breadcrumb-box__main ul li {
      font-size: 1.2rem; }
      .breadcrumb-box__main ul li a {
        color: var(--loud-color);
        font-size: 1.2rem; }
      .breadcrumb-box__main ul li + li::before {
        padding: 0 1.2rem;
        content: ">";
        color: var(--text-color) !important; }

.contact-box {
  padding: 11rem 0 21rem; }
  .contact-box__main--head {
    margin-bottom: 8rem; }
    .contact-box__main--head p {
      margin-bottom: 1.5rem;
      line-height: 3rem; }
      .contact-box__main--head p a {
        color: var(--loud-color);
        font-weight: 700;
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding-left: 9rem;
        background-image: url("../images/arow-right.webp");
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 7.42536rem auto; }
        .contact-box__main--head p a:hover {
          opacity: 0.7; }

.contact-form {
  -webkit-box-shadow: 4px 4px 3px rgba(44, 44, 44, 0.3);
          box-shadow: 4px 4px 3px rgba(44, 44, 44, 0.3);
  padding: 5rem; }
  .contact-form .title {
    margin: 4rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem; }
    .contact-form .title span {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0 1.5rem;
      background: #9f8130;
      line-height: 3.7rem;
      color: #FFFFFF;
      font-weight: 700;
      min-width: 16.5rem; }
    .contact-form .title p {
      margin-bottom: 0; }
    .contact-form .title:first-child {
      margin-top: 0; }
  .contact-form .form-group {
    padding: 2rem 5rem;
    border-top: 1px solid #b4b4b5;
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    grid-template-columns: 18.5rem 1fr; }
    .contact-form .form-group.last-child {
      border-bottom: 1px solid #b4b4b5; }
    .contact-form .form-group .labels {
      font-weight: 700;
      line-height: 2.3rem; }
      .contact-form .form-group .labels b {
        color: #c30d23; }
    .contact-form .form-group .input {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 3rem;
      row-gap: 1.4rem; }
      .contact-form .form-group .input label,
      .contact-form .form-group .input span {
        font-size: 1.4rem;
        white-space: nowrap; }
      .contact-form .form-group .input__items {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 1rem; }
      .contact-form .form-group .input__itemswrap {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        gap: 1rem; }
      .contact-form .form-group .input p {
        margin-bottom: 0;
        line-height: 1; }
        .contact-form .form-group .input p.note {
          color: #c30d23;
          width: 100%; }
      .contact-form .form-group .input__wrap {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 3rem;
        row-gap: 1.4rem; }
    .contact-form .form-group.required .labels {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1rem; }
      .contact-form .form-group.required .labels::after {
        content: '必須';
        font-size: 1.2rem;
        color: #FFFFFF;
        font-weight: 700;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        width: 4rem;
        height: 1.8rem;
        background: #f39800; }
  .contact-form .form-group-des {
    text-align: center;
    color: #c30d23;
    font-weight: 700;
    margin-bottom: 4rem; }
  .contact-form .form-group-img {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
    padding: 0 11.5rem; }
    .contact-form .form-group-img picture {
      display: block;
      margin-bottom: 1.5rem; }
    .contact-form .form-group-img h3 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      font-size: 1.5rem;
      line-height: 2.2rem;
      min-height: 4.4rem;
      margin-bottom: 1.5rem; }
    .contact-form .form-group-img p {
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
      line-height: 2.2rem;
      text-align: center; }
    .contact-form .form-group-img .note {
      font-size: 1.2rem;
      line-height: 1.6rem;
      color: #c30d23; }
      .contact-form .form-group-img .note:last-child {
        margin-top: 1rem; }
  .contact-form .no-need .input label {
    font-size: 1.6rem; }
  .contact-form .your-mes {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .contact-form .your-mes .input p {
      line-height: 1.5; }
    .contact-form .your-mes .input a {
      color: #c30d23; }
  .contact-form select,
  .contact-form textarea,
  .contact-form input[type='text'],
  .contact-form input[type='date'],
  .contact-form input[type='email'] {
    width: 100%;
    max-width: 48rem;
    height: 3.7rem;
    border: none;
    background: #eeeeef;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 1.6rem;
    padding: 0 1.5rem; }
    .contact-form select:focus,
    .contact-form textarea:focus,
    .contact-form input[type='text']:focus,
    .contact-form input[type='date']:focus,
    .contact-form input[type='email']:focus {
      outline: none;
      outline: 0; }
    .contact-form select::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder, .contact-form input[type='text']::-webkit-input-placeholder, .contact-form input[type='date']::-webkit-input-placeholder, .contact-form input[type='email']::-webkit-input-placeholder {
      color: #A3A3A3; }
    .contact-form select::-moz-placeholder, .contact-form textarea::-moz-placeholder, .contact-form input[type='text']::-moz-placeholder, .contact-form input[type='date']::-moz-placeholder, .contact-form input[type='email']::-moz-placeholder {
      color: #A3A3A3; }
    .contact-form select:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder, .contact-form input[type='text']:-ms-input-placeholder, .contact-form input[type='date']:-ms-input-placeholder, .contact-form input[type='email']:-ms-input-placeholder {
      color: #A3A3A3; }
    .contact-form select::-ms-input-placeholder, .contact-form textarea::-ms-input-placeholder, .contact-form input[type='text']::-ms-input-placeholder, .contact-form input[type='date']::-ms-input-placeholder, .contact-form input[type='email']::-ms-input-placeholder {
      color: #A3A3A3; }
    .contact-form select::placeholder,
    .contact-form textarea::placeholder,
    .contact-form input[type='text']::placeholder,
    .contact-form input[type='date']::placeholder,
    .contact-form input[type='email']::placeholder {
      color: #A3A3A3; }
  .contact-form textarea {
    min-height: 29rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    vertical-align: middle; }
  .contact-form input[name='your-company'],
  .contact-form input[name='your-department'],
  .contact-form input[name='your-name'],
  .contact-form input[name='your-furigana'] {
    max-width: 23rem; }
  .contact-form input[name='your-code'],
  .contact-form input[name='your-code-end'] {
    max-width: 13.8rem; }
  .contact-form input[name='your-address'],
  .contact-form input[name='your-address-end'] {
    max-width: 37.7rem; }
  .contact-form input[name='flight-number-used'] {
    max-width: 29.3rem; }
  .contact-form input[name='transit-point'] {
    max-width: 22.9rem; }
  .contact-form input[name='number-devices-used'],
  .contact-form input[name='number-users'],
  .contact-form input[name='number-users-2'],
  .contact-form input[name='number-items'],
  .contact-form input[name='number-items-2'],
  .contact-form input[name='no-need-2'],
  .contact-form input[name='no-need-3'],
  .contact-form input[name='no-need-4'] {
    max-width: 8.5rem; }
  .contact-form input[name='your-nameplate-3'] {
    max-width: 37.7rem;
    margin-bottom: 1rem; }
  .contact-form input[name='your-file'] {
    margin: 1rem 0; }

.privacy-box {
  position: relative;
  background: #efefef;
  padding: 4rem;
  margin-top: 7rem;
  margin-bottom: 6rem; }
  .privacy-box span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 21.1rem;
    height: 3.5rem;
    background: #3e3a39;
    border-radius: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .privacy-box p {
    margin-bottom: 1rem;
    line-height: 2.5rem; }
    .privacy-box p:last-child {
      margin-bottom: 0; }

.policy-box {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem; }
  .policy-box p {
    margin-bottom: 1rem; }
  .policy-box a {
    color: var(--loud-color); }

.more-box {
  text-align: center; }
  .more-box .more-submit {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 28.5rem;
    height: 5.7rem;
    border-radius: 5.7rem;
    background: #f29600;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF !important; }
    .more-box .more-submit:hover {
      background: #000; }
    .more-box .more-submit:disabled {
      pointer-events: none;
      cursor: none;
      opacity: 0.3; }

.cf-box {
  display: none; }

.confirmation {
  text-align: center;
  margin-bottom: 2rem; }
  .confirmation span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 16.3rem;
    height: 3.7rem;
    color: #FFFFFF;
    font-weight: 700;
    background: #c30d23; }

.thanks-box h3 {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 3.5rem; }

.thanks-box p {
  margin-bottom: 8rem;
  line-height: 3rem; }

.thanks-box .more-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem; }

.scrollTop .container {
  position: relative; }

.scrollTop__main {
  position: absolute;
  top: -10rem;
  right: 1.5rem;
  width: 9.5rem;
  cursor: pointer; }

.banner__main {
  position: relative;
  min-height: 100vh;
  height: 80rem;
  overflow: hidden;
  background: #111;
  z-index: 10; }
  .banner__main--video {
    position: absolute;
    inset: 0; }
    .banner__main--video .fv-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .banner__main--text {
    position: absolute;
    bottom: 8.5rem;
    width: 100%; }
    .banner__main--text .container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .banner__main--text .container h1 {
        line-height: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 1.7rem; }
        .banner__main--text .container h1 span {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          padding: 0 .5rem;
          background: #eb6d80;
          line-height: 4.4rem;
          font-size: 4.3rem;
          font-weight: 500;
          color: #FFFFFF; }
          .banner__main--text .container h1 span b {
            font-weight: 500;
            color: #fff100; }

.popularity-box {
  background: #f4f3f1;
  padding: 12rem 0 0;
  overflow: hidden; }
  .popularity-box__main {
    padding: 0 5rem;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr); }
  .popularity-box__about {
    padding-top: 9rem;
    padding-left: 5rem; }
    .popularity-box__about--head {
      margin-bottom: 3rem;
      position: relative; }
      .popularity-box__about--head figure {
        width: 100%;
        max-width: 82.5rem; }
      .popularity-box__about--head h3 {
        position: absolute;
        top: 7rem;
        left: 0;
        padding-bottom: 2rem;
        font-size: 4.4rem;
        line-height: 1;
        color: #c8c9ca;
        font-family: var(--font-family-title); }
        .popularity-box__about--head h3::after {
          content: '';
          width: 8.4rem;
          height: 3px;
          background-image: url("../images/line.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          bottom: 0;
          left: 0; }
    .popularity-box__about--main {
      position: relative;
      padding-right: 38.5rem; }
      .popularity-box__about--main .text p {
        line-height: 2.8rem;
        font-family: var(--font-family-title); }
      .popularity-box__about--main figure {
        width: 100%;
        max-width: 47.1rem;
        position: absolute;
        top: 0;
        right: -10rem; }

.strengths-box {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background: #f4f3f1; }
  .strengths-box__main {
    background: #FFFFFF;
    border: 1px solid #b5b5b6;
    padding: 6rem 5rem; }
    .strengths-box__main--strengths {
      margin-bottom: 7rem; }
      .strengths-box__main--strengths ul li {
        font-size: 2.6rem;
        line-height: 4.5rem;
        border-bottom: 1px solid #9fa0a0;
        padding: 2rem 0 2rem 8rem;
        font-family: var(--font-family-title);
        position: relative; }
        .strengths-box__main--strengths ul li::before {
          content: '';
          width: 2.63168rem;
          height: 2.33623rem;
          background-image: url("../images/icon-check.webp");
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          top: 3rem;
          left: 3rem; }
    .strengths-box__main--merit .point {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #f9f8f8;
      position: relative;
      margin-bottom: 11.5rem; }
      .strengths-box__main--merit .point::before {
        content: '';
        width: 100%;
        height: 1px;
        background: #9fa0a0;
        position: absolute;
        left: 0;
        top: 50%; }
      .strengths-box__main--merit .point::after {
        content: '';
        width: 20.13393rem;
        height: 3.41253rem;
        background-image: url("../images/icon-arows.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 50%;
        bottom: -8.5rem;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); }
      .strengths-box__main--merit .point__items {
        padding: 3rem 1rem;
        text-align: center;
        border-right: 1px solid #9fa0a0; }
        .strengths-box__main--merit .point__items--labels {
          display: grid;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font-size: 3.5rem;
          font-weight: 700;
          color: #eb6d80;
          line-height: 1;
          position: relative;
          padding-bottom: 1rem;
          margin-bottom: 3rem; }
          .strengths-box__main--merit .point__items--labels::after {
            content: '';
            width: 3.5rem;
            height: 1px;
            background: #f8c058;
            position: absolute;
            bottom: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                    transform: translateX(-50%); }
          .strengths-box__main--merit .point__items--labels span {
            font-size: 1.4rem; }
        .strengths-box__main--merit .point__items:nth-child(4), .strengths-box__main--merit .point__items:nth-child(8) {
          border-right: none; }
        .strengths-box__main--merit .point__items--title {
          text-align: center;
          line-height: 0;
          margin-bottom: 2rem; }
          .strengths-box__main--merit .point__items--title span {
            display: -webkit-inline-box;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            text-align: center;
            width: 12.4rem;
            height: 3.8rem;
            font-size: 4rem;
            line-height: 1;
            font-family: var(--font-family-title);
            background-image: url("../images/icon-title.webp");
            background-position: 0 0;
            background-repeat: no-repeat;
            background-size: contain; }
        .strengths-box__main--merit .point__items--txt {
          font-weight: 700;
          line-height: 2.2rem; }
    .strengths-box__main--merit .des {
      text-align: center;
      font-size: 2rem;
      line-height: 3.5rem;
      color: #c30d23; }

.plan-box {
  padding-top: 10rem; }
  .plan-box__main--items {
    margin-bottom: 8rem; }
    .plan-box__main--items:last-child {
      margin-bottom: 0; }
    .plan-box__main--items .list {
      padding: 5rem 4rem;
      border: 1px solid #9fa0a0;
      margin-bottom: 1.5rem;
      display: grid;
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start;
      gap: 1.5rem;
      grid-template-columns: 20.9rem 1fr;
      position: relative;
      -webkit-box-shadow: 4px 4px 4px rgba(67, 65, 65, 0.3);
              box-shadow: 4px 4px 4px rgba(67, 65, 65, 0.3); }
      .plan-box__main--items .list__span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 0 3rem;
        background: #3e3a39;
        line-height: 3.8rem;
        border-radius: 3.8rem;
        font-size: 2.4rem;
        color: #FFFFFF;
        font-weight: 700;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .plan-box__main--items .list__text main {
        margin-bottom: 5rem; }
        .plan-box__main--items .list__text main:last-child {
          margin-bottom: 0; }
      .plan-box__main--items .list__text--labels {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-bottom: 2rem;
        border: 1px solid #3e3a39;
        padding: 0 3rem;
        line-height: 3.1rem;
        font-size: 2.2rem; }
        .plan-box__main--items .list__text--labels span {
          color: #c30d23; }
      .plan-box__main--items .list__text h3 {
        margin-bottom: 2.5rem;
        font-size: 2.6rem;
        font-weight: 500; }
        .plan-box__main--items .list__text h3 span {
          font-style: italic; }
      .plan-box__main--items .list__text--des {
        background: #f4f3f1;
        padding: 0 2.5rem 2rem; }
        .plan-box__main--items .list__text--des .labels {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          gap: 1.4rem; }
          .plan-box__main--items .list__text--des .labels span {
            display: -webkit-inline-box;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            padding: 0 1rem;
            line-height: 2.2rem;
            background: #eb6d80;
            border-radius: 2.2rem;
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-top: -1.1rem;
            margin-bottom: .5rem;
            position: relative; }
            .plan-box__main--items .list__text--des .labels span::after {
              content: '';
              width: .52803rem;
              height: .89104rem;
              background-image: url("../images/icon-arows-right.webp");
              background-position: 0 0;
              background-repeat: no-repeat;
              background-size: contain;
              position: absolute;
              top: 50%;
              right: -1rem;
              -webkit-transform: translateY(-50%);
                  -ms-transform: translateY(-50%);
                      transform: translateY(-50%); }
            .plan-box__main--items .list__text--des .labels span:last-child::after {
              display: none; }
        .plan-box__main--items .list__text--des p {
          margin-bottom: 0;
          line-height: 2.2rem; }
      .plan-box__main--items .list__text--price {
        text-align: right;
        font-size: 4.3rem;
        color: #c30d23;
        font-family: var(--font-family-title);
        font-style: italic;
        line-height: 1.2;
        margin-bottom: 1rem; }
        .plan-box__main--items .list__text--price span {
          font-size: 2.4rem; }
        .plan-box__main--items .list__text--price a {
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          text-align: center;
          background: #f39800;
          font-style: normal;
          width: 9.2rem;
          height: 2.2rem;
          border-radius: 2.2rem;
          font-size: 1.4rem;
          color: #FFFFFF;
          font-weight: 700;
          margin-left: 1rem; }
          .plan-box__main--items .list__text--price a:hover {
            opacity: .7; }
    .plan-box__main--items .note {
      text-align: right; }

.cta-box {
  padding: 8rem 0; }
  .cta-box__main {
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
    grid-template-columns: repeat(2, 35rem); }

.video-box {
  position: relative;
  padding-bottom: 8rem;
  overflow: hidden; }
  .video-box::after {
    content: '';
    width: 57vw;
    height: 100%;
    background: #f4f3f1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1; }
  .video-box .head {
    margin-bottom: 5rem; }
    .video-box .head h2 {
      font-size: 4.4rem;
      font-weight: 500;
      color: #c8c9ca; }
    .video-box .head p {
      margin-bottom: 0;
      font-family: var(--font-family-title); }
  .video-box__main--items {
    margin-bottom: 6rem;
    display: grid;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6rem;
    grid-template-columns: 12.9rem 1fr; }
    .video-box__main--items:last-child {
      margin-bottom: 0; }
    .video-box__main--items .video {
      margin-right: -10rem; }

.produce-box {
  padding: 8rem 0;
  background: #f4f3f1;
  overflow: hidden; }
  .produce-box__main--head {
    text-align: center;
    margin-bottom: 5rem; }
    .produce-box__main--head .des {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
      font-size: 2.3rem;
      font-weight: 700;
      color: #c30d23; }
      .produce-box__main--head .des::before, .produce-box__main--head .des::after {
        content: '';
        width: 1px;
        height: 5rem;
        background: #c30d23; }
      .produce-box__main--head .des::before {
        -webkit-transform: rotate(-20deg);
            -ms-transform: rotate(-20deg);
                transform: rotate(-20deg); }
      .produce-box__main--head .des::after {
        -webkit-transform: rotate(20deg);
            -ms-transform: rotate(20deg);
                transform: rotate(20deg); }
    .produce-box__main--head h2 {
      font-size: 4.5rem;
      margin-bottom: 2rem;
      font-weight: 500; }
    .produce-box__main--head .labels {
      margin-bottom: 2rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 1.5rem; }
      .produce-box__main--head .labels span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        position: relative;
        min-width: 22.1rem;
        padding: 0 2rem;
        background: #eb6d80;
        line-height: 4rem;
        border-radius: 4rem;
        font-size: 2.4rem;
        font-weight: 700;
        color: #FFFFFF; }
        .produce-box__main--head .labels span::after {
          content: '';
          width: 0;
          height: 0;
          border-left: .9rem solid transparent;
          border-right: .9rem solid transparent;
          border-top: 1.8rem solid #eb6d80;
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translate(-50%, 70%);
              -ms-transform: translate(-50%, 70%);
                  transform: translate(-50%, 70%); }
    .produce-box__main--head p {
      margin-bottom: 0;
      font-size: 3rem;
      font-family: var(--font-family-title); }
  .produce-box__main--post {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 1fr 43.3rem; }
    .produce-box__main--post figure {
      margin-left: -10rem;
      margin-right: -15rem; }
    .produce-box__main--post .txt {
      background: #FFFFFF;
      border: 1px solid #9fa0a0;
      padding: 2.5rem 3.5rem 5rem; }
      .produce-box__main--post .txt h3 {
        font-size: 2.3rem;
        color: #eb6d80;
        font-family: var(--font-family-text);
        margin-bottom: 1rem; }
      .produce-box__main--post .txt p {
        line-height: 2.3rem;
        font-weight: 700; }
        .produce-box__main--post .txt p span {
          background: #fff57f; }
      .produce-box__main--post .txt__btn {
        text-align: center; }

.price-box {
  padding: 74rem 0 9.5rem;
  background-image: url("../images/price-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover; }
  .price-box__main {
    background: #FFFFFF;
    padding: 5rem 2rem 7rem; }
    .price-box__main .entry-head {
      margin-bottom: 4rem; }
    .price-box__main--content .form-group-img {
      width: 100%;
      max-width: 66.6rem;
      margin: 0 auto 5rem;
      display: grid;
      gap: 3rem;
      grid-template-columns: repeat(3, 1fr);
      margin-bottom: 3rem; }
      .price-box__main--content .form-group-img picture {
        display: block;
        margin-bottom: 1.5rem; }
      .price-box__main--content .form-group-img h3 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        font-size: 1.5rem;
        line-height: 2.2rem;
        min-height: 4.4rem;
        margin-bottom: 1.5rem; }
      .price-box__main--content .form-group-img p {
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
        line-height: 2.2rem;
        text-align: center; }
      .price-box__main--content .form-group-img .note {
        font-size: 1.2rem;
        line-height: 1.6rem;
        color: #c30d23; }
        .price-box__main--content .form-group-img .note:last-child {
          margin-top: 1rem; }
    .price-box__main--content .more-box {
      display: grid;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      gap: 4.5rem;
      grid-template-columns: repeat(2, 25rem); }

.modal-box {
  display: none;
  padding: 5rem;
  width: 100%;
  max-width: 100rem; }
  .modal-box__head {
    text-align: center;
    margin-bottom: 5rem; }
    .modal-box__head h2 {
      margin-bottom: 6rem;
      font-size: 4.5rem;
      font-weight: 500; }
    .modal-box__head h3 {
      font-size: 4.5rem;
      margin-bottom: 1rem;
      font-weight: 500; }
    .modal-box__head p {
      margin-bottom: 0;
      font-size: 1.4rem;
      font-family: var(--font-family-title); }
  .modal-box__content {
    display: grid;
    gap: 1.5rem;
    row-gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem; }
    .modal-box__content--items {
      border-top: 1.2rem solid #eb6d80;
      border-left: 1px solid #9fa0a0;
      border-right: 1px solid #9fa0a0;
      border-bottom: 1px solid #9fa0a0;
      padding: 4rem 1.5rem; }
      .modal-box__content--items h3 {
        text-align: center;
        margin-bottom: 1rem;
        position: relative;
        font-size: 2.4rem;
        font-weight: 500;
        padding-bottom: 1rem; }
        .modal-box__content--items h3::after {
          content: '';
          width: 5.2rem;
          height: 1px;
          background: #f8c058;
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
      .modal-box__content--items figure {
        width: 100%;
        max-width: 20rem;
        margin: 0 auto 3rem; }
      .modal-box__content--items .txt {
        margin-bottom: 5rem;
        text-align: center; }
        .modal-box__content--items .txt_name {
          margin-bottom: .5rem;
          font-size: 1.5rem;
          line-height: 2.2rem;
          font-weight: 700;
          min-height: 4.4rem; }
        .modal-box__content--items .txt p {
          margin-bottom: 0;
          font-size: 1.4rem;
          line-height: 2rem; }
      .modal-box__content--items .tabels__items {
        padding: 1rem;
        border-bottom: 1px dotted #9fa0a0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; }
        .modal-box__content--items .tabels__items--labels {
          font-weight: 700;
          line-height: 2.5rem; }
        .modal-box__content--items .tabels__items--info {
          line-height: 2.5rem;
          font-weight: 700;
          color: #c30d23; }
        .modal-box__content--items .tabels__items:last-child {
          -webkit-box-align: end;
          -webkit-align-items: flex-end;
              -ms-flex-align: end;
                  align-items: flex-end; }
  .modal-box__bottom {
    text-align: right;
    font-size: 1.2rem;
    line-height: 3.2rem; }

.voice-box {
  padding-top: 12rem; }
  .voice-box__main {
    display: grid;
    gap: 4rem;
    row-gap: 8rem;
    grid-template-columns: repeat(2, 1fr); }
    .voice-box__main--items {
      position: relative;
      background: #f4f3f1;
      padding: 5rem 3.5rem; }
      .voice-box__main--items::after {
        content: '';
        width: 6.93697rem;
        height: 6.93697rem;
        background-image: url("../images/icon-voice.webp");
        background-position: 0 0;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .voice-box__main--items h3 {
        text-align: center;
        padding-bottom: 1rem;
        margin-bottom: 3rem;
        position: relative;
        font-size: 2.3rem;
        font-family: var(--font-family-text); }
        .voice-box__main--items h3::after {
          content: '';
          width: 11.6rem;
          height: 1px;
          background: #3e3a39;
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
      .voice-box__main--items .labels {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 2.5rem;
        margin-bottom: 3.5rem; }
        .voice-box__main--items .labels__items {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 1rem; }
          .voice-box__main--items .labels__items span {
            display: -webkit-inline-box;
            display: -webkit-inline-flex;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
                -ms-flex-pack: center;
                    justify-content: center;
            text-align: center;
            width: 6.3rem;
            height: 2.1rem;
            border: 1px solid #3e3a39;
            font-size: 1.2rem;
            line-height: 1; }
          .voice-box__main--items .labels__items p {
            margin-bottom: 0;
            line-height: 1; }
      .voice-box__main--items .txt {
        line-height: 2.5rem;
        font-weight: 700; }

.reservation-box {
  padding-top: 12rem; }
  .reservation-box__main {
    padding-left: 10.5rem;
    padding-right: 5rem; }
    .reservation-box__main--items {
      margin-bottom: 8rem;
      background: #f4f3f1;
      position: relative;
      padding: 3rem 4rem 6rem 9rem; }
      .reservation-box__main--items span {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        width: 12.6rem;
        height: 5.5rem;
        background: #eb6d80;
        border-radius: 5.5rem;
        font-size: 2rem;
        font-weight: 700;
        color: #FFFFFF;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .reservation-box__main--items p {
        margin-bottom: 1rem;
        line-height: 2.5rem;
        font-weight: 700; }
        .reservation-box__main--items p a {
          color: var(--loud-color);
          font-weight: 700;
          display: -webkit-inline-box;
          display: -webkit-inline-flex;
          display: -ms-inline-flexbox;
          display: inline-flex;
          padding-left: 9rem;
          background-image: url("../images/arow-right.webp");
          background-position: left center;
          background-repeat: no-repeat;
          background-size: 7.42536rem auto; }
          .reservation-box__main--items p a:hover {
            opacity: 0.7; }
        .reservation-box__main--items p.last-child {
          text-align: right; }
      .reservation-box__main--items:last-child {
        margin-bottom: 0; }

.precautions-box {
  padding-bottom: 29rem; }
  .precautions-box__main {
    padding: 0 5rem; }
    .precautions-box__main--content {
      background: #f4f3f1;
      padding: 5rem 7rem;
      position: relative; }
      .precautions-box__main--content .labels {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: center;
        width: 12.6rem;
        height: 5.5rem;
        background: #3e3a39;
        border-radius: 5.5rem;
        font-size: 2rem;
        color: #FFFFFF;
        font-weight: 700;
        position: absolute;
        top: 0;
        left: 7rem;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
      .precautions-box__main--content .items {
        margin-bottom: 3rem;
        position: relative; }
        .precautions-box__main--content .items::before {
          content: '⚫︎ ';
          position: absolute;
          top: 0;
          left: -2rem; }
        .precautions-box__main--content .items:last-child {
          margin-bottom: 0; }
        .precautions-box__main--content .items p {
          font-weight: 700; }
        .precautions-box__main--content .items__list {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          gap: 1.5rem;
          margin-bottom: 1.5rem;
          font-weight: 700; }
          .precautions-box__main--content .items__list span {
            white-space: nowrap; }
          .precautions-box__main--content .items__list--dote {
            border-top: 1px dotted #9fa0a0;
            -webkit-box-flex: 1;
            -webkit-flex: 1 0 0%;
                -ms-flex: 1 0 0%;
                    flex: 1 0 0%;
            width: 100%; }
        .precautions-box__main--content .items__thumb {
          display: grid;
          gap: 2.5rem;
          grid-template-columns: repeat(2, 1fr);
          margin: 2.5rem 0; }
          .precautions-box__main--content .items__thumb .video {
            width: 100%; }
            .precautions-box__main--content .items__thumb .video video {
              width: 100%;
              display: block; }

.footer {
  padding: 10rem 0 3rem;
  background: #000000;
  -webkit-clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
  position: relative; }
  .footer__flow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 2.5rem; }
    .footer__flow--main {
      padding-left: 13.5rem;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 2rem;
      background-image: url("../images/follow.webp");
      background-position: left center;
      background-repeat: no-repeat;
      background-size: 11.61656rem auto; }
      .footer__flow--main a {
        color: #FFFFFF;
        font-size: 2.5rem;
        transition: all 300ms ease-in-out;
        -webkit-transition: all 300ms ease-in-out;
        -moz-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out; }
        .footer__flow--main a:hover {
          opacity: 0.7; }
  .footer__main {
    margin-bottom: 5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer__main--logo {
      width: 23.8rem; }
    .footer__main--nav ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 3.5rem; }
      .footer__main--nav ul li {
        position: relative; }
        .footer__main--nav ul li::after {
          content: '/';
          color: #FFFFFF;
          position: absolute;
          top: 50%;
          right: -1.75rem;
          -webkit-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
                  transform: translateY(-50%); }
        .footer__main--nav ul li a {
          display: block;
          font-size: 1.3rem;
          color: #FFFFFF;
          font-family: var(--font-family-title);
          transition: all 300ms ease-in-out;
          -webkit-transition: all 300ms ease-in-out;
          -moz-transition: all 300ms ease-in-out;
          -o-transition: all 300ms ease-in-out; }
          .footer__main--nav ul li a:hover {
            color: var(--loud-color); }
        .footer__main--nav ul li:last-child::after {
          display: none; }
  .footer .copyright {
    text-align: right;
    color: #FFFFFF;
    font-family: var(--font-family-title); }

/* layout - Responsive .
========================================================================== */
.sp {
  display: none; }

@media (max-width: 992px) {
  .popularity-box__main {
    padding: 0; }
  .popularity-box__about {
    padding-left: 0; }
    .popularity-box__about--head h3 {
      top: 0; }
    .popularity-box__about--main {
      padding: 0; }
      .popularity-box__about--main figure {
        position: static; }
  .strengths-box__main {
    padding: 6rem 2rem; }
    .strengths-box__main--merit .point {
      grid-template-columns: repeat(2, 1fr); }
      .strengths-box__main--merit .point::before {
        display: none; }
      .strengths-box__main--merit .point__items {
        border-bottom: 1px solid #9fa0a0; }
        .strengths-box__main--merit .point__items:nth-child(2), .strengths-box__main--merit .point__items:nth-child(6) {
          border-right: none; }
  .plan-box__main--items .list {
    padding: 5rem 2rem;
    grid-template-columns: 1fr; }
    .plan-box__main--items .list figure {
      width: 21rem;
      margin: 0 auto 2rem; }
  .cta-box__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .cta-box__main a {
      max-width: 35rem; }
  .produce-box__main--post {
    grid-template-columns: 1fr;
    gap: 2rem; }
    .produce-box__main--post figure {
      margin: 0; }
  .reservation-box__main {
    padding-right: 0;
    padding-left: 5rem; }
  .precautions-box__main {
    padding: 0; }
    .precautions-box__main--content {
      padding: 5rem 4rem; }
      .precautions-box__main--content .labels {
        left: 4rem; }
  .video-box__main--items .video {
    margin-right: 0; } }

@media (max-width: 768px) {
  .pc {
    display: none; }
  .sp {
    display: block; }
  .contact-form {
    padding: 2rem; }
    .contact-form .form-group {
      padding: 2rem 0;
      display: block; }
      .contact-form .form-group .labels {
        margin-bottom: 2rem; }
      .contact-form .form-group .input__items {
        width: 100%; }
    .contact-form .form-group-des {
      text-align: left; }
    .contact-form .form-group-img {
      grid-template-columns: 1fr;
      padding: 0; }
    .contact-form .input__itemswrap {
      display: grid !important;
      grid-template-columns: 1fr;
      gap: 1rem !important; }
    .contact-form input[name='your-name'],
    .contact-form input[name='your-furigana'] {
      max-width: 100%; }
    .contact-form input[name='your-address'],
    .contact-form input[name='your-address-end'] {
      max-width: 100%; }
    .contact-form input[name='flight-number-used'] {
      max-width: 100%; }
    .contact-form input[name='transit-point'] {
      max-width: 100%; }
    .contact-form input[name='number-devices-used'],
    .contact-form input[name='number-users'],
    .contact-form input[name='number-users-2'],
    .contact-form input[name='number-items'],
    .contact-form input[name='number-items-2'],
    .contact-form input[name='no-need-2'],
    .contact-form input[name='no-need-3'],
    .contact-form input[name='no-need-4'] {
      max-width: 11.5rem; }
  .privacy-box {
    padding: 4rem 2rem; }
  .banner__main--text .container h1 span {
    font-size: 3rem; }
  .modal-box {
    padding: 5rem 2rem; } }

@media (max-width: 575px) {
  .banner__main--text .container h1 span {
    font-size: 2.4rem; }
  .popularity-box__main {
    grid-template-columns: 1fr; }
  .strengths-box__main--strengths ul li {
    padding: 2rem 0 2rem 3rem; }
    .strengths-box__main--strengths ul li::before {
      left: 0; }
  .strengths-box__main--merit .point {
    grid-template-columns: 1fr; }
    .strengths-box__main--merit .point__items {
      border-right: none; }
  .plan-box__main--items .list__text--labels {
    display: block;
    font-size: 1.6rem; }
  .plan-box__main--items .list__text--price {
    font-size: 3.3rem; }
  .video-box__main--items {
    gap: 2rem;
    grid-template-columns: 5.9rem 1fr; }
  .price-box__main--content .form-group-img {
    grid-template-columns: 1fr; }
  .price-box__main--content .more-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem; }
  .modal-box__content {
    grid-template-columns: 1fr; }
  .voice-box__main {
    grid-template-columns: 1fr; }
    .voice-box__main--items {
      padding: 5rem 2rem; }
  .reservation-box__main {
    padding-left: 0; }
    .reservation-box__main--items {
      padding: 3rem 2rem 4rem; }
      .reservation-box__main--items span {
        position: static;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        margin-bottom: 2rem; }
  .precautions-box__main--content .items__thumb {
    grid-template-columns: 1fr; } }

/* ipad Portrait */
/* ipad Landscape */
