@charset "UTF-8";
/*----------------------------------------
Variables
----------------------------------------*/
/*

# Color */
/* $black: #111; */
/* $white: #fff; */
/* $gray: #777; */
/* $gray-black: #e8e8e8; */
/* $pink: #ec7280; */
/* $pink-white: #fbe3e6; */
/* $red: #e60012; */
/* $white-gray: #f5f5f5; */
/* $white-gray2: #f9f9f9; */
/* $breadcrumbs: #f9f9f9; */
/* $color-copyright: #ccc; */
/* $color-input: #f8f8f8; */
/* $primary: #ddd; */
/*

# Border */
/* $color-border: #ddd; */
/* $color-border-black: #111; */
/* $color-border-gray: #555; */
/* $color-border-table: #e5e5e5; */
/*

# ScrollBar */
/* $color-track: #f1f1f1; */
/* $color-thumb: #c1c1c1; */
/*

# Shadow */
/* $shadow: rgba(#333, .05); */
/* $shadow-hover: rgba(#333, .1); */
/*

# Hover */
/* $opacity: .7; */
/*

# Font Family */
/* $font: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; */
/* $font-en: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica; */
/* $font-cn: "Microsoft Yahei", "PingHei"; */
/* $font-kr: "Malgun Gothic", "Yoon Gothic"; */
/*

# Font Weight */
/* $light: 300; */
/* $regular:400; */
/* $medium: 500; */
/* $bold: 900; */
/*

# Width */
/* $outer-width: 1200px; */
/* $content-width: 1080px; */
/*

# Easing */
/* $ease: cubic-bezier(.19, 1, .22, 1); */
/*

*/
/* IEハック用mixin */

body {
  height: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ ゴシック", "Noto Sans JP",sans-serf;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

/*----------------------------------------
Extend
----------------------------------------*/
.p-footer-contact-info-btn,
.p-footer-address-link,
.p-header-contact-block,
.c-btn-body,
.c-pager-btn:not(.is-current),
.p-about-info-col-btn-body,
.p-home-shop-info-col-btn-body {
  position: relative;
  overflow: hidden;
  -webkit-transition: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-footer-contact-info-btn:hover,
.p-footer-address-link:hover,
.p-header-contact-block:hover,
.c-btn-body:hover,
.c-pager-btn:hover:not(.is-current),
.p-about-info-col-btn-body:hover,
.p-home-shop-info-col-btn-body:hover {
  color: #e8e8e8;
}

.p-footer-contact-info-btn:hover::before,
.p-footer-address-link:hover::before,
.p-header-contact-block:hover::before,
.c-btn-body:hover::before,
.c-pager-btn:not(.is-current):hover::before,
.p-about-info-col-btn-body:hover::before,
.p-home-shop-info-col-btn-body:hover::before {
  -webkit-animation: c-btn-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1) 1;
  animation: c-btn-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1) 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-burger-icon:hover .p-burger-icon-line {
  background: #666;
  -webkit-transition: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

/*
.p-footer-contact-info-btn::before, .p-footer-address-link::before, .p-header-contact-block::before, .c-btn-body::before, .c-pager-btn:not(.is-current)::before, .p-about-info-col-btn-body::before, .p-home-shop-info-col-btn-body::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: $black;
  content: "";
  transform: translateX(-100%);
  -webkit-animation: c-btn-leave .4s cubic-bezier(.19, 1, .22, 1);
          animation: c-btn-leave .4s cubic-bezier(.19, 1, .22, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
*/
@-webkit-keyframes c-btn-enter {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes c-btn-enter {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes c-btn-leave {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes c-btn-leave {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*----------------------------------------
Keyframes
----------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------------------------------------
add_to_any
----------------------------------------*/
.a2a_kit a {
  margin: 0 10px;
  padding: 0;
}

.a2a_mini {
  width: 312px !important;
}

.a2a_svg {
  background: none !important;
}

.a2a_svg svg {
  width: 38px;
  height: 38px;
}

.a2a_svg svg,
.a2a_svg path,
.a2a_svg g {
  fill: #111;
}

.a2a_full {
  height: 340px !important;
}

.a2a_full_footer {
  padding: 18px 14px !important;
}

.a2a_menu a {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif !important;
  color: #111 !important;
}

.a2a_mini_services {
  overflow: hidden;
  padding: 6px !important;
}

.a2a_menu_show_more_less span {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif !important;
  font-size: 14px;
  font-size: 1.4rem;
}

/*--------------------
Swiper 4.5.1
--------------------*/
.swiper-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  flex-shrink: 0;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
  -webkit-box-align: start;
  align-items: flex-start;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px 44px;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  cursor: auto;
  opacity: 0.35;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #007aff;
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  top: 50%;
  right: 10px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  width: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007aff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
  .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
  .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  z-index: 50;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader::after {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  content: "";
}

.swiper-lazy-preloader-white::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

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

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

.swiper-container .swiper-notification {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  z-index: 1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*----------------------------------------
p-footer
----------------------------------------*/
.l-footer {
  display: block;
  padding: 0;
  background: #5d5d5d;
}

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

.p-footer-contact {
  position: relative;
  padding: 80px 0 40px;
  background: #fff;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact {
    padding: 60px 0 50px;
  }
}

.p-footer-contact.is-active::after {
  left: 100%;
}

.p-footer-contact::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: #fff;
  pointer-events: none;
  content: "";
  -webkit-transition: left cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
  transition: left cubic-bezier(0.19, 1, 0.22, 1) 1.4s;
}

.p-footer-contact .c-headline {
  padding: 0 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact .c-headline {
    padding: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-footer-contact-info {
  display: -webkit-box;
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info {
    display: block;
  }
}

.p-footer-contact-info-desc {
  position: relative;
  width: 50%;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info-desc {
    width: 100%;
    padding: 10px 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-desc {
    padding: 10px 20px;
  }
}

.p-footer-contact-info-center {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-footer-contact-info-btn {
  display: block;
  height: 100%;
  min-height: 100px;
  border: 2px solid #000;
  background: #5d5d5d;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-btn {
    min-height: 70px;
  }
}

.p-footer-contact-info-btn::before {
  background: #fbe3e6;
}

.p-footer-contact-info-btn:hover {
  color: #555;
}

.p-footer-contact-info-btn.is-tel {
  padding: 30px 0;
  background: none;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info-btn.is-tel {
    padding: 20px 0;
  }
}

.p-footer-contact-info-btn.is-tel::before {
  display: none;
}

.p-footer-contact-info-icon {
  margin: 0 10px 0 0;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info-icon {
    margin: 0 5px 0 0;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.p-footer-contact-info-icon.is-tel {
  position: relative;
  top: -1px;
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-footer-contact-info-icon.is-email {
  font-size: 26px;
  font-size: 2.6rem;
}

.p-footer-contact-info-info,
.p-footer-contact-info-number,
.p-footer-contact-info-time {
  position: relative;
  z-index: 1;
}

.p-footer-contact-info-number {
  font-size: 25px;
  font-size: 2.5rem;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info-number {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.p-footer-contact-info-text {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-text {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
  }
}

.p-footer-contact-info-time {
  display: block;
  padding: 10px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .p-footer-contact-info-time {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-footer-contact-info-time-ttl {
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: left;
  vertical-align: top;
}

.p-footer-contact-info-time-txt {
  display: inline-block;
  vertical-align: top;
}

.p-footer-bnr {
  display: -webkit-box;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-footer-bnr {
    padding: 40px 30px 0;
    flex-wrap: wrap;
  }
}

.p-footer-bnr-item {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-footer-bnr-item {
    margin: 0 0 30px;
    padding: 0;
  }
}

.p-footer-bnr-item:first-child {
  padding-left: 0;
}

.p-footer-bnr-item:last-child {
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .p-footer-bnr-item:last-child {
    margin: 0;
  }
}

.p-footer-bnr-img {
  max-height: 90px;
}

.p-global-footer {
  display: -webkit-box;
  display: flex;
  margin: 0 auto;
  padding: 60px 5% 24px;
  background: #fff;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-global-footer {
    position: relative;
    display: block;
    padding: 40px 30px 100px;
  }
}

.p-footer-address-list {
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .p-footer-address-list {
    display: block;
  }
}

.p-footer-address-ttl {
  padding: 0 30px 0 0;
}

@media screen and (max-width: 1024px) {
  .p-footer-address-ttl {
    width: 100%;
    padding: 0 120px 0 0;
  }
}

.p-footer-address-logo-img {
  max-height: 58px;
}

@media screen and (max-width: 767px) {
  .p-footer-address-logo-img {
    max-width: 160px;
  }
}

.p-footer-address-desc {
  padding: 0 20px 1.5em;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .p-footer-address-desc {
    padding: 30px 0 0;
    font-weight: 900;
  }
}

.p-footer-address-desc p:not([class]) {
  margin: 0 0 10px;
}

.p-footer-address-link {
  display: inline-block;
  margin: 0.5em 0 0;
  padding: 5px 15px;
  border: 1px solid #fff;
  color: #fff;
}

.p-footer-address-link::before {
  right: -10px;
  left: -10px;
  background: #555;
}

.p-footer-address-link-icon,
.p-footer-address-link-text {
  position: relative;
  z-index: 1;
}

.p-footer-address-link-icon {
  margin: 0 2px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
}

.p-footer-address-link-text {
  font-size: 12px;
  font-size: 1.2rem;
}

.p-footer-nav-items {
  display: -webkit-box;
  display: flex;
  margin: -10px 0 80px;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .p-footer-nav-items {
    display: none;
  }
}

.p-footer-nav-item {
  margin: 0 5px;
}

.p-footer-nav-link {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-footer-nav-link::before {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  display: block;
  height: 3px;
  background: #e8e8e8;
  content: "";
  -webkit-animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-footer-nav-link:hover {
  color: #e8e8e8;
}

.p-footer-nav-link:hover::before {
  -webkit-animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-footer-sns {
  display: -webkit-box;
  display: flex;
  margin: 0 0 20px -10px;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .p-footer-sns {
    position: absolute;
    top: 50px;
    right: 10px;
  }
}

.p-footer-sns-item {
  margin: 0 0 0 5px;
}

@media screen and (max-width: 1024px) {
  .p-footer-sns-item {
    margin: 0 0 0 10px;
  }
}

@media screen and (max-width: 374px) {
  .p-footer-sns-item {
    margin: 0 0 0 5px;
  }
}

.p-footer-sns-link {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-footer-sns-link:hover {
  color: #e8e8e8;
}

.p-footer-sns-icon {
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 1024px) {
  .p-footer-sns-icon {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-footer-copyright {
  display: block;
  padding: 8px 22px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  color: #ccc;
  text-align: right;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 1024px) {
  .p-footer-copyright {
    margin: 40px 0 0;
    padding: 0;
    text-align: left;
  }
}

.p-foot-wrap {
  margin-top: 40px;
  text-align: center;
}

/*----------------------------------------
p-header
----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
}

.p-header {
  position: relative;
  display: -webkit-box;
  display: flex;
  max-width: 100%;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1330px) {
  .p-header {
    padding: 0;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .p-header {
    min-height: 60px;
  }
}

.p-header-logo {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1330px) {
  .p-header-logo {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}

.p-header-logo-link {
  display: block;
  padding: 20px;
}

@media screen and (max-width: 1330px) {
  .p-header-logo-link {
    padding: 24px;
  }
}

@media screen and (max-width: 767px) {
  .p-header-logo-link {
    padding: 5px 20px;
    line-height: 0;
  }
}

.p-header-logo-img {
  width: 100%;
  max-width: 170px;
  max-height: 58px;
}

@media screen and (max-width: 767px) {
  .p-header-logo-img {
    max-width: 124px;
    max-height: 50px;
	      position: relative;
    right: 95%;
  }
}

.p-header-tel {
  padding: 5px 20px;
}

@media screen and (max-width: 1330px) {
  .p-header-tel {
    display: none;
  }
}

.p-header-tel-block {
  padding: 20px 20px 20px 0;
  text-align: center;
}

.p-header-tel-number {
  margin: 0 0 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ec7280;
  white-space: nowrap;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
}

.p-header-tel-icon {
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: rotate(90deg) translateX(-2px);
  transform: rotate(90deg) translateX(-2px);
}

.p-header-tel-time {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.5;
}

.p-header-tel-time-ttl {
  display: inline-block;
  margin: 0 2px 0 0;
  text-align: left;
  vertical-align: top;
}

.p-header-tel-time-txt {
  display: inline-block;
  text-align: left;
  vertical-align: top;
}

.p-header-contact {
  position: absolute;
  top: 20px;
  right: 110px;
}

.p-header-contact-block {
  position: relative;
  display: -webkit-box;
  display: flex;
  width: 190px;
  height: 60px;
  border: 2px solid #000;
  color: #000;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.p-header-contact-block:hover {
  border-color: #666;
  color: #666;
}

.p-header-contact-icon {
  font-size: 15px;
  font-size: 1.5rem;
}

.p-header-contact-ttl {
  margin: 0 0 0 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-header-contact-ttl {
    font-size: 10px;
    font-size: 1rem;
  }
}

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

.p-gnav-list {
  display: -webkit-box;
  display: flex;
}

.p-gnav-link {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 45px 25px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-gnav-link::before {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  display: block;
  height: 3px;
  background: #ec7280;
  content: "";
  -webkit-animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-gnav-link:hover,
.p-gnav-link.is-active {
  color: #ec7280;
}

.p-gnav-link:hover::before,
.p-gnav-link.is-active::before {
  -webkit-animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-burger-icon {
  position: relative;
  display: none;
  width: 100px;
  height: 100px;
  border: 0;
  background: none;
}

.p-burger-icon {
  display: block;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .p-burger-icon {
    width: 60px;
    height: 60px;
    margin-left: 4px;
  }
}

.p-burger-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47px;
  height: 2px;
  background: #111;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-burger-icon-line:nth-child(2) {
  width: 37px;
  margin: 0 0 0 -5px;
}

.p-burger-icon-line:first-child {
  margin: -15px 0 0;
}

.p-burger-icon-line:last-child {
  margin: 15px 0 0;
}

/*----------------------------------------
p-sp-menu
----------------------------------------*/
body[data-menu="active"] {
  position: fixed;
}
@media screen and (min-width: 770px) {
  body[data-menu="active"] {
    width: calc(100% - 10px);
  }
}

body[data-menu="active"] .p-sp-menu {
  pointer-events: auto;
}

body[data-menu="active"] .p-sp-menu-bg {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

body[data-menu="active"] .p-sp-menu-container {
  opacity: 1;
}

.p-sp-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: block;
  width: 520px;
  color: #fff;
  pointer-events: none;
}

.p-sp-menu-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(100% - 520px);
  background: #5d5d5d;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 1s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 1s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.p-sp-menu-container {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
  transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
}

.p-sp-menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border: 0;
  background: none;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-btn {
    width: 63px;
    height: 63px;
  }
}

.p-sp-menu-btn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2.5px;
  background: #fff;
}

.p-sp-menu-btn-line:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-sp-menu-btn-line:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-sp-menu-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-inner {
    padding: 40px 0 20px;
  }
}

.p-sp-menu-items {
  display: -webkit-box;
  display: flex;
  margin: 0 0 40px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-items {
    margin: 0 0 20px;
  }
}

.p-sp-menu-item {
  width: 100%;
  padding: 15px 100px;
}

.p-sp-menu-link {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-sp-menu-tel {
  margin: 0 0 10px;
  padding: 10px 40px;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-tel {
    padding: 5px 20px;
  }
}

.p-sp-menu-tel-btn {
  color: #fff;
}

.p-sp-menu-tel-block {
  padding: 20px 5px;
  border: 2px solid #fff;
  text-align: center;
}

.p-sp-menu-tel-number {
  margin: 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
}

.p-sp-menu-tel-icon {
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: rotate(90deg) translateX(-2px);
  transform: rotate(90deg) translateX(-2px);
}

.p-sp-menu-tel-number + .p-sp-menu-tel-time {
  margin-top: 10px;
}

.p-sp-menu-tel-ttl {
  margin: 0 0 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 900;
}

.p-sp-menu-tel-time {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.p-sp-menu-tel-time-ttl {
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  vertical-align: top;
}

.p-sp-menu-tel-time-txt {
  display: inline-block;
  text-align: center;
  vertical-align: top;
}

.p-sp-menu-contact {
  padding: 10px 40px;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-contact {
    padding: 5px 20px;
  }
}

.p-sp-menu-contact-block {
  position: relative;
  display: block;
  padding: 24px 0;
  background: #fff;
  color: #000;
  text-align: center;
}

.p-sp-menu-contact-icon {
  margin: 0 10px 5px 0;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: normal;
  vertical-align: middle;
}

.p-sp-menu-contact-ttl {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
}

/*----------------------------------------
p-pagetop
----------------------------------------*/
.p-pagetop {
  position: fixed;
  z-index: 10;
  right: 70px;
  bottom: 20px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

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

.p-pagetop.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.p-pagetop-btn {
  width: 15px;
  height: 15px;
  border: 2px solid #ccc;
  border-width: 1px 0 0 1px;
  outline: none;
  background: none;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

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

.js-animate-fade-in.is-active {
  background-color: #5d5d5d;
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes nav-link-enter {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes nav-link-enter {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes nav-link-leave {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(130%);
    transform: translateX(130%);
  }
}

@keyframes nav-link-leave {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(130%);
    transform: translateX(130%);
  }
}

@-webkit-keyframes line-link-after-enter {
  0% {
    -webkit-transform: translateX(-130%);
    transform: translateX(-130%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes line-link-after-enter {
  0% {
    -webkit-transform: translateX(-130%);
    transform: translateX(-130%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes line-link-after-leave {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes line-link-after-leave {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

/*----------------------------------------
c-articles-grid
----------------------------------------*/
.c-articles-grid-col,
.c-articles-grid-col2,
.c-articles-grid-col3,
.c-articles-grid-col4 {
  display: -webkit-box;
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-articles-grid-col,
  .c-articles-grid-col2,
  .c-articles-grid-col3,
  .c-articles-grid-col4 {
    margin: 0 -10px;
  }
}

.c-articles-grid-col .c-articles-grid-item,
.c-articles-grid-col2 .c-articles-grid-item,
.c-articles-grid-col3 .c-articles-grid-item,
.c-articles-grid-col4 .c-articles-grid-item {
  margin: 0 0 40px;
}

@media screen and (max-width: 1024px) {
  .c-articles-grid-col .c-articles-grid-item,
  .c-articles-grid-col2 .c-articles-grid-item,
  .c-articles-grid-col3 .c-articles-grid-item,
  .c-articles-grid-col4 .c-articles-grid-item {
    margin: 0 0 25px;
  }
}

.c-articles-grid-col2 .c-articles-grid-item {
  width: 50%;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .c-articles-grid-col2 .c-articles-grid-item {
    width: 100%;
  }
}

.c-articles-grid-col3 .c-articles-grid-item {
  width: calc(99.99999% / 3);
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .c-articles-grid-col3 .c-articles-grid-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .c-articles-grid-col3 .c-articles-grid-item {
    width: 100%;
  }
}

.c-articles-grid-col4 .c-articles-grid-item {
  width: 25%;
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .c-articles-grid-col4 .c-articles-grid-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .c-articles-grid-col4 .c-articles-grid-item {
    width: 100%;
  }
}

.c-article-post {
  display: block;
  color: #000;
}

.c-article-post-thumb {
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.c-article-post-thumb::after {
  display: block;
  content: "";
}

.c-article-post-thumb-img {
  height: 0;
  padding-top: 100%;
  background-color: #5d5d5d;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.c-article-post:hover .c-article-post-thumb-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.c-article-post-thumb-src {
  display: none;
}

.c-article-post-text {
  position: relative;
}

.c-article-post-cat {
  display: inline-block;
  margin: 10px 0;
  border-bottom: 1px solid #000;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  vertical-align: middle;
  letter-spacing: 0.15em;
}

.c-article-post-cat-item {
  display: inline-block;
  padding: 4px 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.c-article-post-ttl {
  margin: 0 0 10px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.c-article-post-lead {
  overflow: hidden;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #777;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-article-post-date {
  display: inline-block;
  margin: 0 0 5px;
  padding: 4px 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.15em;
}

.c-article-post-more {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.c-article-post-more-icon {
  margin: 0 5px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
}

/*----------------------------------------
c-breadcrumbs
----------------------------------------*/
/*----------------------------------------
c-gadget
----------------------------------------*/
.c-gadget-ttl {
  margin: 0 0 20px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 3px;
  letter-spacing: 0.3rem;
}

.c-gadget-items {
  margin: 0 0 60px;
}

.c-gadget-item {
  margin: 0 0 5px;
}

.c-gadget-item-link {
  position: relative;
  display: block;
  padding: 5px 0 5px 20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
}

.c-gadget-item-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 8px;
  height: 1px;
  background: #111;
  content: "";
}

.c-gadget-posts {
  margin: 0 0 60px;
}

.c-gadget-post {
  border-bottom: 1px solid #ddd;
}

.c-gadget-post:first-of-type {
  border-top: 1px solid #ddd;
}

.c-gadget-post-link {
  display: block;
  padding: 15px 0;
}

.c-gadget-post-date {
  display: block;
  margin: 0 0 5px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
}

.c-gadget-post-ttl {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}

/*----------------------------------------
c-page-headline
----------------------------------------*/
.c-page-headline {
  position: relative;
  text-align: left;
}

.c-page-headline-ttl {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

@media screen and (max-width: 1024px) {
  .c-page-headline-ttl {
    padding: 40px 30px;
  }
}

.c-page-headline-text {
  position: relative;
  display: block;
  padding: 30px 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: 10px;
  letter-spacing: 1rem;
}

@media screen and (max-width: 1024px) {
  .c-page-headline-text {
    padding: 24px 0;
    font-size: 28px;
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: 5px;
    letter-spacing: 0.5rem;
  }
}

.c-page-headline-text::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 3px;
  background: #ec7280;
  content: "";
}

.c-page-headline-bg,
.c-page-headline-bg-mobile {
  position: relative;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 300px;
  background: no-repeat center;
  background-size: cover !important;
}

@media screen and (max-width: 1024px) {
  .c-page-headline-bg,
  .c-page-headline-bg-mobile {
    display: none;
    height: 46.875vw;
  }
}

@media screen and (max-width: 767px) {
  .c-page-headline-bg,
  .c-page-headline-bg-mobile {
    height: 46.875vw;
  }
}

.c-page-headline-bg::before,
.c-page-headline-bg-mobile::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  content: "";
}

@media screen and (max-width: 1024px) {
  .c-page-headline-bg::before,
  .c-page-headline-bg-mobile::before {
    display: block;
  }
}

.c-page-headline-bg-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .c-page-headline-bg-mobile {
    left: 0;
    display: block;
  }
}

/*----------------------------------------
c-ttl-block
----------------------------------------*/
.c-ttl-block {
  padding: 50px 5%;
  background: #e5e5e5;
}

/*----------------------------------------
c-single-pager
----------------------------------------*/
.c-single-pager {
  padding: 80px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-single-pager {
    padding: 60px 0;
  }
}

.c-single-pager-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.c-single-pager-item.is-none {
  pointer-events: none;
  opacity: 0;
}

.c-single-pager-item.is-prev:hover .c-single-pager-item-icon {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

.c-single-pager-item.is-next:hover .c-single-pager-item-icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.c-single-pager-item-body {
  position: relative;
  display: block;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-single-pager-item-body {
    padding: 10px 0;
  }
}

.c-single-pager-item-icon {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-single-pager-item-txt {
  padding: 0 20px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

.c-single-pager-item-list {
  display: block;
  width: 80px;
  padding: 0 20px;
}

.c-single-pager-item-list .c-single-pager-item-body {
  position: relative;
}

.c-single-pager-item-list .c-single-pager-item-body::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  display: block;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
  background: rgba(236, 114, 128, 0.1);
  pointer-events: none;
  content: "";
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.c-single-pager-item-list .c-single-pager-item-body:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-single-pager-item-list-icon {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-size: 2.2rem;
  color: #ec7280;
}

/*----------------------------------------
c-sub-ttl
----------------------------------------*/
.c-sub-ttl {
  position: relative;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 767px) {
  .c-sub-ttl {
    padding: 0 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

/*----------------------------------------
js-text-loader
----------------------------------------*/
.js-text-loader {
  position: relative;
  display: inline-block;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-animation: cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  animation: cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.js-text-loader::after {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  display: block;
  background: #f5f5f5;
  content: "";
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center right;
  transform-origin: center right;
  -webkit-animation: cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.3s;
  animation: cubic-bezier(0.19, 1, 0.22, 1) 0.3s 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.js-text-loader.is-active {
  -webkit-animation-name: text-loader-wrap;
  animation-name: text-loader-wrap;
}

.js-text-loader.is-active::after {
  -webkit-animation-name: text-loader-mask;
  animation-name: text-loader-mask;
}

@-webkit-keyframes text-loader-wrap {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes text-loader-wrap {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes text-loader-mask {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes text-loader-mask {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

/*----------------------------------------
c-ttl
----------------------------------------*/
.c-ttl {
  position: relative;
  padding: 24px 0 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 44px;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 9px;
  letter-spacing: 0.9rem;
}

@media screen and (max-width: 767px) {
  .c-ttl {
    padding: 20px 0 0;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-ttl::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 0 0 -14px;
  background: #ec7280;
  content: "";
}

.c-ttl-left {
  text-align: left;
}

.c-ttl-left::before {
  left: 0;
  margin: 0 0 0 4px;
}

.c-ttl-right {
  text-align: right;
}

.c-ttl-right::before {
  right: 0;
  left: auto;
  margin: 0 12px 0 0;
}

/*----------------------------------------
not-found
----------------------------------------*/
.p-not-found {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-not-found {
    padding: 70px 0 100px;
  }
}

.p-not-found-ttl {
  margin: 0 0 50px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 10px;
  letter-spacing: 1rem;
}

@media screen and (max-width: 1024px) {
  .p-not-found-ttl {
    margin: 0 0 30px;
  }
}

.p-not-found-desc {
  margin: 0 0 80px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .p-not-found-desc {
    margin: 0 0 50px;
    padding: 0 30px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-not-found-desc p:not([class]) {
  margin: 0 0 20px;
}

.p-not-found .c-btn {
  padding: 0 30px;
}

/*----------------------------------------
about-concept
----------------------------------------*/
.p-about-concept {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-about-concept {
    padding: 70px 0 60px;
  }
}

.p-about-concept-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: -20%;
  left: 0;
  background: no-repeat center;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .p-about-concept-bg {
    bottom: -50%;
  }
}

.p-about-concept-article {
  position: relative;
  z-index: 1;
}

.p-about-concept-ttl {
  margin: 0 0 50px;
}

@media screen and (max-width: 1024px) {
  .p-about-concept-ttl {
    margin: 0 0 30px;
  }
}

.p-about-concept-desc {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .p-about-concept-desc {
    padding: 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-about-concept-desc p:not([class]) {
  margin: 0 0 30px;
}

/*----------------------------------------
about-point
----------------------------------------*/
.p-about-point {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-about-point {
    padding: 70px 0 0;
  }
}

.p-about-point-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: -20%;
  left: 0;
  background: repeat center;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .p-about-point-bg {
    bottom: -50%;
  }
}

.p-about-point-bg.is-default {
  background: #f5f5f5;
}

.p-about-point-article {
  position: relative;
  z-index: 1;
}

.p-about-point-ttl {
  margin: 0 0 40px;
}

@media screen and (max-width: 1024px) {
  .p-about-point-ttl {
    margin: 0 0 30px;
  }
}

.p-about-point-desc {
  margin: 0 0 80px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .p-about-point-desc {
    margin: 0 0 40px;
    padding: 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-about-point-list {
  padding: 100px 0 50px;
}

@media screen and (max-width: 1024px) {
  .p-about-point-list {
    padding: 100px 30px 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-about-point-list {
    padding: 60px 0 50px;
  }
}

.p-about-point-section {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 50px 0;
  text-align: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section {
    display: block;
    padding: 20% 0 40px 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-about-point-section {
    padding: 50% 0 40px 30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(odd) {
    text-align: right;
  }
}

.p-about-point-section:nth-child(odd) .p-about-point-section-eyecatch {
  left: -100px;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(odd) .p-about-point-section-eyecatch {
    left: 0;
  }
}

.p-about-point-section:nth-child(even) {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(even) {
    padding: 20% 30px 40px 0;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .p-about-point-section:nth-child(even) {
    padding: 50% 30px 40px 0;
  }
}

.p-about-point-section:nth-child(even) .p-about-point-section-eyecatch {
  right: -100px;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(even) .p-about-point-section-eyecatch {
    right: 0;
  }
}

.p-about-point-section:nth-child(4n-3) .p-about-point-section-border {
  top: 0;
  right: 0;
  -webkit-transform: translate(25%, -25%);
  transform: translate(25%, -25%);
}

.p-about-point-section:nth-child(4n-3) .p-about-point-section-fill {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(40%, 25%);
  transform: translate(40%, 25%);
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(4n-3) .p-about-point-section-fill {
    right: auto;
    left: 0;
    -webkit-transform: translate(-20%, 30%);
    transform: translate(-20%, 30%);
  }
}

.p-about-point-section:nth-child(4n-2) .p-about-point-section-border {
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, -25%);
  transform: translate(-25%, -25%);
}

.p-about-point-section:nth-child(4n-2) .p-about-point-section-fill {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-40%, 25%);
  transform: translate(-40%, 25%);
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(4n-2) .p-about-point-section-fill {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 30%);
    transform: translate(0, 30%);
  }
}

.p-about-point-section:nth-child(4n-1) .p-about-point-section-border {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(25%, 30%);
  transform: translate(25%, 30%);
}

.p-about-point-section:nth-child(4n-1) .p-about-point-section-fill {
  top: 0;
  right: 0;
  -webkit-transform: translate(35%, -20%);
  transform: translate(35%, -20%);
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(4n-1) .p-about-point-section-fill {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-10%, 30%);
    transform: translate(-10%, 30%);
  }
}

.p-about-point-section:nth-child(4n) .p-about-point-section-border {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-25%, 25%);
  transform: translate(-25%, 25%);
}

.p-about-point-section:nth-child(4n) .p-about-point-section-fill {
  top: 0;
  left: 0;
  -webkit-transform: translate(-40%, -25%);
  transform: translate(-40%, -25%);
}

@media screen and (max-width: 1023px) {
  .p-about-point-section:nth-child(4n) .p-about-point-section-fill {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    -webkit-transform: translate(10%, 20%);
    transform: translate(10%, 20%);
  }
}

.p-about-point-section-border {
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-border {
    display: none;
  }
}

.p-about-point-section-border-obj {
  width: 200px;
  border: 1px solid #ddd;
}

.p-about-point-section-border-obj::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.p-about-point-section-fill {
  position: absolute;
  z-index: 0;
}

.p-about-point-section-fill-obj {
  width: 300px;
  background: #ddd;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-fill-obj {
    width: 200px;
  }
}

.p-about-point-section-fill-obj::before {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.p-about-point-section-eyecatch {
  position: absolute;
  z-index: 1;
  top: 0;
  width: calc(50% + 140px);
}

@media screen and (max-width: 767px) {
  .p-about-point-section-eyecatch {
    width: 100%;
  }
}

.p-about-point-section-eyecatch-img {
  display: none;
}

.p-about-point-section-eyecatch-bg {
  background: no-repeat center;
  background-size: cover;
}

.p-about-point-section-eyecatch-bg::before {
  display: block;
  padding: 50% 0 0;
  content: "";
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-eyecatch-bg::before {
    padding: 60% 0 0;
  }
}

.p-about-point-section-box {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 80px 100px 90px;
  background: #fff;
  box-shadow: 0 0 40px rgba(51, 51, 51, 0.05);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-about-point-section-box {
    width: 60%;
    padding: 50px 60px 60px;
  }
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-box {
    display: inline-block;
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .p-about-point-section-box {
    width: 100%;
    padding: 50px 30px 50px 40px;
  }
}

.p-about-point-section-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #111;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 80px;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 60px;
  }
}

.p-about-point-section-ttl {
  margin: 0 0 30px;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-ttl {
    margin: 0 0 15px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 900;
    text-align: left;
  }
}

.p-about-point-section-ttl-text {
  line-height: 1.5;
}

.p-about-point-section-desc {
  line-height: 2;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-desc {
    line-height: 1.8;
  }
}

.p-about-point-section-btn {
  margin: 50px 0 0;
}

@media screen and (max-width: 1023px) {
  .p-about-point-section-btn {
    margin: 30px 0 0;
  }
}

.p-about-point-section-btn-icon {
  margin: 0 15px 0 0;
}

.p-about-point-section-btn-body {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 -2px 0 #e8e8e8 inset;
  color: #e8e8e8;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-about-point-section-btn-body::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #ec7280;
  content: "";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-about-point-section-btn-body:hover {
  color: #ec7280;
}

.p-about-point-section-btn-body:hover::after {
  -webkit-animation-name: line-link-after-enter;
  animation-name: line-link-after-enter;
}

/*----------------------------------------
about-gallery
----------------------------------------*/
.p-about-gallery {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.p-about-gallery-article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-about-gallery-slide-slider {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-about-gallery-slide-disabled {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.p-about-gallery-slide .bx-wrapper {
  max-width: 100% !important;
}

.p-about-gallery-slide-item {
  width: 500px;
}

.p-about-gallery-slide-img {
  display: block;
  background: no-repeat center;
  background-size: cover;
}

.p-about-gallery-slide-img::after {
  display: block;
  padding: 60% 0 0;
  content: "";
}

/*----------------------------------------
home-info
----------------------------------------*/
.p-about-info {
  position: relative;
  padding: 100px 0;
}

@media screen and (max-width: 1024px) {
  .p-about-info {
    padding: 60px 30px;
  }
}

.p-about-info-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center;
  background-size: cover;
  pointer-events: none;
}

.p-about-info-article {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 120px;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  .p-about-info-article {
    padding: 50px 25px;
  }
}

.p-about-info-logo {
  margin: 0 0 50px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-about-info-logo {
    margin: 0 0 30px;
  }
}

.p-about-info-logo-img {
  max-width: 150px;
}

@media screen and (max-width: 767px) {
  .p-about-info-logo-img {
    max-width: 120px;
  }
}

.p-about-info-col-row {
  display: -webkit-box;
  display: flex;
  padding: 30px 60px;
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 1024px) {
  .p-about-info-col-row {
    display: block;
    padding: 20px 0;
  }
}

.p-about-info-col-row:first-of-type {
  border-top: 0;
}

.p-about-info-col-ttl {
  min-width: 180px;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .p-about-info-col-ttl {
    margin: 0 0 10px;
    font-weight: 900;
  }
}

.p-about-info-col-desc {
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .p-about-info-col-desc {
    font-weight: 500;
  }
}

.p-about-info-col-btn {
  margin: 20px 0 0;
}

.p-about-info-col-btn-body {
  display: inline-block;
  padding: 5px 15px 10px;
  border: 1px solid #111;
  color: #111;
}

.p-about-info-col-btn-body::before {
  background: #111;
}

.p-about-info-col-btn-icon,
.p-about-info-col-btn-text {
  position: relative;
  z-index: 1;
  line-height: 1;
  vertical-align: middle;
}

.p-about-info-col-btn-icon {
  margin: 0 2px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
}

.p-about-info-col-btn-text {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

.p-about-info-map {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 1024px) {
  .p-about-info-map {
    width: 100%;
  }
}

.p-about-info-map iframe {
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 1024px) {
  .p-about-info-map iframe {
    height: 360px;
  }
}

/*----------------------------------------
main-visual
----------------------------------------*/
.p-main-visual {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.p-main-visual-poster {
  display: none;
}

.p-main-visual-catchcopy {
  position: absolute;
  z-index: 1;
  top: 45%;
  right: 0;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-main-visual-catchcopy {
    position: absolute;
    top: 47.5%;
    margin: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-main-visual-catchcopy-inner {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-main-visual-catchcopy-inner {
    padding: 0;
  }
}

.p-main-visual-catchcopy-ttl {
  margin: 0 0 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 3vw;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-catchcopy-ttl {
    margin: 0 0 15px;
    font-size: 4vw;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-catchcopy-ttl {
    font-size: 8.75vw;
    line-height: 1.3;
  }
}

.p-main-visual-catchcopy-ttl-text {
  line-height: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(1) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
		position: fixed; 
    top: 100%;   
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(1)::after {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(1)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(2)::after {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(2)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(3) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(3) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(3)::after {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(3)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(4) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(4) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(4)::after {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(4)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(5) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(5) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(5)::after {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(5)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(6) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(6) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(6)::after {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(6)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(7) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(7) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(7)::after {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(7)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(8) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(8)::after {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(8)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(9) {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(9) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(9)::after {
  -webkit-animation-delay: 1.45s;
  animation-delay: 1.45s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(9)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(10) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(10) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(10)::after {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(10)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(11) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(11) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(11)::after {
  -webkit-animation-delay: 1.55s;
  animation-delay: 1.55s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(11)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(12) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(12) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(12)::after {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(12)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(13) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(13) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(13)::after {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(13)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(14) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(14) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(14)::after {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(14)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(15) {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(15) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(15)::after {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(15)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(16) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(16) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(16)::after {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(16)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(17) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(17) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(17)::after {
  -webkit-animation-delay: 1.85s;
  animation-delay: 1.85s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(17)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(18) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(18) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(18)::after {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(18)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(19) {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(19) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(19)::after {
  -webkit-animation-delay: 1.95s;
  animation-delay: 1.95s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(19)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(20) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(20) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text:nth-child(20)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text:nth-child(20)::after {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-ttl-text::after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-ttl-text::after {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
  }
}

.p-main-visual-catchcopy-sub {
  display: block;
  font-size: 1.3vw;
  font-weight: 900;
  letter-spacing: 0.3vw;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-catchcopy-sub {
    margin: 1% 0;
    font-size: 2vw;
    line-height: 1.6;
    letter-spacing: 0.5vw;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-catchcopy-sub {
    margin: 3% 0 5%;
    font-size: 4.0625vw;
    letter-spacing: 0.2vw;
  }
}

@media screen and (max-width: 1024px) {
  .p-main-visual-catchcopy-sub::before {
    width: 60px;
    height: 2px;
    margin: 2% 20px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-catchcopy-sub::before {
    width: 40px;
    margin: 2% 10px 0 0;
  }
}

.p-main-visual-catchcopy-sub.is-active {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-sub.is-active {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-sub.is-active::after {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

@media all and (-ms-high-contrast: none) {
  .p-main-visual-catchcopy-sub.is-active::after {
    -webkit-animation-duration: 0s;
    animation-duration: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

.p-main-visual-catchcopy-sub-txt {
  display: block;
  overflow: hidden;
  line-height: 9.5;
  color: #fff;
}

.p-main-visual-pagination {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-pagination {
    margin: 0 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-pagination {
    position: absolute;
    bottom: 30px;
    margin: 0;
    text-align: center;
  }
}

.p-main-visual-pagination-inner {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 30px;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-pagination-inner {
    width: 100%;
    padding: 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-pagination-inner {
    width: 100%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 374px) {
  .p-main-visual-pagination-inner {
    padding: 0 20px;
  }
}

.p-main-visual-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 12px 0 0;
  border: 1px solid #fff;
  border-radius: 0;
  outline: none;
  background: none;
  opacity: 0.4;
}

.p-main-visual-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.p-main-visual-slide {
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-slide-item {
    padding: 0;
  }
}

.p-main-visual-slide-img {
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-main-visual-slide-img {
    display: none;
  }
}

.p-main-visual-slide-img-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-main-visual-slide-img-mobile {
    display: block;
  }
}

.p-main-visual-slide-img::before {
  display: block;
  padding: 70% 0 0;
  content: "";
}

@media screen and (max-width: 1024px) {
  .p-main-visual-slide-img::before {
    padding: 100vh 0 0;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-slide-img::before {
    padding: 112.5% 0 0;
  }
}

.p-main-visual-posts {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 20px;
  border-left: 15px solid #a0a0a0;
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .p-main-visual-posts {
    position: relative;
    z-index: 2;
    top: 0;
    right: 0;
    margin: 0;
    padding: 18px;
    border: 0;
    background: #e5e5e5;
  }
}

.p-main-visual-posts .c-article-post-cat {
  position: relative;
  top: -1px;
  margin: 0;
  border: 0;
}

@media screen and (max-width: 767px) {
  .p-main-visual-posts .c-article-post-cat {
    top: 0;
    min-width: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-main-visual-posts .c-article-post-cat-item {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-main-visual-posts-post {
  display: block;
  margin: 0 0 10px;
  font-size: 0;
}

@media screen and (max-width: 767px) {
  .p-main-visual-posts-post {
    margin: 0 0 20px;
  }
}

.p-main-visual-posts-post:last-child {
  margin: 0;
}

.p-main-visual-posts-post-link {
  display: block;
  height: 100%;
}

.p-main-visual-posts-post-date {
  margin: 0;
  padding-right: 10px;
  border-right: 1px solid #000;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  vertical-align: middle;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
}

.p-main-visual-posts-post-ttl {
  display: inline-block;
  overflow: hidden;
  max-width: 220px;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-overflow: ellipsis;
}

_:-ms-fullscreen,
:root .p-main-visual-posts-post-ttl {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-main-visual-posts-post-ttl {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
    white-space: normal;
  }
}

/*----------------------------------------
home-about
----------------------------------------*/
.p-home-about {
  position: relative;
}

.p-home-about-article {
  display: -webkit-box;
  display: flex;
  background: #fff;
}

.p-home-about-inner {
  width: 22.5%;
  background: #e8e8e8;
}

.p-home-about-txt {
  width: 70%;
  margin-left: -5%;
  padding: 100px 0 140px;
}

.ttlA {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: flex;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-size: 6rem;
  letter-spacing: 0.1em;
  -webkit-box-align: center;
  align-items: center;
}

.ttlA .main {
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid #000;
  line-height: 1;
}

.ttlA .sub {
  font-size: 15px;
  font-size: 1.5rem;
}

.p-home-block {
  position: relative;
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  align-items: center; /* ← ここは元に戻す or 下記PC専用指定に任せる */
}

@media screen and (min-width: 768px) {
  .p-home-block {
    align-items: stretch; /* PCのみ：高さいっぱいに揃える */
  }
  .p-home-block .image {
    display: flex;
  }
  .p-home-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* はみ出す分は自動トリミング */
  }
}

.p-home-block .image {
  width: 50%;
}

.p-home-block .text-inner {
  width: 50%;
  padding: 80px 0 80px 5%;
  line-height: 2;
  letter-spacing: 0.15em;
}

.p-home-about-txt .ttlA {
  margin-bottom: 60px;
}

.text {
  margin-bottom: 40px;
}

.p-home-block .btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.btn a {
  display: block;
  width: 240px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.15em;
}

.btn a:hover {
  opacity: 0.7;
}

.p-home-about-img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-home-about-img-pc {
    display: none;
  }
  .p-home-about-img-sp {
    display: block;
    width: 100%;
  }
}

/*----------------------------------------
home-about badge（国家資格アピール）
----------------------------------------*/
.p-home-about-badge {
  margin: 0 0 45px;
  padding: 30px 25px;
  background: #f7f7f7;
  border-left: 5px solid #f2c230;
  border-radius: 4px;
}
.p-home-about-badge-lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 20px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.p-home-about-badge-lead .num {
  display: inline-block;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  color: #d9a800;
  margin: 0 4px 0 0;
  vertical-align: -4px;
}
.p-home-about-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-home-about-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 10px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.06);
}
.p-home-about-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2c230;
  color: #111;
  font-size: 14px;
  flex-shrink: 0;
}
.p-home-about-badge-name {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #111;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-home-about-badge {
    padding: 24px 20px;
    margin-bottom: 35px;
  }
  .p-home-about-badge-lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-home-about-badge-lead .num {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .p-home-about-badge-item {
    padding: 8px 14px 8px 8px;
  }
  .p-home-about-badge-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .p-home-about-badge-name {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/*----------------------------------------
home-menu
----------------------------------------*/
.p-home-menu {
  position: relative;
  margin-top: -80px;
}

.p-home-menu-article {
  padding: 5% 5% 120px;
  background-position: center center;
  background-size: cover;
}

.p-home-menu .ttlA {
  margin-bottom: 35px;
  color: #fff;
}

.p-home-menu .ttlA .main {
  border-right: 1px solid #fff;
}

.p-home-menu .textB {
  margin-bottom: 60px;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.15em;
}

.p-home-menu .btn a {
  position: absolute;
  right: 5%;
  border-bottom: 2px solid #fff;
  color: #fff;
}

.menu-ul-wrap {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.menu-ul-list {
  width: calc(50% - 20px);
  margin-bottom: 50px;
  padding: 30px 40px 40px;
  background: rgba(220, 220, 220, 0.8);
}

.menu-ul-list:nth-child(odd) {
  margin-right: 40px;
}

.menu-ul-list:last-child:nth-child(odd) {
  width: 100%;
  margin-right: 0;
}

.menu-ul-ttl {
  margin-bottom: 20px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
}

.menu-ul-ul li {
  display: -webkit-box;
  display: flex;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .menu-ul-ul li {
    flex-wrap: wrap;
  }
}

.menu-ul-ul li:last-child {
  margin-bottom: 0;
}

.menu-ul-ul .name {
  max-width: 48%;
  padding: 3px 10px 3px 0;
}

@media screen and (max-width: 1024px) {
  .menu-ul-ul .name {
    width: 100%;
    max-width: 100%;
  }
}

.menu-ul-ul .blank {
  position: relative;
  -webkit-box-flex: 2;
  flex-grow: 2;
}

@media screen and (max-width: 1024px) {
  .menu-ul-ul .blank {
    min-width: 10px;
  }
}

.menu-ul-ul .blank::after {
  position: absolute;
  top: 1em;
  width: 100%;
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  content: "";
}

@media screen and (max-width: 767px) {
  .menu-ul-ul .blank::after {
    top: 1.3rem;
  }
}

.menu-ul-ul .price {
  max-width: 80%;
  padding: 3px 0 3px 10px;
  text-align: right;
}

/*----------------------------------------
home-gallery
----------------------------------------*/
.p-home-gallery-article {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.js-visual02.swiper-outer {
  position: relative;
  overflow: hidden;
  width: 40%;
}

.js-visual02 .p-main-visual-slide-img::before {
  padding: 120% 0 0;
}

.js-visual02 .swiper-slide {
  height: auto;
}

.p-home-gallery {
  position: relative;
  padding: 5%;
  border-bottom: 1px solid #000;
}

.js-visual02 .p-main-visual-slide-img {
  background: no-repeat center;
  background-size: contain;
}

.p-home-gallery-text {
  width: 60%;
}

.p-home-gallery .textB {
  max-width: 630px;
  margin-bottom: 40px;
  line-height: 2;
  letter-spacing: 0.15em;
}

.p-home-gallery .ttlA {
  margin-bottom: 40px;
}

.p-home-gallery .swiper-pagination02 {
  padding-top: 20px;
}

.p-home-gallery .swiper-pagination02 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  opacity: 0.3;
}

.p-home-gallery .swiper-pagination02 .swiper-pagination-bullet-active {
  opacity: 1;
}

/*----------------------------------------
home-blog
----------------------------------------*/
.p-home-blog {
  position: relative;
  padding: 5% 0 150px;
}

@media screen and (max-width: 1024px) {
  .p-home-blog {
    padding: 70px 30px 12%;
  }
}

.p-home-blog .ttlA {
  margin-bottom: 40px;
}

.p-home-blog .btn a {
  position: absolute;
  right: 0;
}

.p-home-blog-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 400px;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .p-home-blog-bg {
    height: 300px;
  }
}

.p-home-blog-bg-img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 200%;
  background: no-repeat center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-home-blog-bg-img {
    top: 0;
    height: 100%;
    -webkit-transform: none !important;
    transform: none !important;
  }
}

.p-home-blog-bg-img.is-default {
  background: #777;
}

.p-home-blog-header-inner {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-home-blog-header-inner {
    padding: 0;
  }
}

.p-home-blog-articles {
  position: relative;
  z-index: 1;
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-home-blog-articles {
    padding: 40px 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-blog .c-btn {
    margin: 50px 0 0;
  }
}

/*----------------------------------------
home-shop
----------------------------------------*/
.p-home-shop {
  position: relative;
  padding: 5% 5% 140px;
  background: #e8e8e8;
}

.p-home-shop .ttlA {
  margin-bottom: 40px;
}

.p-home-shop .btn a {
  position: absolute;
  right: 0;
  bottom: -50px;
}

.p-home-shop-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center;
  background-size: cover;
  pointer-events: none;
}

.p-home-shop-article {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-article {
    flex-wrap: wrap;
  }
}

.p-home-shop-map {
  width: 100%;
  min-width: 50%;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-map {
    width: 100%;
    margin-bottom: 40px;
  }
}

.p-home-shop-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-map iframe {
    height: 360px;
  }
}

.p-home-shop-info {
  min-width: 50%;
  padding: 0 0 0 5vw;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info {
    padding: 40px 30px;
  }
}

.p-home-shop-info-col-row {
  display: -webkit-box;
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #959595;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info-col-row {
    display: block;
    padding: 20px 0;
  }
}

.p-home-shop-info-col-row:first-of-type {
  border-top: 0;
}

.p-home-shop-info-col-ttl {
  min-width: 130px;
  max-width: 40%;
  padding-right: 1em;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info-col-ttl {
    max-width: unset;
    margin: 0 0 10px;
    padding-right: 0;
  }
}

_:-ms-lang(x)::-ms-backdrop, .p-home-shop-info-col-ttl {
  padding-right: 0;
  margin-right: 1em;
}

.p-home-shop-info-col-desc {
  line-height: 2;
  letter-spacing: 0.15em;
  -webkit-box-flex: 1;
  flex: 1 1;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info-col-desc {
    font-weight: 500;
  }
}

.p-home-shop-info-col-btn {
  margin: 20px 0 0;
}

.p-home-shop-info-col-btn-icon,
.p-home-shop-info-col-btn-txt {
  position: relative;
  z-index: 1;
  line-height: 1;
  vertical-align: middle;
}

.p-home-shop-info-col-btn-icon {
  margin: 0 2px 0 0;
  font-size: 15px;
  font-size: 1.5rem;
}

.p-home-shop-info-col-btn-txt {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

.p-home-shop-info-col-btn-body {
  display: inline-block;
  padding: 5px 15px 10px;
  border: 1px solid #111;
  color: #111;
}

.p-home-shop-info-col-btn-body::before {
  background: #111;
}

.p-home-shop-btn {
  padding: 30px 0 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-btn {
    padding: 30px 0 20px;
  }
}

.p-home-shop-btn-icon {
  margin: 0 15px 0 0;
}

.p-home-shop-btn-body {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 15px 0;
  box-shadow: 0 -2px 0 #111 inset;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-home-shop-btn-body::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #ec7280;
  content: "";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-home-shop-btn-body:hover {
  color: #ec7280;
}

.p-home-shop-btn-body:hover::after {
  -webkit-animation-name: line-link-after-enter;
  animation-name: line-link-after-enter;
}

/*----------------------------------------
menu-course
----------------------------------------*/
.p-menu-course {
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-menu-course {
    margin: 0 0 30px;
    padding: 40px 30px 30px;
  }
}

@media screen and (max-width: 374px) {
  .p-menu-course {
    padding: 30px 10px;
  }
}

.p-menu-course-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: -20%;
  left: 0;
  background: no-repeat center;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-bg {
    bottom: -50%;
  }
}

.p-menu-course-list {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.p-menu-course-item {
  display: -webkit-box;
  display: flex;
  margin: 0 0 40px;
  padding: 80px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-item {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-item {
    padding: 40px 20px;
  }
}

.p-menu-course-data {
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-data {
    margin: 0 0 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-data {
    margin: 0 0 40px;
  }
}

.p-menu-course-data-ttl {
  margin: 0 0 30px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-menu-course-data-ttl {
    margin: 0 0 20px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.p-menu-course-data-desc {
  margin: 0 0 40px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  color: #777;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-menu-course-data-desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-menu-course-data-desc-small {
  margin: 40px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 2;
  color: #777;
  letter-spacing: 0.15em;
}

.p-menu-course-price-row {
  position: relative;
  display: -webkit-box;
  display: flex;
  margin: 0 0 15px;
  background: repeat-x center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-price-row {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-price-row {
    margin: 0 0 5px;
  }
}

.p-menu-course-price-ttl,
.p-menu-course-price-desc {
  position: relative;
  z-index: 1;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-menu-course-price-ttl,
  .p-menu-course-price-desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-menu-course-price-ttl-txt,
.p-menu-course-price-desc-txt {
  display: inline-block;
  text-align: left;
}

.p-menu-course-price-ttl {
  padding: 5px 0;
}

.p-menu-course-price-ttl-txt {
  padding: 0;
}

.p-menu-course-price-desc {
  padding: 0 0 5px;
  text-align: right;
}

.p-menu-course-price-desc-txt {
  padding: 0 0 0 10px;
}

.p-menu-course-images {
  display: -webkit-box;
  display: flex;
  padding: 0 0 0 80px;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-images {
    padding: 0;
  }
}

.p-menu-course-images-item {
  width: 100%;
  padding: 0 0 0 10px;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-images-item {
    width: 50%;
    padding: 0;
  }
}

/*----------------------------------------
menu-banner
----------------------------------------*/
.p-menu-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-menu-banner {
    padding: 40px 0;
  }
}

.p-menu-banner-list {
  display: -webkit-box;
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  -webkit-box-pack: center;
  justify-content: center;
}

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

.p-menu-banner-item {
  width: 50%;
  padding: 0 40px;
}

@media screen and (max-width: 1023px) {
  .p-menu-banner-item {
    width: 100%;
    margin: 0 0 30px;
    padding: 0 30px;
  }
}

.p-menu-banner-item:last-of-type {
  margin: 0;
}

.p-menu-banner-item-link {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: left;
}

.p-menu-banner-item-link::before {
  display: block;
  padding: 33% 0 0;
  content: "";
}

.p-menu-banner-item-link:hover .p-menu-banner-item-link-bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-menu-banner-item-link-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f5f5f5 no-repeat center;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-menu-banner-item-link-ttl {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  left: 0;
  padding: 0 60px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-menu-banner-item-link-ttl {
    padding: 0 30px;
  }
}

/*----------------------------------------
menu-items
----------------------------------------*/
.p-menu-items {
  position: relative;
  overflow: hidden;
  padding: 60px 0 160px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-menu-items {
    padding: 40px 0 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-items {
    padding: 40px 30px 60px;
  }
}

.p-menu-items-ttl {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .p-menu-items-ttl {
    margin: 0 0 30px;
  }
}

.p-menu-items-desc {
  margin: 0 0 70px;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .p-menu-items-desc {
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-items-desc {
    margin: 0 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-menu-items-desc p:not([class]) {
  margin: 0 0 10px;
  line-height: 1.5;
}

.p-menu-items-list {
  display: -webkit-box;
  display: flex;
  max-width: 1080px;
  margin: 0 auto -40px;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1090px) {
  .p-menu-items-list {
    display: block;
    margin: 0 auto;
  }
}

.p-menu-items-item {
  width: 360px;
  margin: 0 0 40px;
  padding: 0 40px;
  text-align: left;
}

@media screen and (max-width: 1090px) {
  .p-menu-items-item {
    display: -webkit-box;
    display: flex;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-items-item {
    display: block;
    margin: 0 0 40px;
    padding: 0;
  }
}

.p-menu-items-item-fig {
  margin: 0 0 20px;
  border: 1px solid #ddd;
  text-align: center;
}

@media screen and (max-width: 1090px) and (min-width: 768px) {
  .p-menu-items-item-fig {
    width: 30%;
  }
}

.p-menu-items-item-img {
  width: 100%;
}

.p-menu-items-item-cap {
  display: none;
}

@media screen and (max-width: 1090px) {
  .p-menu-items-item-data {
    padding: 0 0 0 30px;
    -webkit-box-flex: 1;
    flex: 1 1;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-items-item-data {
    padding: 0;
  }
}

.p-menu-items-item-ttl {
  margin: 0 0 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.p-menu-items-item-price {
  margin: 0 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-menu-items-item-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #e8e8e8;
}

/*----------------------------------------
staff-article
----------------------------------------*/
.p-staff-article {
  position: relative;
  overflow: hidden;
  margin: 100px 0 0;
  padding: 100px 0;
}

@media screen and (max-width: 1024px) {
  .p-staff-article {
    margin: 30px 0 0;
    padding: 30px;
  }
}

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

@media screen and (max-width: 767px) {
  .p-staff-article {
    padding: 15px 0;
  }
}

.p-staff-article-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: -20%;
  left: 0;
  background: no-repeat center;
  background-size: cover;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .p-staff-article-bg {
    bottom: -50%;
  }
}

.p-staff-article-bg.is-default {
  background-color: #f5f5f5;
}

.p-staff-article .c-single-pager {
  padding: 0;
}

/*----------------------------------------
staff-list
----------------------------------------*/
.p-staff-list {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .p-staff-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.p-staff-post {
  display: block;
  margin: 0 0 60px;
  padding: 0 200px 0 0;
}

@media screen and (max-width: 1024px) {
  .p-staff-post {
    margin: 0 0 40px;
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-staff-post {
    width: 50%;
    margin: 0 0 10px;
    padding: 15px;
  }
  .p-staff-post.is-single {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .p-staff-post {
    width: 100%;
  }
  .p-staff-post.is-single {
    width: 100%;
  }
}

@media screen and (max-width: 374px) {
  .p-staff-post {
    padding: 15px 5px;
  }
}

.p-staff-post:nth-child(even) {
  padding: 0 0 0 200px;
}

@media screen and (max-width: 1024px) {
  .p-staff-post:nth-child(even) {
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-staff-post:nth-child(even) {
    padding: 15px;
  }
}

@media screen and (max-width: 374px) {
  .p-staff-post:nth-child(even) {
    padding: 15px 5px;
  }
}

.p-staff-post:first-child:last-child {
  padding: 0;
}

@media screen and (max-width: 1023px) {
  .p-staff-post:first-child:last-child {
    padding: 15px;
  }
}

.p-staff-post-container {
  display: -webkit-box;
  display: flex;
  background: #fff;
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.05);
}

@media screen and (max-width: 1023px) {
  .p-staff-post-container {
    flex-wrap: wrap;
  }
}

.p-staff-post-thumb {
  position: relative;
  overflow: hidden;
  min-width: 350px;
  font-size: 0;
}

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

@media screen and (max-width: 1023px) {
  .p-staff-post-thumb {
    min-width: 100%;
  }
}

.p-staff-post-thumb::after {
  display: block;
  padding: 156% 0 0;
  content: "";
}

.p-staff-post-thumb-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-staff-post-thumb-src {
  display: none;
}

.p-staff-post-thumb-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-thumb-mobile {
    display: block;
  }
}

.p-staff-post-thumb-mobile::after {
  display: block;
  padding: 100% 0 0;
  content: "";
}

.p-staff-post-text {
  position: relative;
  width: 100%;
  padding: 70px 80px;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-text {
    padding: 30px 20px 50px 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-staff-post-text {
    padding: 30px 10px 50px 20px;
  }
}

@media screen and (max-width: 374px) {
  .p-staff-post-text {
    padding: 30px 10px 50px 15px;
  }
}

.p-staff-post-sts {
  margin: 0 0 10px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.5;
  color: #ec7280;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-sts {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-staff-post-en {
  margin: 0 0 5px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 4px;
  letter-spacing: 0.4rem;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-en {
    margin: 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-staff-post-en {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 374px) {
  .p-staff-post-en {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
  }
}

.p-staff-post-name {
  margin: 0 0 30px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-name {
    margin: 0 0 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-staff-post-desc {
  margin: 0 0 40px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-desc {
    margin: 0 0 20px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-staff-post-table {
  margin: 0 0 40px;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-table {
    display: block;
    margin: 0 0 30px;
  }
}

.p-staff-post-table-data {
  width: 100%;
  text-align: left;
}

.p-staff-post-table-row {
  display: -webkit-box;
  display: flex;
  margin: 0 0 10px;
  flex-wrap: wrap;
}

.p-staff-post-table-ttl {
  padding: 5px 30px 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.5px;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-table-ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-staff-post-table-desc {
  padding: 5px 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #777;
}

@media screen and (max-width: 1023px) {
  .p-staff-post-table-desc {
    margin: 0 0 10px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-staff-post-table-desc a {
  text-decoration: underline;
}

.p-staff-post-style-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 -2px 0 #111 inset;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.p-staff-post-style-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #ec7280;
  content: "";
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.p-staff-post-style-link:hover {
  color: #ec7280;
}

.p-staff-post-style-link:hover::after {
  -webkit-animation-name: line-link-after-enter;
  animation-name: line-link-after-enter;
}

.p-staff-post-style-link-icon {
  margin: 0 5px 0 0;
}

/***** refusal *****/
.refusal {
  border-top: 1px solid #959595;
  padding-top: 1em;
  margin-bottom: 30px;
  text-align: right;
}

.refusal img {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

@media screen and (max-width: 770px) {
  .refusal {
    margin-top: 15px;
  }
  .refusal img {
    max-width: 270px;
  }
}

hr.ShopInfo {
  margin: 0;
  border-top: 1px solid #333;
}

@media screen and (max-width: 600px) {
  .p-home-staff-slide {
    width: 100%;
    max-width: 320px;
  }
}

.appendDatepicker {
  position: relative;
}

.ui-datepicker {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

@media screen and (max-width: 767px) {
  .ui-datepicker {
    top: -100px !important;
  }
}

/* SNS POSITION SETTING SP */
@media screen and (min-width: 1025px) {
  .p-footer-copyright.sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .p-global-footer {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .p-footer-address-ttl {
    padding: 0;
    text-align: center;
    -webkit-box-ordinal-group: -1;
    order: -2;
  }
  .p-footer-infomation {
    width: 100%;
    margin: 1.5em auto;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .p-footer-sns {
    position: relative;
    top: 0;
    right: unset;
    margin: 0;
    padding: 0;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .p-footer-sns-item {
    margin: 0 5px;
  }
  .p-footer-copyright {
    display: block;
    margin: 0;
    text-align: center;
  }
  .p-footer-address-desc {
    padding: 0;
  }
}

.p-menu-course-bg {
  bottom: 0;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-bg {
    bottom: auto;
  }
}

img[src$="reloclub_logo.jpg"],
img[src$="fukuri_logo.jpg"] {
  max-width: 200px;
}

.p-home-staff-slider-disabled .p-home-staff-slide {
  pointer-events: auto;
}

.appendDatepicker {
  position: relative;
}

.ui-datepicker {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

@media screen and (max-width: 767px) {
  .ui-datepicker {
    top: -100px !important;
  }
}

/* SNS POSITION SETTING SP */
@media screen and (min-width: 1025px) {
  .p-footer-copyright.sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .p-global-footer {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .p-footer-address-ttl {
    padding: 0;
    text-align: center;
    -webkit-box-ordinal-group: -1;
    order: -2;
  }
  .p-footer-infomation {
    width: 100%;
    margin: 1.5em auto;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .p-footer-sns {
    position: relative;
    top: 0;
    right: unset;
    margin: 0;
    padding: 0;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .p-footer-sns-item {
    margin: 0 5px;
  }
  .p-footer-copyright {
    display: block;
    margin: 0;
    text-align: center;
  }
  .p-footer-address-desc {
    padding: 0;
  }
}

.p-menu-course-bg {
  bottom: 0;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-bg {
    bottom: auto;
  }
}

img[src$="reloclub_logo.jpg"],
img[src$="fukuri_logo.jpg"] {
  max-width: 200px;
}

/*----------------------------------------
main
*/
.js-body-wrapper {
  margin-top: -106px;
}

main {
  display: block;
}

@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.p-global-footer {
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-global-footer {
    padding: 30px 5% 25px;
  }
}

.p-footer-address-ttl {
  width: 100%;
  max-width: 179px;
}

@media screen and (max-width: 1024px) {
  .p-footer-address-ttl {
    margin: auto;
  }
}

.p-footer-infomation {
  width: calc(100% - 179px);
}

@media screen and (max-width: 767px) {
  .p-footer-infomation {
    width: 100%;
    margin: 0;
    padding: 25px 0 0;
  }
}

.p-foot-wrap {
  margin-top: 20px;
}

.p-footer-contact {
  padding: 90px 0;
}

@media screen and (max-width: 767px) {
  .p-footer-contact {
    padding: 60px 0;
  }
}

.p-footer-contact-info {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-icon.is-email {
    top: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-icon.is-tel {
    top: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer-contact-info-number {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer-copyright {
    padding-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  .p-footer-sns-icon {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-header {
  background: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  .p-header {
    background: rgba(255, 255, 255, 0.7);
  }
}

.p-header.is-white {
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  .p-header-contact {
    top: 0;
    right: 64px;
    display: -webkit-box;
    display: flex;
    height: 60px;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 30px;
    background: #8e8e8e;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact-block {
    display: block;
    width: auto;
    height: auto;
    margin-right: 19px;
    border: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact-ttl {
    margin: 0;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-header-contact-icon {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-burger-icon-line:nth-child(1) {
  width: 26px;
  margin: -10px 0 0;
}

.p-burger-icon-line:nth-child(2) {
  width: 20px;
  margin: 0 0 0 -3px;
}

.p-burger-icon-line:nth-child(3) {
  width: 26px;
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .js-body-wrapper {
    margin-top: 0;
  }
}

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

@media screen and (max-width: 767px) {
  .p-sp-menu-bg {
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-sp-menu-item {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .p-sp-menu-tel-number {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-sp-menu-tel-icon {
    margin: 0;
    font-size: 16px;
  }
}

.p-sp-menu-tel-icon::before {
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .p-sp-menu-tel-icon::before {
    margin: 0 2px 0 5px;
  }
}

@media screen and (max-width: 767px) {
  .p-sp-menu-contact-icon {
    margin: 0 5px 5px 0;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .p-sp-menu-contact-icon::before {
    margin: 0;
  }
}

/*----------------------------------------
c-breadcrumbs
----------------------------------------*/
.c-breadcrumbs {
  background: #cecece;
  line-height: 1.5;
}

.c-breadcrumbs-items {
  margin: 0 auto;
  padding: 17px 5%;
}

.c-breadcrumbs-item {
  display: inline;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #777;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .c-breadcrumbs-item {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-breadcrumbs-item:last-child::after {
  display: none;
}

.c-breadcrumbs-item::after {
  display: inline;
  margin: 0 20px;
  font-size: 1.1em;
  color: #111;
  content: "|";
}

@media screen and (max-width: 767px) {
  .c-breadcrumbs-item::after {
    margin: 0 0.7em;
  }
}

.c-breadcrumbs-link {
  color: #111;
}

/*----------------------------------------
c-btn
----------------------------------------*/
.c-btn {
  text-align: center;
}

.c-btn-body {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 20px 75px;
  border: 2px solid #111;
  outline: none;
  background: none;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .c-btn-body {
    width: 100%;
    padding: 20px 0;
  }
}

.c-btn-txt {
  position: relative;
  z-index: 0;
}

.c-btn-white .c-btn-body {
  border-color: #fff;
  color: #fff;
}

.c-btn-white .c-btn-body:hover {
  color: #111;
}

.c-btn-white .c-btn-body::before {
  background: #fff;
}

.c-btn-black .c-btn-body {
  border-color: #5d5d5d;
  background: #5d5d5d;
  color: #fff;
}

.c-btn-black .c-btn-body:hover {
  color: rgba(255, 255, 255, 0.5);
}

.c-btn-black .c-btn-body::before {
  background: #fff;
}

/*----------------------------------------
c-form
----------------------------------------*/
.c-form {
  display: block;
  width: 100%;
}

.c-form-lead,
.c-form-lead__confirm {
  margin: 0 0 50px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .c-form-lead,
  .c-form-lead__confirm {
    margin: 0 0 30px;
    text-align: left;
  }
}

.c-form-lead p:not([class]),
.c-form-lead__confirm p:not([class]) {
  margin: 0 0 20px;
}

@media screen and (max-width: 1024px) {
  .c-form-table,
  .c-form-tbody,
  .c-form-row,
  .c-form-ttl,
  .c-form-cnt {
    display: block;
  }
}

.c-form-table {
  width: 100%;
  margin: 0 0 50px;
}

.c-form-row + .c-form-row {
  border-top: 1px solid #e5e5e5;
}

@media screen and (max-width: 1024px) {
  .c-form-row + .c-form-row {
    margin-top: 20px;
    border-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-form-row + .c-form-row {
    margin-top: 15px;
  }
}

.c-form-ttl,
.c-form-cnt {
  vertical-align: top;
}

.c-form-ttl {
  width: 35%;
  padding: 40px 4%;
  background: #dcdbdb;
  white-space: nowrap;
	text-align: left;
}

@media screen and (max-width: 1024px) {
  .c-form-ttl {
    width: 100%;
    padding: 20px 25px;
  }
}

@media screen and (max-width: 767px) {
  .c-form-ttl {
    padding: 15px;
  }
}

.c-form-cnt {
  padding: 30px 4.4%;
  background: #fff;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .c-form-cnt {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 767px) {
  .c-form-cnt {
    padding: 15px;
  }
}

.c-form-cnt .error {
  margin: 10px 0 0;
}

.c-form-cnt .horizontal-item {
  display: inline-block;
  padding: 5px 0;
}

.c-form-label {
  display: -webkit-box;
  display: flex;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .c-form-label {
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .c-form-label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form-label-txt,
.c-form-label-val {
  display: block;
}

.c-form-label-val {
  margin: 0 0 0 15px;
  padding: 4px 13px;
  background: #5d5d5d;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .c-form-label-val {
    padding: 5px 8px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-form-label-val.is-any {
  background: #b9b9b9;
}

.c-form input:not([type="radio"]):not([type="checkbox"]),
.c-form textarea,
.c-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #b2b2b2;
  font-family: "游ゴシック体", "Yu Gothic", "游ゴシック", "Yu Gothic",
    "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  letter-spacing: 0.05rem;
  -webkit-transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .c-form input:not([type="radio"]):not([type="checkbox"]),
  .c-form textarea,
  .c-form select {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form
  input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder,
.c-form select::-webkit-input-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.c-form textarea::-moz-placeholder,
.c-form select::-moz-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder,
.c-form select:-ms-input-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder,
.c-form select::-ms-input-placeholder {
  color: #ccc;
}

.c-form
  input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder,
.c-form select::-webkit-input-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.c-form textarea::-moz-placeholder,
.c-form select::-moz-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder,
.c-form select:-ms-input-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder,
.c-form select::-ms-input-placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::placeholder,
.c-form textarea::placeholder,
.c-form select::placeholder {
  color: #ccc;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):hover,
.c-form input:not([type="radio"]):not([type="checkbox"]):focus,
.c-form textarea:hover,
.c-form textarea:focus,
.c-form select:hover,
.c-form select:focus {
  border-color: #777;
}

.c-form textarea {
  width: 100%;
  min-height: 200px;
  resize: vertical;
}

@media screen and (max-width: 767px) {
  .c-form textarea {
    min-height: 150px;
  }
}

.c-form input[type="radio"],
.c-form input[type="checkbox"] {
  display: none;
}

.c-form input[type="radio"] + span,
.c-form input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  margin: 0 30px 0 0;
  padding: 0 0 0 28px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.15em;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-form input[type="radio"] + span,
  .c-form input[type="checkbox"] + span {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.c-form input[type="radio"] + span::before,
.c-form input[type="checkbox"] + span::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #777;
  background: #fff;
  vertical-align: sub;
  content: "";
}

.c-form input[type="radio"] + span::after,
.c-form input[type="checkbox"] + span::after {
  position: absolute;
  top: 6px;
  left: 4px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-form input[type="radio"]:checked + span::after,
.c-form input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

.c-form input[type="radio"] + span::before {
  border-radius: 50%;
}

.c-form input[type="radio"] + span::after {
  border-radius: 50%;
  background: #111;
}

.c-form input[type="checkbox"] + span::before {
  border-width: 2px;
  border-radius: 1px;
}

.c-form input[type="checkbox"] + span::after {
  top: 4px;
  left: 6px;
  width: 5px;
  border: solid #111;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-form-privacy {
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .c-form-privacy {
    padding: 10px;
  }
}

.c-form-privacy-inner {
  overflow-y: auto;
  max-height: 200px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .c-form-privacy-inner {
    padding: 10px;
  }
}

.c-form-privacy-list-item {
  margin: 0 0 40px;
}

.c-form-privacy-ttl {
  margin: 0 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-form-privacy-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-form-privacy-subttl {
  margin: 0 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-form-privacy-subttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.c-form-privacy-txt {
  margin: 0 0 40px;
  line-height: 2;
}

.c-form-privacy-order {
  counter-reset: order 0;
}

.c-form-privacy-order.is-child {
  margin: -10px 0 30px;
}

.c-form-privacy-order-txt {
  margin: 0 0 20px;
}

.c-form-privacy-order-item {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 24px;
}

.c-form-privacy-order-item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #111;
  content: counter(order) ".";
  counter-increment: order 1;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 767px) {
  .c-form-privacy-order-item::before {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.c-form-consent {
  padding: 50px 0 40px;
  text-align: center;
}

.c-form-consent label {
  font-weight: 900;
}

.c-form-consent .error {
  margin: 10px 0 0;
}

@media screen and (max-width: 1024px) {
  .c-form .c-btn {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.c-form .c-btn br {
  display: none;
}

.c-form .c-btn-body {
  display: inline-block;
  margin: 15px;
  width: 240px;
}

@media screen and (max-width: 1024px) {
  .c-form .c-btn-body {
    margin: 0 0 30px;
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .c-form-btn-back {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

.mw_wp_form_confirm .is-confirm-none {
  display: none;
}

.mw_wp_form_input .c-form-lead__confirm,
.mw_wp_form_confirm .c-form-lead {
  display: none;
}

.mw_wp_form_confirm .c-form-lead__confirm {
  display: block;
}

.mw_wp_form_confirm .c-form-label-val {
  display: none;
}

.p-pagetop {
  display: -webkit-box;
  display: flex;
  width: 70px;
  height: 70px;
  background: rgba(93, 93, 93, 0.5);
  /* -webkit-transition: .3s;
  transition: .3s; */
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .p-pagetop {
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-pagetop {
    right: 10px;
    display: -webkit-box;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 1025px) {
  .p-pagetop:hover {
    opacity: 0.7;
  }
}

.p-pagetop-btn {
  margin-top: 8px;
  border-width: 2px 0 0 2px;
  border-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-pagetop-btn {
    width: 8px;
    height: 8px;
    margin-top: 2px;
  }
}

/*----------------------------------------
c-pagination
----------------------------------------*/
.c-pagination {
  text-align: center;
}

.c-pager {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-pager-item {
  margin: 5px 10px;
}

.c-pager-btn {
  display: block;
}

.c-pager-btn svg {
  width: 8px;
}

.c-pager-btn:hover svg {
  opacity: 0.6;
}

.c-pager-btn.is-current {
  border-bottom: 1px solid #111;
}

.c-pager-btn-txt {
  position: relative;
  z-index: 1;
  display: block;
  height: 30px;
  padding: 0 5px;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
}

/*----------------------------------------
pulldown
----------------------------------------*/
.c-pulldown {
  position: relative;
}

@media screen and (max-width: 767px) {
  .c-pulldown {
    width: 60%;
    min-width: 60%;
  }
}

.c-pulldown::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  width: 11px;
  height: 8px;
  background: url("../img/common/arr_down.svg") no-repeat 50% 50%;
  background-size: contain;
  pointer-events: none;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 374px) {
  .c-pulldown::after {
    right: 10px;
  }
}

.c-pulldown-select {
  min-width: 200px;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .c-pulldown-select {
    width: 100%;
    min-width: auto;
    padding: 10px 25px 10px 10px;
  }
}

@media screen and (max-width: 374px) {
  .c-pulldown-select {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.c-pulldown-select:hover,
.c-pulldown-select:focus {
  border-color: #777;
}

.c-about-ttl {
  text-align: center;
  opacity: 0.6;
}

.c-about-ttl-en {
  font-size: 40px;
  font-size: 4rem;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  vertical-align: middle;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .c-about-ttl-en {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.c-about-ttl-ja {
  font-weight: 700;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .c-about-ttl-ja {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.c-about-ttl-ja::before {
  display: inline-block;
  width: 1px;
  height: 32px;
  margin: 0 30px 0 20px;
  background: #111;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-weight: 300;
  vertical-align: middle;
  content: "";
}

@media screen and (max-width: 767px) {
  .c-about-ttl-ja::before {
    height: 18px;
    margin: 0 20px 0 10px;
  }
}

.p-about-message {
  padding: 70px 40px 90px;
  background-color: #e5e5e5;
}

@media screen and (max-width: 1024px) {
  .p-about-message {
    padding: 40px 5%;
  }
}

.p-about-message-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.p-about-message-figure {
  max-width: 1200px;
  margin: 35px auto 0;
}

@media screen and (max-width: 1024px) {
  .p-about-message-figure {
    margin-top: 20px;
  }
}

.p-about-message-figure-img {
  vertical-align: bottom;
}

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

.p-about-message-figure .-sp {
  display: none;
}

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

.p-about-message-text {
  margin-top: 60px;
  padding: 0 19.6%;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-message-text {
    margin-top: 25px;
    padding: 0 13%;
  }
}

@media screen and (max-width: 767px) {
  .p-about-message-text {
    padding: 0;
  }
}

.p-about-message-text p + p {
  margin-top: 2em;
}

.p-about-staff {
  padding: 60px 40px 40px;
}

@media screen and (max-width: 1024px) {
  .p-about-staff {
    padding: 40px 5% 0;
  }
}

.p-about-staff-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.p-about-staff-list {
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-list {
    display: -webkit-box;
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .p-about-staff-list {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: inherit;
    justify-content: inherit;
  }
}

@media screen and (max-width: 1024px) {
  .p-about-staff-item {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-about-staff-item {
    width: 100%;
  }
}

.p-about-staff-item-inner {
  display: -webkit-box;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-item-inner {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.p-about-staff-figure {
  position: relative;
  overflow: hidden;
  min-width: 350px;
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-figure {
    min-width: auto;
  }
}

.p-about-staff-figure::after {
  display: block;
  padding: 121.5% 0 0;
  content: "";
}

.p-about-staff-figure-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-about-staff-figure-img {
  display: none;
}

.p-about-staff-cnt {
  padding-left: 7%;
  -webkit-box-flex: 1;
  flex: 1 1;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-cnt {
    margin-top: 20px;
    padding: 0;
    flex: 1 auto;
  }
}

.p-about-staff-status {
  margin-top: 10px;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  color: #a0a0a0;
  letter-spacing: 0.12em;
}

.p-about-staff-name {
  margin: 0 0 15px;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-name {
    margin: 0 0 15px;
  }
}

.p-about-staff-name-ja {
  margin-right: 0.8em;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-name-ja {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-about-staff-name-en {
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  letter-spacing: 0.12em;
}

.p-about-staff-table-row {
  display: -webkit-box;
  display: flex;
  padding: 25px 0;
  border-top: 1px solid #b2b2b2;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-table-row {
    flex-direction: column;
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.p-about-staff-table-ttl {
  box-sizing: border-box;
  width: 25%;
  padding: 0 15px 0 5px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-table-ttl {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-about-staff-table-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-about-staff-table-desc {
  width: 75%;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-staff-table-desc {
    width: 100%;
    margin-top: 7px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-about-staff-table-desc a {
  text-decoration: underline;
}

.p-about-staff-table-desc p + p {
  margin-top: 2em;
}

.p-about-access {
  padding: 70px 0 120px;
  background-color: #e5e5e5;
}

@media screen and (max-width: 767px) {
  .p-about-access {
    padding: 40px 0 60px;
  }
}

.p-about-access-shop {
  padding-top: 60px;
}

@media screen and (max-width: 1024px) {
  .p-about-access-shop {
    padding-top: 25px;
  }
}

.p-about-access-shop + .p-about-access-shop {
  padding-top: 100px;
}

@media screen and (max-width: 1024px) {
  .p-about-access-shop + .p-about-access-shop {
    padding-top: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .p-about-access-map {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.p-about-access-map iframe {
  display: block;
  width: 80%;
  height: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-about-access-map iframe {
    width: 100%;
    height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .p-about-access-map iframe {
    height: 250px;
  }
}

.p-about-access-map + .p-about-access-cnt {
  position: relative;
  z-index: 2;
  top: -115px;
  margin-bottom: -115px;
}

@media screen and (max-width: 1024px) {
  .p-about-access-map + .p-about-access-cnt {
    top: 0;
    margin-bottom: 0;
  }
}

.p-about-access-cnt {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .p-about-access-cnt {
    padding: 0 5%;
  }
}

.p-about-access-cnt-inner {
  padding: 60px 16%;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .p-about-access-cnt-inner {
    padding: 16px 5%;
  }
}

.p-about-access-name {
  margin-bottom: 15px;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .p-about-access-name {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-about-access-table-row {
  display: -webkit-box;
  display: flex;
  padding: 25px 0;
  border-top: 1px solid #b2b2b2;
}

@media screen and (max-width: 1024px) {
  .p-about-access-table-row {
    flex-direction: column;
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
}

.p-about-access-table-row:first-child {
  border-top: 0;
}

.p-about-access-table-ttl {
  box-sizing: border-box;
  width: 30%;
  padding: 0 15px 0 5px;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-access-table-ttl {
    width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-about-access-table-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-about-access-table-desc {
  width: 70%;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  color: #777;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-about-access-table-desc {
    width: 100%;
    margin-top: 7px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-about-access-table-desc a {
  text-decoration: underline;
}

/*----------------------------------------
blog-main
----------------------------------------*/
.l-blog {
  background: #e5e5e5;
}

.l-blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px 80px;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .l-blog-main {
    padding: 40px 5% 20px;
  }
}

.p-blog-catnav {
  display: -webkit-box;
  display: flex;
  margin-bottom: 30px;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  letter-spacing: 0.15em;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-blog-catnav {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

.p-blog-catnav-ttl {
  font-weight: 700;
}

.p-blog-catnav-ttl::after {
  margin: 0 0.5em;
  content: "|";
}

@media screen and (max-width: 767px) {
  .p-blog-catnav-ttl::after {
    display: none;
  }
}

.p-blog-catnav-list {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

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

.p-blog-catnav-item {
  margin: 0 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
}

.p-blog-catnav-item.is-current {
  border-bottom: 1px solid #111;
}

.p-blog-catnav-item.is-current:hover {
  border-bottom-color: #999;
}

.p-blog-catnav-link {
  display: inline-block;
}

.p-blog-catnav-link:hover {
  color: #999;
}

.p-blog-catnav-link.is-current {
  border-bottom: 1px solid #111;
}

.p-blog-catnav-selector {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-blog-catnav-selector {
    display: inline-block;
    width: 60%;
    min-width: 60%;
  }
}

/*----------------------------------------
contact
----------------------------------------*/
.p-contact {
  padding: 60px 0 100px;
  background: #e5e5e5;
}

@media screen and (max-width: 1024px) {
  .p-contact {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-contact {
    padding: 30px 0 60px;
  }
}

.p-contact-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .p-contact-article {
    padding: 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-article {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-home-shop-info-name {
  margin-bottom: 20px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info-name {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-menu-article {
    padding: 35px 5% 40px;
  }
}

.p-sp-menu-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-sp-menu-link:hover {
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-main-visual {
    height: auto; /* ヘッダー全体は中身（画像＋キャンペーン枠）に合わせて自動 */
  }

  .p-main-visual .js-visual.p-main-visual-slide.swiper-outer,
  .p-main-visual .swiper-container,
  .p-main-visual .swiper-wrapper,
  .p-main-visual .swiper-slide,
  .p-main-visual-slide-item {
    height: calc(100vh - 60px - 150px); /* 高さを固定するのは画像部分だけ */
  }
  .p-main-visual-slide-img::before {
    content: none;
  }
  .p-main-visual-slide-img {
    height: 100%;
  }

  /* キャッチコピーの位置：ヘッダー全体ではなく「画像の高さ」を基準に計算 */
  .p-main-visual-catchcopy {
    top: calc((100vh - 60px - 150px) * 0.40);
  }

  .p-main-visual-catchcopy-inner {
    width: 94%;
  }
  .p-main-visual-catchcopy-sub {
    font-size: 3.8vw;
  }
  .p-main-visual-catchcopy-sub-txt {
    text-wrap: pretty;
  }
}
@media screen and (max-width: 767px) {
  .p-main-visual-pagination .swiper-pagination-bullet {
    margin: 0 0 0 12px;
  }
  .p-home-about-inner {
    display: none;
  }
  .p-home-about-txt {
    width: 100%;
    margin-left: 0;
    padding: 40px 5% 80px;
  }
  .p-home-block {
    display: block;
  }
  .p-home-block .image,
  .p-home-block .text-inner {
    width: 100%;
    padding: 0;
  }
  .p-home-block .image {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    padding-bottom: 36px;
  }
  .p-home-block .image::before {
    position: absolute;
    z-index: -1;
    top: -20%;
    left: -6%;
    width: 25%;
    height: 120%;
    background: #e8e8e8;
    content: "";
  }
  .menu-ul-wrap {
    display: block;
  }
  .menu-ul-list {
    width: 100%;
    margin-bottom: 20px;
    padding: 24px;
  }
  .menu-ul-list .text {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .menu-ul-ul li {
    margin-bottom: 15px;
  }
  .menu-ul-ul li .name {
    display: block;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .menu-ul-ul li .price {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .ttlA .main {
    margin-right: 15px;
    padding-right: 15px;
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: 3.5px;
    letter-spacing: 0.35rem;
  }
  .ttlA .sub {
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
  }
  .p-home-about-txt .ttlA {
    margin-bottom: 30px;
  }
  .p-home-block .btn,
  .btn {
    position: relative;
    margin-bottom: 40px;
  }
  .p-home-block .btn a,
  .btn a {
    max-width: 160px;
    margin: 0 0 0 auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-home-menu .ttlA {
    margin-bottom: 25px;
  }
  .p-home-menu .textB {
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .menu-ul-ttl {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-home-menu .btn {
    margin: 40px 0 0;
  }
  .p-home-menu .btn a {
    position: relative;
    right: 0;
  }
  .p-home-gallery {
    padding: 40px 5% 0;
  }
  .p-home-gallery .ttlA {
    margin-bottom: 25px;
  }
  .p-home-gallery .textB {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .p-home-gallery-article {
    flex-direction: column;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
  }
  .p-home-gallery-text {
    width: 100%;
  }
  .p-home-gallery .btn {
    margin-top: 15px;
  }
  .p-home-gallery .js-visual02.swiper-outer {
    width: 100%;
  }
  .p-home-gallery .js-visual02 .p-main-visual-slide-img {
    display: block;
  }
  .p-home-gallery .swiper-pagination02 {
    padding-top: 15px;
    text-align: center;
  }
  .p-home-gallery .swiper-pagination02 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .p-home-blog {
    padding: 40px 5%;
  }
  .p-home-blog-header-inner {
    width: 100%;
  }
  .p-home-blog-articles {
    width: 100%;
    padding: 0 15px;
  }
  .p-home-blog .ttlA {
    margin-bottom: 30px;
  }
  .p-home-blog .c-article-post-date {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-home-blog .c-article-post-cat {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-home-blog .c-article-post-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-home-blog .btn {
    margin: 0;
  }
  .p-home-blog .btn a {
    position: relative;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-shop-info {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-home-shop {
    padding: 40px 5%;
  }
  .p-home-shop-info-col-row {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-home-shop-map {
    margin-bottom: 5px;
  }
  .p-home-shop .btn {
    margin: 0;
  }
  .p-home-shop .btn a {
    position: relative;
    bottom: 0;
  }
}

.p-home-gallery-text {
  padding-right: 10%;
}

@media screen and (max-width: 767px) {
  .p-home-gallery-text {
    padding-right: 0;
  }
}

@media screen and (max-width: 420px) {
  .p-home-block .image::before {
    top: -28%;
    height: 128%;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-block {
    -webkit-box-align: start;
    align-items: start;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-block .text-inner {
    padding: 0 0 0 5%;
  }
}

@media screen and (max-width: 767px) {
  .p-home-block .text-inner {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-block .btn {
    position: relative;
  }
}

.p-home-block .btn a {
  margin: 0 0 0 auto;
}

@media screen and (max-width: 767px) {
  .p-home-block .btn a {
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .p-home-menu .btn {
    margin: 40px 0 0;
  }
}

.p-home-menu .btn a {
  right: 0;
}

@media screen and (max-width: 1024px) {
  .p-home-menu .btn a {
    position: relative;
    margin: 0 0 0 auto;
  }
}

.p-home-gallery .btn a {
  margin: 20px 0 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-home-gallery .btn.sp {
    display: block;
  }
}

.text-inner p {
  margin-bottom: 1.5em;
}

.p-home-gallery-article {
  max-width: 1400px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .p-main-visual-pagination pc {
    display: block;
  }
}

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

@media screen and (max-width: 1024px) {
  .p-menu-course {
    padding: 0;
  }
}

.p-menu-course-list {
  max-width: 100%;
  padding: 75px 0 0;
  background: #e5e5e5;
}

@media screen and (max-width: 767px) {
  .p-menu-course-list {
    padding: 0;
  }
}

.p-menu-course-item {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 12vw 80px 75px;
}

@media screen and (max-width: 767px) {
  .p-menu-course-item {
    padding: 12vw 5% 40px;
  }
}

.p-menu-course-item.is-high .p-menu-course-images {
  height: 80vw;
}

.p-menu-course-item.is-high .p-menu-course-data {
  margin-top: 40vw;
}

@media screen and (max-width: 767px) {
  .p-menu-course-item.is-high .p-menu-course-data {
    margin-top: 35vw;
  }
}

.p-menu-course-data {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
  padding: 7.5% 100px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 767px) {
  .p-menu-course-data {
    margin-top: 35vw;
    padding: 10% 5%;
  }
}

.p-menu-course-data-ttl {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .p-menu-course-data-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-menu-course-data-desc {
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .p-menu-course-data-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-menu-course-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 19.375vw;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-images {
    height: 240px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-images {
    height: 80vw;
  }
}

.p-menu-course-images-item {
  width: 100%;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-menu-course-price-ttl {
  max-width: 48%;
  padding: 3px 10px 3px 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-price-ttl {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-price-ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-menu-course-price-desc {
  max-width: 48%;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-price-desc {
    max-width: 80%;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-price-desc {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
  }
}

.p-menu-course-price-desc-txt {
  padding: 3px 10px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-menu-course-price-desc-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-menu-select {
  display: none;
  background: #e5e5e5;
}

@media screen and (max-width: 767px) {
  .p-menu-select {
    display: -webkit-box;
    display: flex;
    padding: 10px 5%;
    -webkit-box-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.p-menu-select__form {
  position: relative;
}

.p-menu-select__form::before {
  padding-right: 20px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  content: "MENU";
}

.p-menu-select__form-inner {
  display: inline-block;
  width: 200px;
}

.p-menu-course-price-row .blank {
  display: block;
  width: 10px;
  height: 1px;
  margin-top: 1.8rem;
  background: rgba(17, 17, 17, 0.2);
  -webkit-box-flex: 2;
  flex-grow: 2;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-images-item.pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-images-item.pc {
    display: none;
  }
}

/*----------------------------------------
blog-single
----------------------------------------*/
.l-blog-single {
  background: #e5e5e5;
}

.l-blog-single-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px 120px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .l-blog-single-main {
    padding: 50px 5% 120px;
  }
}

@media screen and (max-width: 767px) {
  .l-blog-single-main {
    padding: 30px 5%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-post-eyecatch {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-eyecatch {
    margin-bottom: 20px;
  }
}

.p-post-eyecatch-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-post-meta {
  display: -webkit-box;
  display: flex;
  margin: 0 0 20px;
  font-size: 15px;
  font-size: 1.5rem;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-post-meta {
    margin: 0 0 10px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-post-meta-item {
    margin: 0 0 10px;
  }
}

.p-post-meta-item + .p-post-meta-item::before {
  display: inline-block;
  margin: 0 1em 0 1.2em;
  vertical-align: middle;
  content: "|";
}

.p-post-meta-cat {
  display: inline-block;
  margin: 0 1em 0 0;
  border-bottom: 1px solid #111;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  vertical-align: middle;
  letter-spacing: 0.15em;
}

.p-post-meta-date {
  display: inline-block;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-weight: 900;
  vertical-align: middle;
  letter-spacing: 0.15em;
}

.p-post-ttl {
  margin: 0 0 40px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-post-ttl {
    margin: 0 0 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-post-content {
  padding: 70px 6.25% 80px;
  background: #fff;
  line-height: 2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1024px) {
  .p-post-content {
    padding: 50px 6.25%;
  }
}

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

.p-post-content > :not([class]):first-child {
  margin-top: 0;
}

.p-post-content > [class|="wp"] {
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .p-post-content > [class|="wp"] {
    margin: 24px 0 0;
  }
}

.p-post-content > p:not([class]) {
  margin: 2em 0 0;
}

@media screen and (max-width: 767px) {
  .p-post-content > p:not([class]) {
    margin: 24px 0 0;
  }
}

.p-post-content p + p:not([class]) {
  margin: 2em 0 0;
}

.p-post-content h2:not([class]) {
  margin-top: 80px;
  padding: 0 0 10px;
  border-bottom: 2px solid #111;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-post-content h2:not([class]) {
    margin-top: 40px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-post-content h3:not([class]) {
  display: inline-block;
  margin-top: 40px;
  padding: 0 0 6px;
  border-bottom: 1px solid #111;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-post-content h3:not([class]) {
    margin: 24px 0 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-post-content h4:not([class]) {
  margin-top: 40px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-post-content h4:not([class]) {
    margin: 24px 0 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-post-content > ol:not([class]) {
  margin: 40px 0 0;
  padding: 0 0 0 1em;
  counter-reset: order 0;
}

@media screen and (max-width: 767px) {
  .p-post-content > ol:not([class]) {
    margin: 24px 0 0;
  }
}

.p-post-content > ol:not([class]) > li:not([class]) {
  display: -webkit-box;
  display: flex;
}

.p-post-content > ol:not([class]) > li:not([class])::before {
  display: inline-block;
  margin: 0 0.5em 0 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #111;
  content: counter(order, decimal-leading-zero) "";
  counter-increment: order 1;
  -ms-grid-row-align: center;
  align-self: center;
}

.p-post-content > ol:not([class]) > li:not([class]) + li:not([class]) {
  margin: 0.5em 0 0;
}

.p-post-content > ul:not(.wp-block-gallery) {
  margin: 40px 0 0;
  padding: 0 0 0 1em;
}

@media screen and (max-width: 767px) {
  .p-post-content > ul:not(.wp-block-gallery) {
    margin: 24px 0 0;
  }
}

.p-post-content > ul:not(.wp-block-gallery) > li:not([class]) {
  display: -webkit-box;
  display: flex;
}

.p-post-content > ul:not(.wp-block-gallery) > li:not([class])::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 0.5em 0 0;
  border-radius: 50%;
  background: #111;
  content: "";
  -ms-grid-row-align: center;
  align-self: center;
}

.p-post-content
  > ul:not(.wp-block-gallery)
  > li:not([class])
  + li:not([class]) {
  margin: 0.5em 0 0;
}

.p-post-content b:not([class]),
.p-post-content strong:not([class]) {
  font-weight: 700;
}

.p-post-content em:not([class]) {
  font-style: italic;
}

.p-post-content .wp-block-image {
  position: relative;
}

.p-post-content .wp-block-image img {
  vertical-align: bottom;
}

.p-post-content .wp-block-image figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1em 1.5em;
  background: rgba(17, 17, 17, 0.3);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
}

.p-post-content .wp-block-quote {
  padding: 2em 2em 2em 3em;
  border-color: #777;
  background: #f5f5f5;
}

@media screen and (max-width: 767px) {
  .p-post-content .wp-block-quote {
    padding: 2em 1em 2em 2em;
  }
}

@media screen and (max-width: 767px) {
  .p-post-content .wp-block-audio audio {
    min-width: 100%;
  }
}

.p-post-content .wp-block-audio figcaption {
  margin: 0.5em 0 0;
}

.p-post-content .wp-block-file .wp-block-file__button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111 !important;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
  opacity: 1 !important;
}

@media screen and (max-width: 767px) {
  .p-post-content .wp-block-file .wp-block-file__button {
    width: 100%;
    margin: 10px 0 0;
  }
}

.p-post-content .wp-block-file .wp-block-file__button:hover {
  background: #111 !important;
  color: #fff !important;
}

.p-post-content .wp-block-code {
  padding: 2em;
  border: 0;
  border-radius: 0;
  background: #111;
  color: #f5f5f5;
}

.p-post-content .wp-block-pullquote {
  border-color: #111;
  color: #111;
}

@media screen and (max-width: 767px) {
  .p-post-content .wp-block-pullquote p:not([class]) {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.p-post-content .wp-block-button__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 45px;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #111;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-post-content .wp-block-button__link {
    width: 100%;
    margin: 10px 0 0;
  }
}

.p-post-content .wp-block-button__link:hover {
  background: #111;
  color: #fff;
}

.p-post-content .wp-block-separator {
  margin-right: auto;
  margin-left: auto;
  border-color: #111;
}

.p-post-content .wp-block-separator::before {
  color: #111;
}

.p-post-content .wp-block-calendar caption {
  color: #111;
}

.p-post-content .wp-block-calendar th:not([class]) {
  background: #f5f5f5;
}

.p-post-content .wp-block-calendar a {
  display: block;
  padding: 5px 0;
  color: #111;
}

.p-post-content .wp-block-embed__wrapper {
  text-align: center;
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper::after {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-post-content
  .wp-embed-aspect-4-3
  .wp-block-embed-youtube
  .wp-block-embed__wrapper::after {
  padding-top: 75%;
}

.p-post-content
  .wp-embed-aspect-16-9
  .wp-block-embed-youtube
  .wp-block-embed__wrapper::after {
  padding-top: 56.25%;
}

.p-post-content .wp-block-embed-twitter {
  text-align: center;
}

.p-post-content .wp-block-embed-twitter .wp-block-embed__wrapper {
  display: inline-block;
  border: 1px solid #ddd;
}

.p-post-content .addtoany_share_save_container {
  margin-top: 60px;
  text-align: center;
}

.p-post-section__txt {
  margin: 2em 0 0;
}

@media screen and (max-width: 767px) {
  .p-post-section__txt {
    margin: 24px 0 0;
  }
}

.p-post-section__eyecatch {
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .p-post-section__eyecatch {
    margin: 24px 0 0;
  }
}

.p-post-share {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-share {
    margin-top: 40px;
  }
}

.p-post-share-ttl {
  margin-bottom: 30px;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-post-share-ttl {
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.p-post-btnarea {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-post-btnarea {
    margin-top: 40px;
  }
}

.p-post-btnarea .c-btn-body {
  min-width: 300px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .p-post-btnarea .c-btn-body {
    min-width: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-article-nav {
  display: block;
  margin-top: 60px;
  padding: 35px;
  border: 1px solid #111;
}

@media screen and (max-width: 767px) {
  .p-article-nav {
    margin-top: 2em;
    padding: 20px;
  }
}

.p-article-nav__table-item {
  margin: 20px 0 0.5em;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .p-article-nav__table-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-article-nav__table-item a {
  display: inline-block;
  border-bottom: 1px solid #111;
}

.p-article-nav__table-item-child {
  padding: 0 0 0 0.5em;
}

.p-article-nav__table-item-child::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background: #111;
  vertical-align: middle;
  content: "";
}

/*----------------------------------------
style-single
----------------------------------------*/
.l-style-single {
  background: #e5e5e5;
}

.l-style-single-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .l-style-single-main {
    padding: 25px 16px 50px;
  }
}

.p-style-single {
  display: -webkit-box;
  display: flex;
  padding: 100px 80px 110px;
  background: #fff;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-style-single {
    display: block;
    padding: 70px 60px 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-style-single {
    padding: 20px 16px 40px;
  }
}

.p-style-single-images {
  width: 41%;
}

@media screen and (max-width: 1024px) {
  .p-style-single-images {
    width: 100%;
  }
}

.p-style-single-data {
  width: 59%;
  padding: 10px 0 0 40px;
}

@media screen and (max-width: 1024px) {
  .p-style-single-data {
    width: 100%;
    padding: 20px 0 0;
  }
}

.p-style-single-eyecatch {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  background: #f9f9f9;
  font-size: 0;
}

.p-style-single-eyecatch::after {
  display: block;
  padding-top: 121.4%;
  content: "";
}

.p-style-single-eyecatch-img {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-style-single-eyecatch-img.is-active {
  opacity: 1;
}

.p-style-single-eyecatch-img object-fit {
  position: relative;
  display: block;
}

.p-style-single-eyecatch-pic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center no-repeat;
  background-size: cover;
}

.p-style-single-eyecatch-src {
  display: none;
}

.p-style-single-slides {
  display: -webkit-box;
  display: flex;
  margin: 0 -5px;
  flex-wrap: wrap;
}

.p-style-single-slides-slide {
  width: 20%;
  padding: 5px;
  cursor: pointer;
}

.p-style-single-slides-img {
  position: relative;
}

.p-style-single-slides-img:hover::after {
  background: rgba(17, 17, 17, 0.3);
}

.p-style-single-slides-img::after {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 100%;
  background: rgba(17, 17, 17, 0);
  content: "";
  -webkit-transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-style-single-slides-img.is-active::after {
  background: rgba(17, 17, 17, 0.6);
}

.p-style-single-slides-pic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center no-repeat;
  background-size: cover;
}

.p-style-single-slides-src {
  display: none;
}

.p-style-single-ttl {
  margin: 0 0 15px;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-style-single-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-style-single-table-tbl {
  width: 100%;
  text-align: left;
}

.p-style-single-table-row + .p-style-single-table-row {
  border-top: 1px solid #cecece;
}

.p-style-single-table-ttl {
  width: 24%;
  padding: 20px 20px 20px 5px;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-style-single-table-ttl {
    display: block;
    width: auto;
    padding: 10px 0 0 5px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-style-single-table-desc {
  padding: 10px 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-style-single-table-desc {
    display: block;
    padding: 5px 0 10px 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-style-single-table-desc p + p {
  margin-top: 2em;
}

.p-style-single-table-desc a {
  text-decoration: underline;
}

.p-style-single-stylist-src {
  display: none;
}

.p-style-single-stylist-name {
  margin: 15px 0 0;
  font-size: 13px;
  font-size: 1.3rem;
  color: #777;
  text-align: center;
}

.p-style-single-stylist-data {
  overflow: hidden;
  padding: 0 0 0 40px;
}

@media screen and (max-width: 767px) {
  .p-style-single-stylist-data {
    padding: 0 0 0 20px;
  }
}

.p-style-single-stylist-ttl {
  margin: 0 0 15px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
  .p-style-single-stylist-ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-style-single-stylist-desc {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  color: #777;
}

@media screen and (max-width: 767px) {
  .p-style-single-stylist-desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-style-single-back {
  margin-top: 30px;
}

.p-style-single-back-link {
  display: block;
  max-width: 240px;
  margin: 0 0 0 auto;
  padding: 20px 0;
  border-bottom: 2px solid #111;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-style-single-back-link {
    max-width: 160px;
    padding: 12px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-style-single-back-link:hover {
  opacity: 0.7;
}

/*----------------------------------------
style-article
----------------------------------------*/
.p-style-article {
  background: #e5e5e5;
}

.p-style-article-inner {
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

@media screen and (max-width: 1024px) {
  .p-style-article-inner {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .p-style-article-inner {
    padding: 30px 20px 60px;
  }
}

/*----------------------------------------
style-nav
----------------------------------------*/
.p-style-nav {
  display: -webkit-box;
  display: flex;
  margin-bottom: 60px;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .p-style-nav {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-style-nav {
    margin-bottom: 5px;
  }
}

/*----------------------------------------
style-types
----------------------------------------*/
.p-style-types {
  display: -webkit-box;
  display: flex;
  margin: 0 0 20px;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-style-types {
    width: 100%;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}

.p-style-types-ttl {
  display: inline-block;
  min-width: 90px;
  margin: 0 5px 0 0;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.p-style-types-list {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

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

.p-style-types-item {
  margin: 0 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

.p-style-types-item.is-current {
  border-bottom: 1px solid #111;
}

.p-style-types-item.is-current:hover {
  border-bottom-color: #e8e8e8;
}

.p-style-types-link {
  display: inline-block;
}

.p-style-types-link:hover {
  color: #e8e8e8;
}

.p-style-types-link.is-current {
  border-bottom: 1px solid #111;
}

.p-style-types-selecter {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-style-types-selecter {
    display: inline-block;
    width: 60%;
    min-width: 60%;
  }
}

/*----------------------------------------
style-list
----------------------------------------*/
.p-style-list {
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-style-list {
    padding: 0 16px;
  }
}

.p-style-list .c-pagination {
  margin: 30px 0 0;
}

@media screen and (max-width: 767px) {
  .p-style-list .c-pagination {
    margin: 0;
  }
}

.p-style-post {
  display: block;
}

.p-style-post:hover .p-style-post-thumb-img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-style-post-thumb {
  position: relative;
  overflow: hidden;
  font-size: 0;
}

.p-style-post-thumb::after {
  display: block;
  padding: 121.3% 0 0;
  content: "";
}

.p-style-post-thumb-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: center no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s,
    -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-style-post-thumb-src {
  display: none;
}

.p-style-post-text {
  position: relative;
  padding: 18px 0 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-style-post-text {
    padding-top: 15px;
  }
}

.p-style-post-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 767px) {
  .p-style-post-ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-style-post-cat {
  display: inline-block;
}

.p-style-post-cat-tax {
  display: inline-block;
  margin: 10px 5px 0 0;
  font-size: 0;
}

.p-style-post-cat-tax:last-child {
  margin-right: 10px;
}

.p-style-post-cat-tax span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 50px;
  background: #f5f5f5;
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .p-style-post-cat-tax span {
    font-size: 10px;
    font-size: 1rem;
    page-break-after: 6px 11px;
  }
}

.p-style-post-stylist {
  display: inline-block;
  padding: 15px 0 15px 2px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-style-post-stylist {
    display: block;
    padding: 10px 0 10px 2px;
  }
}

.p-style-post-stylist-ttl {
  font-family: "Ubuntu", "Noto Sans Japanese", Arial, Helvetica;
}

.p-style-post-stylist-link {
  color: #e8e8e8;
  text-decoration: underline;
}

strong,
b {
  font-weight: inherit;
  font-weight: 700;
}

@media screen and (max-width: 320px) {
  .error404 .ttlA .main {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 770px) {
  body.home[data-menu="active"] {
    width: 100%;
  }
}

.c-form-ttl-note{
	display: block;
	margin-top: 10px;
}
.c-form-cnt-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.c-form-cnt-list:not(:first-child){
	margin-top: 10px;
}
.c-form-cnt-item {
	width: 42%;
}

.c-form-cnt-item:first-child {
	max-width: 60px;
}
@media screen and (max-width:767px){
	.c-form-cnt-item:first-child {
		max-width: unset;
		width: 100%;
	}
}
@media screen and (max-width:767px){
	.c-form-cnt-item:nth-child(2) {
		width: 60%;
	}
	.c-form-cnt-item:nth-child(3) {
		width: 30%;
	}
}
/* .c-form-cnt-item:not(:first-child) {
	margin-left: 10px;
}
@media screen and (max-width:767px){
	.c-form-cnt-item:not(:first-child) {
		margin-left: 0;
	}
} */
select.c-form-txt {
    height: 46px;
}
@media screen and (max-width:767px){
	select.c-form-txt {
			height: 43px;
	}
}

.wrap_mv {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.wrap_mv iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.p-footer-contact-info-btn:hover .p-footer-contact-info-text, 
.p-footer-contact-info-btn:hover .p-footer-contact-info-icon.is-email {
  color: #aaaaaa;
}

.p-footer-contact-info-btn:hover .p-footer-contact-info-text,
.p-footer-contact-info-btn:hover .p-footer-contact-info-icon.is-email {
  color: #aaaaaa;
}
.c-btn-body.sub:hover {
  color: #777777;
}
.p-home-menu-article.lazyload1 {
    width: 100%;
    padding: 80% 0 0px 0px;
}

/* スライドアニメーション */
@keyframes infinity-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.scroll-infinity__wrap {
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  animation: infinity-scroll-left 50s linear infinite;
  width: max-content; /* 横幅がコンテンツに応じて広がるように */
}

.scroll-infinity__item {
  flex-shrink: 0;        /* 横幅を潰さない */
  margin-right: 10px;    /* お好みで画像間に余白 */
}

/* 共通設定 */
.scroll-infinity__item img {
  height: 200px;  /* デフォルトは200px */
  width: auto;
  object-fit: cover;
  display: block;
}

/* PC版: 幅768px以上 */
@media screen and (min-width: 768px) {
  .scroll-infinity__item img {
    height: 350px;
  }
}
/* 共通：画像は親要素幅いっぱいに広がり高さは自動 */
.responsive-banner {
  display: block;        /* リンク内余白をなくす */
  width: 100%;           /* 親要素いっぱい */
  height: auto;          /* アスペクト比を維持 */
  max-width: 286px;      /* 最大幅（PC時の元画像幅） */
}

/* ===========================================
   体験の流れページ用CSS（完全版）
=========================================== */

/* ヒーローセクション（メッセージ） */
.p-trial-hero {
  background: #e5e5e5;
  color: #000;
  padding: 70px 0 120px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-trial-hero {
    padding: 40px 0 60px;
  }
}

.p-trial-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-trial-hero-inner {
    padding: 0 5%;
  }
}

.p-trial-hero .c-about-ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .p-trial-hero .c-about-ttl {
    margin-bottom: 25px;
  }
}

.p-trial-hero-text {
  margin-top: 60px;
  padding: 0 19.6%;
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1024px) {
  .p-trial-hero-text {
    margin-top: 25px;
    padding: 0 13%;
  }
}

@media screen and (max-width: 767px) {
  .p-trial-hero-text {
    padding: 0;
  }
}

.p-trial-hero-text p + p {
  margin-top: 2em;
}

.p-trial-hero-cta {
  margin-top: 50px;
}

/* メッセージセクションの下線ボタン */
.p-trial-hero .c-btn {
  text-align: center;
}

.p-trial-hero .c-btn--primary {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 15px 0;
  box-shadow: 0 -2px 0 #111 inset;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  text-decoration: none;
  color: #111;
  background: none;
  border: none;
}

.p-trial-hero .c-btn--primary::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #000;
  content: "";
  transform: translateX(-100%);
  animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
}

.p-trial-hero .c-btn--primary:hover {
  color: #000;
}

.p-trial-hero .c-btn--primary:hover::after {
  animation-name: line-link-after-enter;
}

/* セクションタイトル（太字・大きめ・中央揃え） */
.c-section-ttl,
.p-trial-steps .c-section-ttl,
.p-trial-info .c-section-ttl {
  position: relative;
  padding: 24px 0 0;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center !important;
  letter-spacing: 9px;
  letter-spacing: 0.9rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-section-ttl,
  .p-trial-steps .c-section-ttl,
  .p-trial-info .c-section-ttl {
    padding: 20px 0 0;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-section-ttl::before,
.p-trial-steps .c-section-ttl::before,
.p-trial-info .c-section-ttl::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 0 0 -14px;
  background: #000;
  content: "";
}

/* ステップセクション */
.p-trial-steps {
  padding: 60px 40px 40px;
}

@media screen and (max-width: 1024px) {
  .p-trial-steps {
    padding: 40px 5% 0;
  }
}

.p-trial-steps-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.p-trial-steps-list {
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .p-trial-steps-list {
    margin-top: 25px;
  }
}

/* 個別ステップ（左右交互レイアウト） */
.p-trial-step {
  margin-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-trial-step {
    margin-bottom: 60px;
  }
}

.p-trial-step-inner {
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 1024px) {
  .p-trial-step-inner {
    flex-direction: column;
  }
}

/* 偶数番目のステップは左右反転 */
.p-trial-step:nth-child(even) .p-trial-step-inner {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .p-trial-step:nth-child(even) .p-trial-step-inner {
    flex-direction: column;
  }
}

/* ステップ番号（おしゃれなデザイン） */
.p-trial-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100px;
  height: 100px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 900;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 4px solid white;
}

@media screen and (max-width: 1024px) {
  .p-trial-step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* 写真エリア */
.p-trial-step-figure {
  position: relative;
  overflow: hidden;
  width: 50%;
  font-size: 0;
  background: #f5f5f5;
}

@media screen and (max-width: 1024px) {
  .p-trial-step-figure {
    width: 100%;
    margin-bottom: 30px;
  }
}

.p-trial-step-figure::after {
  display: block;
  padding: 75% 0 0;
  content: "";
}

@media screen and (max-width: 1024px) {
  .p-trial-step-figure::after {
    padding: 60% 0 0;
  }
}

.p-trial-step-figure-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f5f5f5 center no-repeat;
  background-size: cover;
  transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-trial-step:hover .p-trial-step-figure-bg {
  transform: scale(1.05);
}

.p-trial-step-figure-img {
  display: none;
}

/* コンテンツエリア */
.p-trial-step-content {
  width: 50%;
  padding: 60px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px) {
  .p-trial-step-content {
    width: 100%;
    padding: 40px 30px;
  }
}

.p-trial-step-title {
  margin: 0 0 25px;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #2d3748;
}

@media screen and (max-width: 1024px) {
  .p-trial-step-title {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.p-trial-step-text {
  margin: 0 0 30px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4a5568;
}

@media screen and (max-width: 1024px) {
  .p-trial-step-text {
    margin: 0 0 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.p-trial-step-details {
  margin: 0 0 30px;
  padding: 0;
  background: none;
  border-radius: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #2d3748;
}

.p-trial-step-cta {
  margin-top: auto;
}

/* ステップセクションの下線ボタン */
.p-trial-step .c-btn--outline {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 0;
  box-shadow: 0 -2px 0 #111 inset;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  letter-spacing: 0.2rem;
  transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
  text-decoration: none;
  color: #111;
  background: none;
  border: none;
}

.p-trial-step .c-btn--outline::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: #000;
  content: "";
  transform: translateX(-100%);
  animation: line-link-after-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation-fill-mode: forwards;
}

.p-trial-step .c-btn--outline:hover {
  color: #000;
}

.p-trial-step .c-btn--outline:hover::after {
  animation-name: line-link-after-enter;
}

/* 補足情報セクション */
.p-trial-info {
  padding: 70px 0 120px;
  background-color: #e5e5e5;
}

@media screen and (max-width: 767px) {
  .p-trial-info {
    padding: 40px 0 60px;
  }
}

.p-trial-info-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 1024px) {
  .p-trial-info-inner {
    padding: 0 5%;
  }
}

.p-trial-info-content {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-top: 60px;
  padding: -1px 19.6%;
}

@media screen and (max-width: 1024px) {
  .p-trial-info-content {
    margin-top: 25px;
    padding: 0 13%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-trial-info-content {
    padding: 0;
  }
}

.p-trial-info-content p + p {
  margin-top: 2em;
}

/* 最終CTAセクション（背景画像付き） */
.p-trial-final-cta {
  position: relative;
  padding: 100px 0;
  color: white;
  overflow: hidden;
  background: #2d3748 center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-trial-final-cta {
    padding: 80px 0;
  }
}

.p-trial-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 55, 72, 0.8);
  z-index: 1;
}

.p-trial-final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .p-trial-final-cta-inner {
    padding: 0 15px;
  }
}

.p-trial-final-cta-title {
  font-size: 44px;
  font-size: 4.4rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: white;
  letter-spacing: 9px;
  letter-spacing: 0.9rem;
  line-height: 1.5;
  position: relative;
  padding-top: 24px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 767px) {
  .p-trial-final-cta-title {
    padding: 20px 0 0;
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.p-trial-final-cta-title::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: 0 0 0 -14px;
  background: #ec8d72;
  content: "";
}

.p-trial-final-cta-text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 80px;
  color: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 1024px) {
  .p-trial-final-cta-text {
    margin: 0 0 50px;
    padding: 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-trial-final-cta-text p:not([class]) {
  margin: 0 0 30px;
}

.p-trial-final-cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .p-trial-final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* 最終CTAの洗練されたボタン */
.p-trial-final-cta .c-btn {
  text-align: center;
}

.p-trial-final-cta .c-btn--primary,
.p-trial-final-cta .c-btn--outline {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 20px 45px;
  border: 2px solid transparent;
  outline: none;
  background: none;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2.5px;
  letter-spacing: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-decoration: none;
}

.p-trial-final-cta .c-btn--large {
  padding: 25px 60px;
  font-size: 16px;
  font-size: 1.6rem;
}

.p-trial-final-cta .c-btn--primary {
  background: #ec8d72;
  color: white;
  border-color: #ec8d72;
}

.p-trial-final-cta .c-btn--primary::before {
  background: #d6805b;
}

.p-trial-final-cta .c-btn--primary:hover {
  color: #e8e8e8;
}

.p-trial-final-cta .c-btn--outline {
  background: transparent;
  color: white;
  border-color: white;
}

.p-trial-final-cta .c-btn--outline::before {
  background: white;
}

.p-trial-final-cta .c-btn--outline:hover {
  color: #2d3748;
}

@media screen and (max-width: 767px) {
  .p-trial-final-cta .c-btn--primary,
  .p-trial-final-cta .c-btn--outline {
    width: 100%;
    max-width: 350px;
    padding: 20px 0;
  }
  
  .p-trial-final-cta .c-btn--large {
    padding: 22px 0;
  }
}
/*----------------------------------------
サブメニュードロップダウン機能のみ追加
----------------------------------------*/

/* メニュー全体を中央揃え */
.p-sp-menu-items {
  text-align: center;
}

.p-sp-menu-item {
  text-align: center;
}

/* サブメニュートグルボタンを既存リンクと同じスタイルに */
.submenu-toggle {
  width: 100%;
  border: none;
  background: none;
  text-align: center; /* 中央揃え */
  cursor: pointer;
  /* 既存の p-sp-menu-link と完全に同じスタイル */
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1.5px;
  letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
  .submenu-toggle {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.submenu-toggle:hover {
  border-bottom: 1px solid #fff;
}

/* 既存のリンクも中央揃え */
.p-sp-menu-link {
  text-align: center;
}

/* 矢印アイコン */
.submenu-arrow {
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.has-submenu.is-open .submenu-arrow {
  transform: rotate(180deg);
}

/* サブメニュー - 非表示状態 */
.submenu {
  display: none;
  margin: 0;
  padding: 0;
}

/* サブメニューアイテム */
.submenu-item {
  width: 100%;
  padding: 10px 30px;
  text-align: center; /* サブメニューも中央揃え */
}

/* サブメニューリンク - 既存と同じ白文字スタイル */
.submenu-item .p-sp-menu-link {
  /* 既存のスタイルをそのまま使用、サイズだけ少し小さく */
  font-size: 14px;
  font-size: 1.4rem;
  opacity: 0.9;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .submenu-item .p-sp-menu-link {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/*----------------------------------------
新着キャンペーン＋一覧リンクレイアウト用CSS
----------------------------------------*/

/* キャンペーンお知らせ全体にパルス効果 */
.campaign-notice {
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  }
}

/* 上部：新着キャンペーンタイトル */
.campaign-header {
  margin-bottom: 8px;
}

.campaign-header-title {
  display: inline-block;
  padding: 4px 12px;
  background: #111;
  color: #fff;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  from {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  to {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }
}

/* 中央：キャンペーンタイトル */
.campaign-content {
  margin-bottom: 10px;
}

.campaign-content-link {
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #111;
  text-decoration: none;
}

.campaign-content-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s;
}

.campaign-content-link:hover::before {
  left: 100%;
}

.campaign-content-title {
  display: block;
  margin: 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  /* PC版では全文表示、複数行OK */
  white-space: normal;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .campaign-content-title {
    display: block;
    max-width: 100%;
    white-space: normal;
    text-overflow: initial;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* 下部：キャンペーン一覧リンク */
.campaign-footer {
  text-align: right;
}

.campaign-footer-link {
  display: inline-block;
  padding: 5px 0;
  border-bottom: 2px solid #111;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #111;
  text-decoration: none;
  letter-spacing: 1px;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}

.campaign-footer-link:hover {
  opacity: 0.7;
  border-bottom-color: #666;
  color: #666;
}

.campaign-footer-text {
  position: relative;
}

/* スマートフォン版での調整 */
@media screen and (max-width: 767px) {
  .campaign-notice {
    animation: subtle-pulse-mobile 3s ease-in-out infinite;
  }
  
  @keyframes subtle-pulse-mobile {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.01);
    }
  }
  
  .campaign-header-title {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 3px 10px;
  }
  
  .campaign-footer-link {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* アクセシビリティ対応：アニメーションを望まないユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .campaign-notice,
  .campaign-header-title {
    animation: none;
  }
  
  .campaign-content-link::before {
    display: none;
  }
}

/* ブログ用スマホ動画対応 - 高さ自動調整版 */
.p-post-content .video_wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 40px 0;
    overflow: hidden;
    background: #000;
}

.p-post-content .video_wrapper > video {
    display: block;
    width: 100%;
    height: auto; /* 動画本来の比率で表示 */
}

/* スマホ用の追加調整 */
@media screen and (max-width: 767px) {
    .p-post-content .video_wrapper {
        margin: 24px 0;
    }
}

/*----------------------------------------
aboutページ：動画とテキストボックスの横幅統一
----------------------------------------*/

/* 動画の親要素に最大幅を設定 */
.p-about-message-figure {
  max-width: 1080px;
  margin: 0 auto;
}

/* テキストボックスにも同じ最大幅を設定 */
.p-about-message-text {
  max-width: 1080px;
  margin: 60px auto 0;
  padding: 0 40px;
}

/* タブレット対応 */
@media screen and (max-width: 1024px) {
  .p-about-message-figure {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .p-about-message-text {
    max-width: 100%;
    margin-top: 25px;
    padding: 0 30px;
  }
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .p-about-message-figure {
    padding: 0 20px;
  }
  
  .p-about-message-text {
    padding: 0 20px;
  }
}

.p-shop-news {
  max-width: 1200px;       /* ← 動画(.p-about-message-figure)と同じ幅 */
  margin: 35px auto 40px;  /* 動画の上マージン35pxに揃え、下に40px */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fafafa;
  overflow: hidden;
}
.p-shop-news-ttl {
  font-size: .95em;
  font-weight: bold;
  letter-spacing: .05em;
  margin: 0;
  padding: 12px 18px;
  background: #1a1a1a;     /* 既存のモノクロ基調に合わせた黒帯 */
  color: #fff;
}
.p-shop-news-list { list-style: none; margin: 0; padding: 0; }
.p-shop-news-item + .p-shop-news-item { border-top: 1px solid #eee; }
.p-shop-news-link {
  display: flex;
  align-items: baseline;
  gap: 1em;
  padding: 14px 18px;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.p-shop-news-link:hover { background: #f0f0f0; }
.p-shop-news-date {
  flex: 0 0 auto;
  color: #c00;             /* 赤アクセント */
  font-size: .85em;
  font-weight: bold;
}
.p-shop-news-title {
  flex: 0 0 auto;
  font-weight: bold;
}
.p-shop-news-excerpt {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #555;
  font-size: .9em;
}
@media (max-width: 600px) {
  .p-shop-news { max-width: 100%; }
  .p-shop-news-link {
    flex-wrap: wrap;       /* スマホは日付＋タイトルで折り返し */
    gap: .4em 1em;
  }
  .p-shop-news-title { flex: 1 1 100%; }
  .p-shop-news-excerpt { flex: 1 1 100%; white-space: normal; }
}

.p-shop-badge { margin: 60px 0 60px; text-align: center; }
.p-shop-badge-ttl {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 28px;
  line-height: 1.5;
}
.p-shop-badge-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 28px;
  max-width: 900px;        /* 680 → 900 に拡大 */
}
.p-shop-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 150px;            /* 110 → 150（5個並びを維持しつつ拡大）*/
}
.p-shop-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;            /* 96 → 130 に拡大 */
  height: 130px;
  border-radius: 50%;
  background: #f5f5f5;
}
.p-shop-badge-icon img { width: 96px; height: 96px; object-fit: contain; }  /* 72 → 96 */
.p-shop-badge-label { font-size: 1em; font-weight: bold; text-align: center; }

@media (max-width: 600px) {
  .p-shop-badge-list {
    gap: 18px 0;
    max-width: 100%;
  }
  .p-shop-badge-item { width: 25%; }   /* 4個並び（4-4-2）*/
  .p-shop-badge-icon { width: 64px; height: 64px; }
  .p-shop-badge-icon img { width: 48px; height: 48px; }
  .p-shop-badge-label { font-size: .75em; }
}
.p-shop-badge-sub {
  display: inline-block;
  margin: 36px auto 0;
  padding: 12px 32px 12px 28px;
  background: #1a1a1a;
  color: #fff;
  font-weight: bold;
  font-size: 1.05em;
  letter-spacing: .08em;
  border-left: 4px solid #c00;
  text-decoration: none;      /* リンクの下線を消す */
  transition: background .2s;
  position: relative;
}
.p-shop-badge-sub:hover {
  background: #333;           /* ホバーで少し明るく */
  color: #fff;
}
.p-shop-badge-ttl br.sp { display: none; }
@media (max-width: 600px) {
  .p-shop-badge-ttl br.sp { display: inline; }
}

.p-shop-faq {
  margin: 0;
  padding: 60px 20px;
  background: #f5f5f5;        /* 口コミ(白)の次なので薄グレーで交互に */
}
.p-shop-faq-ttl {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 28px;
}
.p-shop-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.p-shop-faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}
.p-shop-faq-q {
  font-weight: bold;
  position: relative;
  padding-left: 1.6em;
}
.p-shop-faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: #c00;
  font-weight: bold;
}
.p-shop-faq-a {
  margin: 10px 0 0;
  padding-left: 1.6em;
  position: relative;
  color: #555;
  line-height: 1.8;
}
.p-shop-faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

.p-shop-cta {
  margin: 0 0 60px;
  text-align: center;
}
.p-shop-cta-btn {
  display: inline-block;
  max-width: 480px;        /* バナーの最大幅を制限 */
  width: 100%;
}
.p-shop-cta-btn img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .p-shop-cta-btn { max-width: 100%; }   /* スマホは画面幅いっぱいでOK */
}

.p-shop-trainer {
  margin: 0;
  padding: 60px 20px;
  background: #f5f5f5;        /* 上下セクションとの境目をなくす薄グレー */
}
.p-shop-trainer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.p-shop-trainer-ttl {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 28px;
}
.p-shop-trainer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.p-shop-trainer-item {
  width: 200px;
  background: #fff;
  padding: 0 0 16px;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.p-shop-trainer-img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-shop-trainer-name {
  display: block;
  margin-top: 12px;
  padding: 0 10px;
  font-weight: bold;
}
/* 名前欄のインスタアイコン */
.p-shop-trainer-name a { display: inline-block; vertical-align: middle; margin-left: 6px; }
.p-shop-trainer-name img { width: 22px; height: 22px; display: inline-block; vertical-align: middle; }

.p-shop-trainer-more {
  text-align: center;
  margin-top: 32px;
}
.p-shop-trainer-more a {
  display: inline-block;
  border: 1px solid #333;
  padding: 12px 28px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  background: #fff;
  transition: all .2s;
}
.p-shop-trainer-more a:hover {
  background: #333;
  color: #fff;
}

/* スマホ：2人以上なら横スライド（リールと同じ方式）*/
@media (max-width: 600px) {
  .p-shop-trainer-list.is-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .p-shop-trainer-list.is-slider::-webkit-scrollbar { display: none; }
  .p-shop-trainer-list.is-slider .p-shop-trainer-item {
    flex: 0 0 70%;
    max-width: 70%;
    scroll-snap-align: center;
  }
  /* 1人だけのときは中央表示のまま */
  .p-shop-trainer-list:not(.is-slider) .p-shop-trainer-item {
    width: 70%;
  }
}

.p-shop-review {
  margin: 0;
  padding: 60px 20px;
  background: #fff;
}
.p-shop-review-inner {
  max-width: 900px;
  margin: 0 auto;
}
.p-shop-review-ttl {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 28px;
}

.p-shop-reel { margin: 0 0 60px; }
.p-shop-reel-ttl {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 28px;
}

/* PC：3つ横並び */
.p-shop-reel-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.p-shop-reel-item {
  flex: 1 1 0;
  max-width: 280px;
}
.p-shop-reel-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 9 / 16; /* リール縦型 */
  object-fit: cover;
}

/* スマホ：1つ表示＋横スワイプスライダー */
@media (max-width: 600px) {
  .p-shop-reel-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px;
    scrollbar-width: none; /* Firefox */
  }
  .p-shop-reel-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */
  .p-shop-reel-item {
    flex: 0 0 80%;       /* 1つを画面の80%幅で表示＝次がチラ見えして「スライドできる」と伝わる */
    max-width: 80%;
    scroll-snap-align: center;
  }
}

/* メッセージ本文内・特徴リスト */
.p-shop-msg-feat-ttl {
  font-size: 1.3em;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-left: 14px;
  border-left: 5px solid #c00;   /* 赤の縦ライン */
  line-height: 1.4;
}
.p-shop-msg-feat {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.p-shop-msg-feat li {
  position: relative;
  padding: 16px 16px 16px 44px;
  margin-bottom: 10px;
  background: #f7f7f7;
  border-radius: 6px;
  line-height: 1.7;
}
.p-shop-msg-feat li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: #c00;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / contain;
}
@media (max-width: 600px) {
  .p-shop-msg-feat li {
    padding: 14px 12px 14px 38px;
    font-size: .95em;
  }
  .p-shop-msg-feat li::before { left: 12px; }
}

.p-shop-feat-row {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 0 48px;
}
.p-shop-feat-row--rev { flex-direction: row-reverse; }  /* 2つ目は左右反転 */
.p-shop-feat-img { flex: 0 0 45%; }
.p-shop-feat-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.p-shop-feat-body { flex: 1 1 auto; }
.p-shop-feat-ttl {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 5px solid #c00;
}
.p-shop-feat-body p { line-height: 1.9; margin: 0 0 16px; }
.p-shop-feat-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.p-shop-feat-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  line-height: 1.7;
}
.p-shop-feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  background: #c00;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-shop-feat-row,
  .p-shop-feat-row--rev {
    flex-direction: column;   /* スマホは縦積みに */
    gap: 16px;
    margin-bottom: 36px;
  }
  .p-shop-feat-img { flex: none; width: 100%; }
  .p-shop-feat-ttl { font-size: 1.15em; }
}

.p-shop-msg2-closing { margin-top: 40px; }
.p-shop-msg2-closing p { line-height: 1.9; margin: 0 0 28px; }
.p-shop-msg2-closing .p-shop-feat-ttl { margin-top: 36px; }

.p-shop-msg2-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 0;
}
.p-shop-msg2-links a {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: .95em;
  transition: all .2s;
}
.p-shop-msg2-links a:hover {
  background: #333;
  color: #fff;
}
@media (max-width: 600px) {
  .p-shop-msg2-links a {
    flex: 1 1 calc(50% - 6px);   /* スマホは2列 */
    text-align: center;
    padding: 12px 8px;
    font-size: .85em;
  }
}

.p-shop-cta--btm {
  background: #f5f5f5;     /* FAQ・アクセスと同じ薄グレー */
  padding: 60px 20px;
  margin: 0;
}

/* 開閉式・最新情報 */
.p-shop-news-details summary {
  cursor: pointer;
  list-style: none;            /* デフォルトの三角マーカーを消す */
}
.p-shop-news-details summary::-webkit-details-marker { display: none; }
.p-shop-news-details summary::after {
  content: "＋";
  margin-left: auto;
  color: #c00;
  font-weight: bold;
  flex: 0 0 auto;
}
.p-shop-news-details[open] summary::after { content: "−"; }
.p-shop-news-body {
  padding: 0 18px 18px;
  line-height: 1.9;
  color: #444;
}
.p-shop-news-body p { margin: 0 0 1em; }
.p-shop-news-details[open] .p-shop-news-excerpt {
  display: none;               /* 開いたら抜粋を隠す（全文と重複するため）*/
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@charset "UTF-8";
/* =====================================================================
   page-menu-plantable.css (v4)
   主な変更点:
   - アクセントカラーをロゴの黄色系に変更(ピンクから変更)
   - ジャンプナビを帯状の背景で囲み、浮いた印象を解消
   - プラン表カードをPCは6列固定・SPは1列固定に変更(中途半端な折返しを解消)
   - シングル/ペアの表記を明示化、1回換算を価格の下に配置
   - 比較・通い方セクションを帯状の背景で囲み、他セクションとの一体感を出す
   ===================================================================== */

:root {
  --rj-accent: #f2c230;       /* ロゴに近い黄色 */
  --rj-accent-dark: #d9a800;
  --rj-accent-soft: rgba(242, 194, 48, 0.16);
  --rj-ink: #111;
  --rj-success: #2e9e5b;
  --rj-nutrition: #7a6bd6;
  --rj-muted: #777;
  --rj-line: #e5e5e5;
  --rj-band: #e5e5e5;
  --rj-surface: #fff;
}

/* ---------------------------------------------------------------
   1. ジャンプナビ(headline直後)
   PC: ピルナビを表示 / SP: 既存のプルダウンを表示
   --------------------------------------------------------------- */
.p-menu-navband-wrap {
  background: var(--rj-band);
  padding: 24px 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-menu-navband-wrap {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-navband-wrap {
    padding: 0;
  }
}

.p-menu-nav-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

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

.p-menu-nav-pill {
  border: 1px solid #ccc;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #555;
  background: #fff;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-menu-nav-pill.is-featured {
  border-color: var(--rj-accent-dark);
  color: var(--rj-ink);
  background: var(--rj-accent-soft);
}

.p-menu-nav-pill:hover {
  background: var(--rj-accent);
  border-color: var(--rj-accent-dark);
  color: var(--rj-ink);
}

/* ---------------------------------------------------------------
   1.5 強みセクション(コース料金表の直前・中央揃い)
   --------------------------------------------------------------- */
.p-menu-strength {
  background: var(--rj-band);
  padding: 30px 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-strength {
    padding: 25px 0;
  }
}

.p-menu-strength-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-menu-strength-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-strength-inner {
    padding: 0 20px;
  }
}

.p-menu-strength-ttl {
  position: relative;
  padding: 24px 0 0;
  margin: 0 0 50px;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-menu-strength-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 3px;
  margin-left: -10px;
  background: var(--rj-accent-dark);
}

@media screen and (max-width: 767px) {
  .p-menu-strength-ttl {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.p-menu-strength-item {
  margin: 0 0 60px;
}

.p-menu-strength-item:last-child {
  margin-bottom: 0;
}

.p-menu-strength-item-img {
  margin: 0 0 24px;
}

.p-menu-strength-item-img img {
  max-width: 100%;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.p-menu-strength-item-heading {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .p-menu-strength-item-heading {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.p-menu-strength-item-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
  letter-spacing: 0.05em;
}
.p-menu-course-item.is-featured .p-menu-course-data-ttl {
  font-size: 34px;
  font-size: 3.4rem;
  position: relative;
  padding-left: 18px;
}

.p-menu-course-item.is-featured .p-menu-course-data-ttl::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 4px;
  height: calc(100% - 12px);
  background: var(--rj-accent);
}

@media screen and (max-width: 767px) {
  .p-menu-course-item.is-featured .p-menu-course-data-ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.p-menu-course-item.is-compact .p-menu-course-data-ttl {
  font-size: 22px;
  font-size: 2.2rem;
  color: #444;
}

@media screen and (max-width: 767px) {
  .p-menu-course-item.is-compact .p-menu-course-data-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-menu-course-item.is-compact .p-menu-course-price-ttl,
.p-menu-course-item.is-compact .p-menu-course-price-desc {
  font-size: 14px;
  font-size: 1.4rem;
}

/* ---------------------------------------------------------------
   2.5 組み合わせ例タグ(通い方カードの中で使用)
   --------------------------------------------------------------- */
.p-menu-usage-card-combo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
}

.p-menu-combo-tag {
  display: inline-block;
  background: var(--rj-accent);
  border: 2px solid var(--rj-accent-dark);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--rj-ink);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.p-menu-combo-plus {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rj-accent-dark);
}

/* ---------------------------------------------------------------
   3.4 コース詳細ページへのリンク(太字)
   --------------------------------------------------------------- */
.p-menu-course-extralink {
  margin: 20px 0 0;
  text-align: right;
}

.p-menu-course-extralink a {
  display: inline-block;
  width: 220px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rj-ink);
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rj-ink);
  text-align: right;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.p-menu-course-extralink a:hover {
  opacity: 0.7;
}

/* ---------------------------------------------------------------
   3.5 コース下部の問い合わせバナー
   --------------------------------------------------------------- */
.p-menu-course-banner {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--rj-line);
  border-radius: 8px;
}

.p-menu-course-banner a {
  display: block;
  line-height: 0;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-menu-course-banner a:hover {
  opacity: 0.8;
}

.p-menu-course-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ---------------------------------------------------------------
   3. プラン表カード(月1〜月6) — PC6列固定 / SP1列固定
   --------------------------------------------------------------- */
.p-menu-course-plantable {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 30px 0 24px;
}

@media screen and (max-width: 1024px) {
  .p-menu-course-plantable {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.p-menu-course-plantable-card {
  position: relative;
  background: var(--rj-surface);
  border: 1px solid var(--rj-line);
  border-radius: 10px;
  padding: 18px 14px 16px;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.04);
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable-card {
    padding: 16px 14px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-menu-course-plantable-card.is-recommended {
  border: 1px solid var(--rj-accent-dark);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.08);
}

.p-menu-course-plantable-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 10px;
  min-height: 18px;
}

.p-menu-course-plantable-badge {
  display: inline-block;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: normal;
  overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable-badge {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 4px 10px;
  }
}

.p-menu-course-plantable-badge.is-badge-recommend {
  background: #fff;
  color: #b8720a;
  font-weight: 900;
  letter-spacing: 0.06em;
  border: 1px solid var(--rj-accent);
}

.p-menu-course-plantable-badge.badge-24hジム無料,
.p-menu-course-plantable-badge.badge-24h無料 {
  background: var(--rj-success);
  color: #fff;
}

.p-menu-course-plantable-badge.badge-管理栄養士無料 {
  background: var(--rj-nutrition);
  color: #fff;
}

.p-menu-course-plantable-label {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--rj-ink);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rj-line);
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable-label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-menu-course-plantable-row {
  margin: 0 0 10px;
}

.p-menu-course-plantable-row:last-child {
  margin-bottom: 0;
}

.p-menu-course-plantable-type {
  display: block;
  font-size: 10px;
  font-size: 1rem;
  color: var(--rj-muted);
  margin: 0 0 2px;
}

.p-menu-course-plantable-price {
  display: block;
  font-weight: 900;
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--rj-ink);
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable-type {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .p-menu-course-plantable-price {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-menu-course-plantable-row .unit {
  display: block;
  color: var(--rj-muted);
  font-size: 10px;
  font-size: 1rem;
  margin-top: 1px;
}

@media screen and (max-width: 767px) {
  .p-menu-course-plantable-row .unit {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------------
   3.7 コース内比較ブロック(価格表のすぐ下・コースごと)
   --------------------------------------------------------------- */
.p-menu-course-compare {
  margin: 24px 0 0;
}

.p-menu-course-compare-ttl {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rj-ink);
  margin: 0 0 14px;
  text-align: left;
  letter-spacing: 0.05em;
}

.p-menu-course-compare-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .p-menu-course-compare-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.p-menu-course-compare-card {
  background: var(--rj-band);
  border: 1px solid var(--rj-line);
  border-radius: 8px;
  padding: 18px 20px;
  text-align: left;
}

.p-menu-course-compare-card.is-accent {
  background: #fff;
  border: 2px solid var(--rj-accent-dark);
}

.p-menu-course-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto -20px;
  border-radius: 50%;
  background: var(--rj-ink);
  color: #fff;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-menu-course-compare-vs {
    margin: -8px auto;
  }
}

.p-menu-course-compare-card-img {
  margin: 0 0 12px;
}

.p-menu-course-compare-card-img img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.p-menu-course-compare-card-label {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rj-muted);
  margin: 0 0 8px;
  letter-spacing: 0.08em;
}

.p-menu-course-compare-card.is-accent .p-menu-course-compare-card-label {
  color: var(--rj-accent-dark);
}

.p-menu-course-compare-card-text {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
  letter-spacing: 0.03em;
}

/* ---------------------------------------------------------------
   4. 一般ジムとの比較(旧・独立セクション用、現在は未使用)
   --------------------------------------------------------------- */
.p-menu-compare {
  background: var(--rj-band);
  padding: 70px 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-compare {
    padding: 50px 0;
  }
}

.p-menu-compare-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 1024px) {
  .p-menu-compare-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-compare-inner {
    padding: 0 20px;
  }
}

.p-menu-compare-block {
  margin-bottom: 32px;
}

.p-menu-compare-block:last-child {
  margin-bottom: 0;
}

.p-menu-compare-block-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--rj-ink);
  margin: 0 0 20px;
  text-align: left;
  letter-spacing: 0.05em;
}

.p-menu-compare-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

@media screen and (max-width: 767px) {
  .p-menu-compare-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-menu-compare-card {
  background: var(--rj-surface);
  border: 1px solid var(--rj-line);
  border-radius: 10px;
  padding: 28px 30px;
  text-align: left;
}

.p-menu-compare-card.is-accent {
  border: 2px solid var(--rj-accent-dark);
  box-shadow: 0 10px 24px rgba(242, 194, 48, 0.22);
}

.p-menu-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: auto -28px;
  border-radius: 50%;
  background: var(--rj-ink);
  color: #fff;
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-menu-compare-vs {
    margin: -8px auto;
  }
}

.p-menu-compare-card-img {
  margin: 0 0 16px;
}

.p-menu-compare-card-img img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}

.p-menu-compare-card-label {
  font-family: "Ubuntu", "Noto Sans JP", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rj-muted);
  margin: 0 0 10px;
  letter-spacing: 0.1em;
}

.p-menu-compare-card.is-accent .p-menu-compare-card-label {
  color: var(--rj-accent-dark);
}

.p-menu-compare-card-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------------
   5. 通い方の例(白背景・強みセクションの直後)
   --------------------------------------------------------------- */
.p-menu-usage {
  background: var(--rj-band);
  padding: 30px 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .p-menu-usage {
    padding: 20px 0;
  }
}

.p-menu-usage-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

@media screen and (max-width: 1024px) {
  .p-menu-usage-inner {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .p-menu-usage-inner {
    padding: 0 20px;
  }
}

.p-menu-usage-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--rj-ink);
  margin: 0 0 20px;
  text-align: left;
  letter-spacing: 0.05em;
}

.p-menu-usage-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-left: 4px solid var(--rj-accent-dark);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 0 0 14px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
}

.p-menu-usage-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rj-accent-soft);
}

.p-menu-usage-card-icon i {
  font-size: 20px;
  color: var(--rj-accent-dark);
}

.p-menu-usage-card-icon.is-image {
  overflow: hidden;
  background: var(--rj-band);
}

.p-menu-usage-card-icon.is-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-menu-usage-card-ttl {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--rj-ink);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}

.p-menu-usage-card-text {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.85;
  margin: 0;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-menu-usage-card {
    padding: 18px 20px;
    gap: 12px;
  }
  .p-menu-usage-card-icon {
    width: 38px;
    height: 38px;
  }
  .p-menu-usage-card-icon i {
    font-size: 16px;
  }
}
/* =====================================================================
   home-menu-extralink.css
   トップページ(front-page.php)の「menu-ul-list」内、価格リストの
   直下に表示するコース詳細ページへのリンク(太字)。
   既存の style.css の末尾に追記してください。
   ===================================================================== */

.menu-ul-extralink {
  margin: 16px 0 0;
  text-align: left;
}

.menu-ul-extralink a {
  font-weight: 900;
  font-size: 15px;
  font-size: 1.5rem;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.05em;
}

.menu-ul-extralink a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .menu-ul-extralink a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}