@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 3s ease-in-out forwards;
          animation: stroke 3s ease-in-out forwards;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2.5;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_n2 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time_n3 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.delay-time_n4 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

html {
  margin-top: 0 !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.111vw, 16px);
  color: #030303;
  background-color: #fff;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

main {
  overflow: hidden;
  margin-top: 0;
}

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

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #030303;
}

li {
  list-style: none;
}

img, video, iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.coming {
  text-align: center;
  font-size: 1.333em;
  margin-bottom: 3em;
}

/* section common
====================================== */
.section__inner {
  padding: 7.25em 8.333%;
  max-width: calc(1600px + 16.666%);
  margin: auto;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .section__inner {
    padding: 4em 9.23%;
  }
}
@media (max-width: 768px) {
  .section__inner {
    padding: 4em 10.667%;
  }
}
.section__inner-s {
  padding: 4em 12.5%;
  max-width: calc(1440px + 25%);
}
@media (max-width: 1024px) {
  .section__inner-s {
    padding: 4em 10%;
  }
}
@media (max-width: 768px) {
  .section__inner-s {
    padding: 4em 10.667%;
  }
}
.section__inner-l {
  padding: 4em 4.1667%;
  max-width: calc(1760px + 8.3334%);
}
@media (max-width: 1024px) {
  .section__inner-l {
    padding: 4em 3%;
  }
}
@media (max-width: 768px) {
  .section__inner-l {
    padding: 4em 5.333%;
  }
}
.section__title {
  position: relative;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .section__title {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.section__title--center {
  text-align: center;
}
.section__title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .section__title-en {
    font-size: 2.5em;
  }
}
.section__title-jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .section__title-jp {
    font-size: 0.8125em;
  }
}
.section__title-2 {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .section__title-2 {
    font-size: 1.25em;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.section__title-2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.5rem;
  height: 4px;
  display: block;
  background-color: #BCA072;
}
.section__catch {
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.667;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .section__catch {
    font-size: 1.5625em;
    line-height: 1.8;
  }
}
.section__catch span {
  color: #fff;
  line-height: 1.3667;
  display: inline-block;
  background-color: #FF5800;
  padding: 0 0.2em 0 0.1em;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .section__catch span {
    padding: 0.05em 0.15em 0.05em 0.35em;
  }
}
.section__lead {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 2.1429;
  margin-bottom: 1.4rem;
}

.breadcrumbs {
  width: 100%;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  color: #424242;
  font-weight: 400;
  background-color: #F8F8F8;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
@media (max-width: 768px) {
  .breadcrumbs__inner {
    padding-left: 5.333%;
    padding-right: 5.333%;
  }
}
.breadcrumbs__inner > span:nth-child(1) a {
  border-bottom: 1px solid #424242;
  color: #424242;
}
.breadcrumbs__inner > span:nth-child(2) span, .breadcrumbs__inner > span:nth-child(2) a {
  color: #787878;
}
.breadcrumbs__inner > span:nth-child(3) span, .breadcrumbs__inner > span:nth-child(3) a {
  color: #BBBBBB;
}
.breadcrumbs a {
  display: block;
}
.breadcrumbs span {
  display: block;
  line-height: 1.35;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* before_after
======================================= */
.e_before_after__item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.e_before_after__item-info {
  font-size: 1.125em;
  font-weight: bold;
  color: #424242;
  line-height: 1;
  display: inline-block;
  border: 1px solid #030303;
  border-radius: 50px;
  padding: 0.5em 1.25em;
}
@media (max-width: 768px) {
  .e_before_after__item-info {
    font-size: 0.875em;
  }
}
.e_before_after__item-images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
}
.e_before_after__item-images::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4em;
  height: 4em;
  background: url(../img/common/icons/icon_before_after.svg) no-repeat center center/contain;
}
@media (max-width: 768px) {
  .e_before_after__item-images::after {
    width: 2em;
    height: 2em;
  }
}
.e_before_after__item-images-img {
  width: 47%;
  position: relative;
  position: relative;
}
.e_before_after__item-images-img::before {
  content: "";
  display: block;
  padding-top: 116.16%;
}
.e_before_after__item-images-img img, .e_before_after__item-images-img video, .e_before_after__item-images-img iframe, .e_before_after__item-images-img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .e_before_after__item-images-img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .e_before_after__item-images-img::before {
    padding-top: 119%;
  }
}
.e_before_after__item-images-img span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1;
  padding: 4px 0.625rem;
}
@media (max-width: 768px) {
  .e_before_after__item-images-img span {
    font-size: 1.5em;
    padding: 0.4065rem 0.625rem;
  }
}
.e_before_after__item-images-img span.before {
  background-color: #030303;
  color: #fff;
}
.e_before_after__item-images-img span.after {
  background-color: #fff;
}
.e_before_after__item-list-item {
  font-size: 1.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.8125rem 1rem 0;
  border-bottom: 1px solid #BBBBBB;
}
@media (max-width: 768px) {
  .e_before_after__item-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .e_before_after__item-list-item:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.e_before_after__item-list-item-title {
  width: 35%;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  background-color: #030303;
  line-height: 1;
  padding: 0.5em;
  text-align: center;
}
@media (max-width: 768px) {
  .e_before_after__item-list-item-title {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.e_before_after__item-list-item-text {
  width: 60%;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .e_before_after__item-list-item-text {
    width: 100%;
  }
}

/* e_column
======================================= */
@media (max-width: 768px) {
  .e_column__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.e_column__item a:hover .e_column__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.e_column__item a:hover .e_column__item-title {
  color: #FF5800;
}
.e_column__item-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.e_column__item-image::before {
  content: "";
  display: block;
  padding-top: 54.4%;
}
.e_column__item-image img, .e_column__item-image video, .e_column__item-image iframe, .e_column__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .e_column__item-image {
    width: 40.7%;
  }
}
@media (max-width: 768px) {
  .e_column__item-image::before {
    padding-top: 120%;
  }
}
.e_column__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .e_column__item-contents {
    width: 55.3%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.e_column__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0.75em;
}
.e_column__item-cat {
  font-size: 0.875em;
  background-color: #BCA072;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 0.25rem;
}
.e_column__item-title {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .e_column__item-title {
    font-size: 1em;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.e_column__item-text {
  font-size: 1.125em;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .e_column__item-text {
    display: none;
  }
}
.e_column__item-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .e_column__item-author {
    margin-bottom: 0.75rem;
  }
}
.e_column__item-author-image {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  overflow: hidden;
}
.e_column__item-author-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.5;
}
.e_column__item-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.5;
  color: #787878;
}

/* sec_news
======================================= */
.sec_news__list {
  margin-bottom: 4.25em;
}
@media (max-width: 768px) {
  .sec_news__list {
    margin-bottom: 2.4rem;
  }
}
.sec_news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
  padding: 1em 0;
  border-bottom: 1px solid #FF5800;
}
@media (max-width: 1024px) {
  .sec_news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75rem;
    padding: 0.98rem 0;
  }
}
.sec_news__item a:hover .news__item-title {
  color: #FF5800;
}
.sec_news__item a:hover .news__item-title::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.sec_news__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}
@media (max-width: 768px) {
  .sec_news__item-info {
    gap: 0.625rem;
  }
}
@media (max-width: 1024px) {
  .sec_news__item-info-cats {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.5em;
  }
}
.sec_news__item-info-cat {
  background-color: #FF5800;
  color: #fff;
  line-height: 1.5;
  padding: 0.5625em 1.5em;
  border-radius: 30px;
  min-width: 200px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sec_news__item-info-cat {
    min-width: inherit;
  }
}
@media (max-width: 768px) {
  .sec_news__item-info-cat {
    font-size: 0.625rem;
    padding: 0.5rem 1rem;
    line-height: 1.2;
  }
}
.sec_news__item-info-cat:nth-child(n+2) {
  margin-top: 0.5em;
}
@media (max-width: 1024px) {
  .sec_news__item-info-cat:nth-child(n+2) {
    margin-top: 0;
  }
}
.sec_news__item-title {
  position: relative;
}
@media (max-width: 768px) {
  .sec_news__item-title {
    line-height: 1.2857;
  }
}
.sec_news__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #FF5800;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 768px) {
  .sec_news__item-title::after {
    display: none;
  }
}
.sec_news__no-news {
  text-align: center;
}

/* posts
======================================= */
.posts__item a {
  display: block;
  height: 100%;
  border: 1px solid #424242;
  background-color: #fff;
  padding: 1.35em 7.8% 0.9em;
}
.posts__item a:hover .posts__item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.posts__item a:hover .posts__item-title {
  color: #FF5800;
}
.posts__item-img {
  margin-bottom: 0.9em;
  overflow: hidden;
  position: relative;
}
.posts__item-img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.posts__item-img img, .posts__item-img video, .posts__item-img iframe, .posts__item-img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.posts__item-img::before {
  padding-top: 66.5454%;
}
.posts__item-img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.posts__item-info-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.2em 0.625em;
  margin-bottom: 2px;
}
.posts__item-info-cat {
  font-size: 0.75em;
  padding: 1.5px 0.6em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.41667;
  background-color: #030303;
}
.posts__item-info-date {
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.42857;
  margin-bottom: 2px;
}
.posts__item-title {
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* salon
======================================= */
.salon__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1440px) {
  .salon__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .salon__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .salon__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.salon__item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 768px) {
  .salon__item-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1rem;
  }
}
.salon__item-image {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(79, 79, 79, 0.1019607843), 0px 10px 10px 0px rgba(79, 79, 79, 0.0901960784), 0px 23px 14px 0px rgba(79, 79, 79, 0.0509803922), 0px 40px 16px 0px rgba(79, 79, 79, 0.0117647059), 0px 63px 18px 0px rgba(79, 79, 79, 0);
          box-shadow: 0px 3px 6px 0px rgba(79, 79, 79, 0.1019607843), 0px 10px 10px 0px rgba(79, 79, 79, 0.0901960784), 0px 23px 14px 0px rgba(79, 79, 79, 0.0509803922), 0px 40px 16px 0px rgba(79, 79, 79, 0.0117647059), 0px 63px 18px 0px rgba(79, 79, 79, 0);
  margin-bottom: 2em;
	position: relative;
}
.salon__item-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.salon__item-image img, .salon__item-image video, .salon__item-image iframe, .salon__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .salon__item-image {
    position: relative;
    margin-bottom: 0;
    width: 35.823%;
  }
  .salon__item-image::before {
    content: "";
    display: block;
    padding-top: 120%;
  }
  .salon__item-image img, .salon__item-image video, .salon__item-image iframe, .salon__item-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .salon__item-info {
    width: 60%;
  }
}
.salon__item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (max-width: 768px) {
  .salon__item-container {
    margin-top: auto;
  }
}
.salon__item-lower {
  margin-top: auto;
}
.salon__item-title {
  display: inline-block;
  background-color: #030303;
  padding: 0.71em 0.5em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .salon__item-title {
    margin-bottom: 0.75em;
  }
}
.salon__item-title-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.salon__item-title-store {
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  display: inline-block;
}
@media (max-width: 768px) {
  .salon__item-title-store {
    font-size: 1.25em;
  }
}
.salon__item-title-instagram {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  margin-left: 1rem;
}
.salon__item-title-instagram a img {
  display: block;
}
.salon__item-address {
  font-size: 1.125em;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .salon__item-address {
    font-size: 0.9375em;
    margin-bottom: 0;
  }
}
.salon__item-tel {
  display: inline-block;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .salon__item-tel {
    margin-bottom: 0.75em;
  }
}
.salon__item-tel a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background-color: #fff;
  border-radius: 3px;
  padding: 1em 0.75em;
  border: 1.5px solid #030303;
}
.salon__item-tel a img {
  width: 1.3125em;
  height: 1.3125em;
}
.salon__item-tel a span {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1;
}
.salon__item-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .salon__item-time {
    margin-bottom: 0.65625em;
  }
}
.salon__item-time img {
  width: 1.3125em;
  height: 1.3125em;
}
.salon__item-btn:nth-child(n+2) {
  margin-top: 2em;
}
@media (max-width: 768px) {
  .salon__item-btn:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.salon__item-btn a {
  font-size: 1.125em;
  padding: 0.82em 0;
}
@media (max-width: 768px) {
  .salon__item-btn a {
    font-size: 1em;
    padding: 0.90667em 0;
  }
}

/* e_voice
======================================= */
.e_voice {
  background-color: #F8F8F8;
  padding: 2em;
}
@media (max-width: 768px) {
  .e_voice {
    padding: 1em;
  }
}
.e_voice:nth-child(n+2) {
  margin-top: 2.5em;
}
.e_voice__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .e_voice__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.e_voice__left {
  width: 32.2%;
}
@media (max-width: 768px) {
  .e_voice__left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.e_voice__image {
  position: relative;
  margin-bottom: 1em;
}
.e_voice__image::before {
  content: "";
  display: block;
  padding-top: 66.7647%;
}
.e_voice__image img, .e_voice__image video, .e_voice__image iframe, .e_voice__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .e_voice__image {
    width: 47.5%;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .e_voice__image::before {
    padding-top: 120%;
  }
}
.e_voice__customer {
  display: inline-block;
  line-height: 1;
  border: 1px solid #030303;
  padding: 0.44em 1.25rem;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .e_voice__customer {
    font-size: 0.875em;
    margin-bottom: 0.25rem;
  }
}
.e_voice__right {
  width: 64.77%;
}
@media (max-width: 768px) {
  .e_voice__right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .e_voice__info {
    width: 47.5%;
  }
}
.e_voice__service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .e_voice__service {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
  }
}
@media (max-width: 768px) {
  .e_voice__service.pc_tb {
    display: none;
  }
}
.e_voice__service.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .e_voice__service.sp_only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.e_voice__service-title {
  font-size: 0.9375em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .e_voice__service-cats {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.e_voice__service-cat {
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #030303;
  padding: 0.625em;
}
.e_voice__title {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .e_voice__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.e_voice__text {
  font-size: 1.125em;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .e_voice__text {
    font-size: 0.9375em;
  }
}

/* form
========================================= */
.form__inner {
  padding-top: 0;
}
.form__lead {
  font-size: 1.125em;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .form__lead {
    font-size: 0.9375em;
  }
}
.form__content {
  max-width: 768px;
  margin: auto;
}
.form__item {
  margin-bottom: 1.5rem;
}
.form__item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.3em;
}
@media (max-width: 768px) {
  .form__item-title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form__item-title.sp-fxdc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__item-title-text {
  font-size: 1em;
  line-height: 1.5;
  margin-right: 0.5rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .form__item-title-text {
    font-size: 0.875rem;
  }
}
.form__item-title-note {
  font-size: 0.875em;
}
.form__item-title-required {
  color: #D30600;
  line-height: 1.5;
  display: inline-block;
}
.form__item-title--scroll {
  margin-bottom: 1.4em;
}
@media (max-width: 768px) {
  .form__item-title--scroll {
    margin-bottom: 0.5rem;
  }
  .form__item-title--scroll .form__item-title-text {
    font-size: 0.6875rem;
  }
}
.form__item-contents.col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .form__item-contents.col2 {
    gap: 1em;
  }
}
.form__item-contents.col2 .col {
  width: 48%;
}
@media (max-width: 768px) {
  .form__item-contents.col2 .col {
    width: 100%;
  }
}
.form__item-contents--select {
  position: relative;
}
.form__item-contents--select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5.2%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  pointer-events: none;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #030303;
  border-bottom: 2px solid #030303;
}
.form__item-contents--radio {
  padding: 11px 0;
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.form__item-contents--radio .mwform-radio-field {
  margin-right: 3.5%;
}
.form__item-contents--radio .mwform-radio-field > label {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.form__item-contents--radio .mwform-radio-field-text {
  vertical-align: middle;
}
.form__item-contents--check .mwform-checkbox-field {
  display: block;
  margin-left: 0 !important;
}
.form__item-contents--check .mwform-checkbox-field > label {
  cursor: pointer;
}
.form__item-contents--btn {
  max-width: 15.5em !important;
  text-align: center;
  margin-top: 4em !important;
  position: relative;
}
@media (max-width: 768px) {
  .form__item-contents--btn {
    margin-top: 1.3rem !important;
    max-width: 310px !important;
  }
}
.form__item-contents-text, .form__item-contents-textarea, .form__item-contents-select, .form__item-contents-date {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #BBBBBB;
}
@media (max-width: 768px) {
  .form__item-contents-text, .form__item-contents-textarea, .form__item-contents-select, .form__item-contents-date {
    padding: 0.7rem 0.4rem;
  }
}
.form__item-contents-text::-webkit-input-placeholder, .form__item-contents-textarea::-webkit-input-placeholder {
  color: #C1C1C1;
  font-weight: 200;
}
.form__item-contents-text::-moz-placeholder, .form__item-contents-textarea::-moz-placeholder {
  color: #C1C1C1;
  font-weight: 200;
}
.form__item-contents-text:-ms-input-placeholder, .form__item-contents-textarea:-ms-input-placeholder {
  color: #C1C1C1;
  font-weight: 200;
}
.form__item-contents-text::-ms-input-placeholder, .form__item-contents-textarea::-ms-input-placeholder {
  color: #C1C1C1;
  font-weight: 200;
}
.form__item-contents-text::placeholder, .form__item-contents-textarea::placeholder {
  color: #C1C1C1;
  font-weight: 200;
}
.form__item-contents-textarea {
  resize: none;
}
.form__item-contents-select {
  color: #333333;
  cursor: pointer;
}
.form__item-contents-radio {
  width: 16px;
  height: 16px;
  margin-right: 1px !important;
  vertical-align: middle;
}
.form__item-contents input:focus, .form__item-contents select:focus, .form__item-contents textarea:focus {
  outline: none;
}
.form__item-contents input[type=text] {
  vertical-align: middle;
}
.form__item-wrapper {
  overflow: scroll;
  height: 100%;
}
@media (max-width: 768px) {
  .form__item-note {
    font-size: 0.875em;
  }
}
.form__item-note a {
  color: #0085FF;
  text-decoration: underline;
}
.form__item-note a:hover {
  opacity: 0.8;
}
.form__item--scroll {
  padding: 0.7em 0.9em;
  border-radius: 4px;
  border: 1px solid #DCDDDE;
  height: 195px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .form__item--scroll {
    font-size: 0.6875rem;
  }
}
.form__item--check {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .form__item--check {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form__item--btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__btn {
  width: 100%;
  max-width: 500px;
  margin: 4em auto 0;
}
@media (max-width: 768px) {
  .form__btn {
    margin-top: 2em;
  }
}
.form__btn > span > input {
  font-size: 1.125em;
  padding: 1.8125rem 1em;
  color: #fff;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .form__btn > span > input {
    font-size: 1em;
    padding: 1.1875rem 1em;
  }
}
.form__btn > span::after {
  position: absolute;
  right: 3em;
}
@media (max-width: 768px) {
  .form__btn > span::after {
    right: 1.5em;
  }
}
.form__btn a {
  font-size: 1.125rem;
  padding: 1.55rem 1em;
}
@media (max-width: 768px) {
  .form__btn a {
    font-size: 1rem;
    padding: 1.1875rem 1em;
  }
}
.form__btn:hover > span > input {
  color: #030303;
}
.form__btn--back {
  display: none;
}
.form__complete {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}

.jcc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .jcc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.mw_wp_form_confirm .form__lead {
  display: none;
}
.mw_wp_form_confirm .form__item-title-note {
  display: none;
}
.mw_wp_form_confirm .form__item--confirm, .mw_wp_form_confirm .form__item--privacy {
  display: none;
}
.mw_wp_form_confirm .form__item-contents {
  font-weight: bold;
}
.mw_wp_form_confirm .form__item-contents.col2 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1em;
}
.mw_wp_form_confirm .form__item-contents.col2 .col {
  width: auto;
}
.mw_wp_form_confirm .form__btn--back {
  display: block;
}
.mw_wp_form_confirm .form__item-contents--select::after {
  display: none;
}
.mw_wp_form_confirm .form__item-contents--btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .form__item-contents--btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.mw_wp_form_confirm .form__item-title--btn {
  display: none;
}

.page_headline {
  position: relative;
  z-index: 1;
}

/* headline
========================================= */
.headline {
  height: 440px;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .headline {
    height: 240px;
  }
}
.headline__inner {
  text-align: center;
  height: 100%;
}
.headline__img {
  height: 100%;
  overflow: hidden;
}
.headline__title {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
}
@media (max-width: 768px) {
  .headline__title {
    top: 40%;
  }
}
.headline__title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 8em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .headline__title-en {
    font-size: 3.2em;
  }
}
.headline__title-jp {
  font-size: 1.75em;
  font-weight: bold;
  background-color: #fff;
  color: #030303;
  line-height: 1;
  padding: 0.40667rem;
}
@media (max-width: 768px) {
  .headline__title-jp {
    font-size: 0.7em;
    padding: 0.15rem;
  }
}
.headline__scroll {
  position: absolute;
  left: 3%;
  bottom: 12.667em;
  width: 41px;
}
@media (max-width: 768px) {
  .headline__scroll {
    display: none;
  }
}
.headline__scroll a:hover img {
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
}
.headline__scroll span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 0.6111em;
  font-weight: 500;
  color: #FF5800;
  line-height: 41px;
  margin-bottom: 15px;
}
.headline__scroll img {
  width: 41px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page_headline2 {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .page_headline2 {
    margin-top: 64px;
  }
}

/* headline2
========================================= */
.headline2 {
  height: 360px;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .headline2 {
    height: 140px;
  }
}
.headline2__inner {
  text-align: center;
  height: 100%;
}
.headline2__title {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .headline2__title {
    top: 30%;
  }
}
.headline2__title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 8em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .headline2__title-en {
    font-size: 3.2em;
  }
}
.headline2__title-jp {
  font-size: 1.75em;
  font-weight: bold;
  background-color: #030303;
  color: #fff;
  line-height: 1;
  padding: 0.40667rem;
}
@media (max-width: 768px) {
  .headline2__title-jp {
    font-size: 0.7em;
    padding: 0.15rem;
  }
}

.pagination {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 3em;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.page-numbers {
  font-family: "Barlow Condensed", sans-serif;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 400;
  line-height: calc(2.5rem - 3px);
  text-align: center;
  color: #787878;
  border: 1.5px solid #787878;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .page-numbers {
    font-size: 1em;
    height: 33px;
    width: 33px;
    line-height: 33px;
    margin: 0 7px;
  }
}
.page-numbers.prev, .page-numbers.next {
  border: 1.5px solid #030303;
}
.page-numbers.prev::after, .page-numbers.next::after {
  display: none;
}
.page-numbers.prev::before, .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-numbers.prev:hover, .page-numbers.next:hover {
  color: #fff;
  background-color: #030303;
}
.page-numbers.prev:hover::before, .page-numbers.next:hover::before {
  background: url(../img/common/icons/icon_triangle-white.svg) no-repeat center center/contain;
}
.page-numbers.prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}
.page-numbers.next::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-numbers.current {
  background-color: #030303;
  border: 1.5px solid #030303;
  color: #fff;
}

a.page-numbers:hover {
  color: #030303;
  background-color: #787878;
}

.contact__inner {
  padding-top: 3.1em;
  text-align: center;
}
.contact__container {
  padding: 0 4.826%;
}
@media (max-width: 768px) {
  .contact__container {
    padding: 0;
  }
}
.contact__title {
  margin-bottom: 0.9em;
}
@media (max-width: 768px) {
  .contact__title {
    margin-bottom: 1.2em;
  }
}
@media (max-width: 768px) {
  .contact__title-en {
    margin-bottom: 8px;
  }
}
.contact__catch {
  margin-bottom: 2.08em;
}
@media (max-width: 768px) {
  .contact__catch {
    font-size: 1.25em;
    line-height: 1.25;
    margin-bottom: 0.9em;
  }
}
.contact__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 2em;
}
@media (max-width: 1024px) {
  .contact__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.6em;
  }
}
.contact__btn {
  width: 45.7%;
}
@media (max-width: 1024px) {
  .contact__btn {
    width: 100%;
  }
}
.contact__btn--tel {
  position: relative;
}
@media (max-width: 768px) {
  .contact__btn--tel {
    margin-bottom: 2em;
  }
}
.contact__btn--tel a {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.1875em;
  font-weight: bold;
  letter-spacing: 0.08em !important;
  color: #FF5800;
  text-align: center;
  padding: 0.37em 1em;
  border: 2px solid #FF5800;
}
@media (max-width: 768px) {
  .contact__btn--tel a {
    font-size: 1.5em !important;
    padding: 0.58em 0 0.52em 0.1em;
    border: 1px solid #FF5800;
  }
}
.contact__btn--tel a:hover {
  color: #fff;
  background-color: #FF5800;
}
.contact__btn--tel a .contact__btn-img {
  width: 33px;
  position: relative;
}
.contact__btn--tel a .contact__btn-img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.contact__btn--tel a .contact__btn-img img, .contact__btn--tel a .contact__btn-img video, .contact__btn--tel a .contact__btn-img iframe, .contact__btn--tel a .contact__btn-img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact__btn--tel a .contact__btn-img::before {
  padding-top: 133.32%;
}
.contact__btn--tel a .contact__btn-img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__btn--tel a .contact__btn-img img.white {
  opacity: 0;
}
.contact__btn--tel a:hover .contact__btn-img img.white {
  opacity: 1;
}
.contact__btn--tel a:hover .contact__btn-img img.orange {
  opacity: 0;
}
.contact__btn--tel-note {
  position: absolute;
  top: 109%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.875rem;
  color: #FF5800;
  font-weight: bold;
  letter-spacing: 0.08em;
  width: 100%;
}
@media (max-width: 768px) {
  .contact__btn--tel-note {
    width: 100%;
  }
}
.contact__btn--line a {
  font-size: 1.25em !important;
  font-weight: bold !important;
  letter-spacing: 0.12em !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 0.5em;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25em 1em !important;
}
@media (max-width: 768px) {
  .contact__btn--line a {
    font-size: 1em !important;
    padding: 1.65em 1em !important;
  }
}
.contact__btn-img {
  width: 29px;
}
.contact__btn-img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* faq
======================================= */
.faq__list {
  margin-bottom: 4em;
}
.faq__item {
  border-bottom: 1px solid #BBBBBB;
  padding: 2em 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__item {
    padding: 1em 0;
  }
}
.faq__item.is-open .faq__item-question::after {
  -webkit-transform: translateY(-50%) rotate(270deg);
          transform: translateY(-50%) rotate(270deg);
}
.faq__item-question-inner, .faq__item-answer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  padding-right: 1.1em;
}
@media (max-width: 768px) {
  .faq__item-question-inner, .faq__item-answer-inner {
    padding-right: 1.5em;
  }
}
.faq__item-question {
  position: relative;
}
.faq__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 1em;
  height: 1em;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq__item-question-q {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: #BCA072;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq__item-question-q {
    font-size: 1.5em;
  }
}
.faq__item-question-text {
  font-size: 1.5em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .faq__item-question-text {
    font-size: 1em;
  }
}
.faq__item-answer {
  display: none;
  margin-top: 1.5em;
}
@media (max-width: 768px) {
  .faq__item-answer {
    margin-top: 1em;
  }
}
.faq__item-answer-a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: #030303;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq__item-answer-a {
    font-size: 1.5em;
  }
}
.faq__item-answer-text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .faq__item-answer-text {
    font-size: 0.9375em;
  }
}

.footer {
  background-color: #030303;
}
.footer__inner {
  padding-top: 4em;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 1.5em;
  }
}
.footer__pagetop {
  margin-bottom: 1.9em;
}
@media (max-width: 768px) {
  .footer__pagetop {
    margin-bottom: 0.5rem;
  }
}
.footer__pagetop a {
  font-family: "Barlow Condensed", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875em;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 1rem 0;
}
.footer__pagetop a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__pagetop a:hover::after {
  -webkit-transform: translateY(-0.25em) rotate(-90deg);
          transform: translateY(-0.25em) rotate(-90deg);
}
.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4em 4.1667vw 5em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1280px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .footer__container {
    padding: 2em 0;
  }
}
.footer__link {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 1.5em 9.58333vw;
}
@media (max-width: 1280px) {
  .footer__link {
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__link {
    grid-template-rows: repeat(6, 1fr);
    gap: 1.25em;
  }
}
.footer__link-item a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__link-item a {
    font-size: 0.875em;
  }
}
.footer__link-item a:hover {
  color: #FF5800;
}
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
.footer__sns-item--logo img {
  width: 40px;
  height: 56px;
}
.footer__sns-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__sns-item a:hover {
  opacity: 0.7;
}
.footer__catch {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 3.125em;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1.1em;
}
@media (max-width: 768px) {
  .footer__catch {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.footer__btn a {
  font-size: 1.25em;
  padding: 1em;
}
@media (max-width: 768px) {
  .footer__btn a {
    font-size: 1em;
  }
}
.footer__lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5em 4.1667vw 0;
}
@media (max-width: 768px) {
  .footer__lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5em;
  }
}
.footer__privacy a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__privacy a:hover {
  color: #FF5800;
}
.footer__copy {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
}
@media (max-width: 1024px) {
  .header {
    height: 64px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 2.0833%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__logo {
  width: 50px;
  height: 70px;
  position: fixed;
  top: 0.875em;
  left: 2.0833%;
  z-index: 11;
  mix-blend-mode: exclusion;
}
@media (max-width: 768px) {
  .header__logo {
    width: 40px;
    height: 56px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__logo a:hover {
  opacity: 0.8;
}
.header__right {
  height: 100%;
}
.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.08333vw;
  height: 100%;
}
@media (max-width: 1280px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.667vw;
  height: 100%;
}
.header__nav-item a {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  color: #BBBBBB;
  position: relative;
  padding: 1em 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-item a:hover {
  color: #FF5800;
}
.header__nav-reserve {
  width: clamp(240px, 17.3vw, 332px);
}
.header__nav-reserve a {
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(14px, 1.041667vw, 1.25em);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #FF5800;
}
.header__btn {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 5em;
  height: 5em;
  background-color: #030303;
  pointer-events: all;
}
@media (max-width: 1280px) {
  .header__btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .header__btn {
    width: 4em;
    height: 4em;
  }
}
.header__btn-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3em;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header__btn-bar {
    width: 2.4em;
    height: 2.4px;
  }
}
.header__btn-bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 0.65em));
          transform: translate(-50%, calc(-50% - 0.65em));
}
.header__btn-bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__btn-bar:nth-child(3) {
  width: 2em;
  -webkit-transform: translate(calc(-50% + 0.5em), calc(-50% + 0.65em));
          transform: translate(calc(-50% + 0.5em), calc(-50% + 0.65em));
}
@media (max-width: 768px) {
  .header__btn-bar:nth-child(3) {
    width: 1.4em;
  }
}
.header__btn-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.125em;
  color: #fff;
  line-height: 1.42;
}
.header__btn-text.menu {
  letter-spacing: 0.082em;
}
.header__btn-text.close {
  display: none;
  letter-spacing: 0.05em;
}
.header__banner {
  display: none;
  position: fixed;
  bottom: 3em;
  right: 3em;
  z-index: 100;
  width: 340px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .header__banner {
    bottom: 1em;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 293.5px;
  }
}
.header__banner:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header__banner:hover {
    opacity: 1;
  }
}
.header__banner:hover .time {
  border: 2px solid #FF5800;
}
.header__banner:hover .time::before {
  background: url(../img/common/icons/icon_clock-orange.svg) no-repeat center center/contain;
}
.header__banner.is-closed {
  display: none !important;
}
.header__banner-close {
  position: absolute;
  top: 1.5em;
  right: -1em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 2px solid #030303;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__banner-close {
    display: none;
  }
}
.header__banner-close::before, .header__banner-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  content: "";
  width: 1em;
  height: 2px;
  background-color: #030303;
}
.header__banner-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.header__banner-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header__banner-catch {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-style: italic;
  display: inline-block;
  padding: 0 0.625rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.header__banner-btn a {
  padding: 0.625em;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  gap: 0.5em !important;
}
.header__banner .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #fff;
  gap: 6px;
  padding: 4px 6px;
}
.header__banner .time::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/common/icons/icon_clock-white.svg) no-repeat center center/contain;
}
.header__banner .time > span {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
  text-align: center;
}
.header__banner .text {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/common/header/menu_bg.png) no-repeat center center/cover;
  overflow: scroll;
}
@media (max-width: 768px) {
  .header__menu {
    background: url(../img/common/header/menu_bg-sp.png) no-repeat center center/cover;
  }
}
.header__menu-inner {
  padding: 22.22vh 10.41667vw;
}
@media (max-width: 768px) {
  .header__menu-inner {
    padding: 14vh 8vw;
  }
}
.header__menu-list {
  max-width: 1231px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 4em 12.5vw;
  margin-bottom: 10em;
}
@media (max-width: 1024px) {
  .header__menu-list {
    grid-template-rows: repeat(6, 1fr);
    gap: 2em 0em;
    margin-bottom: 5em;
  }
}
.header__menu-item a {
  color: #BBBBBB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-item a:hover {
  color: #fff;
}
.header__menu-item a span {
  display: block;
  line-height: 1;
}
.header__menu-item a span.jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 0.8125em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .header__menu-item a span.jp {
    font-size: 0.6875em;
  }
}
.header__menu-item a span.en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header__menu-item a span.en {
    font-size: 1.5em;
  }
}
.header__menu-item--reserve {
  width: 312px;
}
@media (max-width: 768px) {
  .header__menu-item--reserve {
    width: 100%;
    max-width: 312px;
    margin: 0 auto 2.5rem;
  }
}
.header__menu-item--reserve a {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .header__menu-item--reserve a {
    font-size: 1em;
    padding: 1em;
  }
}
.header__menu-lower {
  max-width: 1520px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .header__menu-lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .header__menu-privacy {
    margin-bottom: 2.5rem;
  }
}
.header__menu-privacy a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #BBBBBB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-privacy a:hover {
  color: #fff;
}
.header__menu-copy {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #BBBBBB;
}

.header--top .header__banner {
  display: block;
}

.header--white .header__nav-item a {
  color: #030303;
}
.header--white .header__nav-item a:hover {
  color: #FF5800;
}

.is-scrolled .header {
  pointer-events: none;
}
.is-scrolled .header.is-open {
  pointer-events: all;
}
.is-scrolled .header__nav {
  display: none;
}
.is-scrolled .header__btn {
  display: block;
}
.is-scrolled .header__banner {
  opacity: 1;
  pointer-events: all;
}

.is-open.header {
  z-index: 12;
}
.is-open .header__menu {
  display: block;
}
.is-open .header__inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.is-open .header__logo {
  position: fixed;
  top: 14px;
  left: 40px;
  z-index: 9;
}
@media (max-width: 768px) {
  .is-open .header__logo {
    top: 0.75em;
    left: 5.333%;
  }
}
.is-open .header__btn {
  top: 0;
  right: 0;
  display: block;
}
.is-open .header__btn-bar:nth-child(1) {
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: translate(calc(-50% - 0.3em), calc(-50% - 0.95em)) rotate(-45deg);
          transform: translate(calc(-50% - 0.3em), calc(-50% - 0.95em)) rotate(-45deg);
}
@media (max-width: 768px) {
  .is-open .header__btn-bar:nth-child(1) {
    -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% - 0.75em)) rotate(-45deg);
            transform: translate(calc(-50% - 0.2em), calc(-50% - 0.75em)) rotate(-45deg);
  }
}
.is-open .header__btn-bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn-bar:nth-child(3) {
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 3em;
  -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% + 1.15em)) rotate(45deg);
          transform: translate(calc(-50% - 0.2em), calc(-50% + 1.15em)) rotate(45deg);
}
@media (max-width: 768px) {
  .is-open .header__btn-bar:nth-child(3) {
    width: 2.4em;
    -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% + 0.95em)) rotate(45deg);
            transform: translate(calc(-50% - 0.2em), calc(-50% + 0.95em)) rotate(45deg);
  }
}
.is-open .header__banner {
  display: none;
}

.reserve {
  position: relative;
}
.reserve::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/common/sec_reserve.jpg) no-repeat left 280px top 0/cover;
  -webkit-clip-path: polygon(68% 0, 100% 0, 100% 100%, 40% 100%);
          clip-path: polygon(68% 0, 100% 0, 100% 100%, 40% 100%);
}
@media (max-width: 768px) {
  .reserve::after {
    height: 50%;
    background: url(../img/common/sec_reserve.jpg) no-repeat left -200px top -20px/160%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 44%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 44%, 0 100%);
  }
}
.reserve__inner {
  padding-top: 10em;
}
@media (max-width: 768px) {
  .reserve__inner {
    padding: 7.3125em 5.333% 1.25em;
  }
}
.reserve__contents {
  display: inline-block;
  text-align: center;
}
@media (max-width: 768px) {
  .reserve__contents {
    display: block;
  }
}
.reserve__title {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .reserve__title {
    margin-bottom: 1em;
  }
}
.reserve__title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(120px, 14.58333vw, 280px);
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .reserve__title-en {
    font-size: 5.5em;
  }
}
.reserve__title-jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .reserve__title-jp {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .reserve__title-jp {
    font-size: 1.125em;
  }
}
.reserve__text {
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .reserve__text {
    font-size: 0.9375em;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
}
.reserve__btn a {
  font-size: 1.25em;
  padding: 1em;
}
@media (max-width: 768px) {
  .reserve__btn a {
    font-size: 1em;
    padding: 1.625em 1em;
  }
}

.reserve2 {
  position: relative;
  z-index: 0;
}
.reserve2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: url(../img/common/sec_reserve.jpg) no-repeat center center/cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.reserve2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.reserve2__inner {
  padding: 4em 2em;
  text-align: center;
}
.reserve2__contents {
  display: inline-block;
}
.reserve2__title {
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .reserve2__title {
    margin-bottom: 1em;
  }
}
.reserve2__title-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(100px, 8.333vw, 160px);
  font-weight: 600;
  line-height: 0.8;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .reserve2__title-en {
    font-size: 5.5em;
  }
}
.reserve2__title-jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .reserve2__title-jp {
    font-size: 1.125em;
  }
}
.reserve2__text {
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .reserve2__text {
    font-size: 0.9375em;
    margin-bottom: 1.4375rem;
  }
}
.reserve2__btn a {
  font-size: 1.25em;
  padding: 1em;
}
@media (max-width: 768px) {
  .reserve2__btn a {
    font-size: 1em;
    padding: 1em;
  }
}

.s_footer {
  background-color: #030303;
}
.s_footer__inner {
  padding-top: 4em;
}
@media (max-width: 768px) {
  .s_footer__inner {
    padding-top: 1.5em;
    padding-bottom: 1em;
  }
}
.s_footer__pagetop {
  margin-bottom: 1.9em;
}
@media (max-width: 768px) {
  .s_footer__pagetop {
    margin-bottom: 0.5rem;
  }
}
.s_footer__pagetop a {
  font-family: "Barlow Condensed", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.875em;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 1rem 0;
}
.s_footer__pagetop a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_footer__pagetop a:hover::after {
  -webkit-transform: translateY(-0.25em) rotate(-90deg);
          transform: translateY(-0.25em) rotate(-90deg);
}
.s_footer__container {
  padding: 4em 0 1.5em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .s_footer__container {
    padding: 2em 0;
  }
}
.s_footer__catch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .s_footer__catch {
    gap: 0.75em;
    margin-bottom: 2em;
  }
}
.s_footer__catch img {
  width: 40px;
}
@media (max-width: 768px) {
  .s_footer__catch img {
    width: 20px;
  }
}
.s_footer__catch span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-size: 2.6425em;
  color: #fff;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .s_footer__catch span {
    font-size: 1.25em;
  }
}
.s_footer__catch span:nth-child(n+2) {
  margin-top: 0.9375rem;
}
.s_footer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em 2.08333vw;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .s_footer__link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}
@media (max-width: 768px) {
  .s_footer__link-item {
    width: 50%;
  }
}
.s_footer__link-item a {
  display: block;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .s_footer__link-item a {
    font-size: 0.875em;
  }
}
.s_footer__link-item a:hover {
  color: #FF5800;
}
.s_footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .s_footer__sns {
    gap: 1.5em;
  }
}
.s_footer__sns-item--logo img {
  width: 40px;
  height: 56px;
}
.s_footer__sns-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_footer__sns-item a:hover {
  opacity: 0.7;
}
.s_footer__btn a {
  font-size: 1.25em;
  padding: 1em;
}
@media (max-width: 768px) {
  .s_footer__btn a {
    font-size: 1em;
  }
}
.s_footer__lower {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.5em 4.1667vw 0;
}
@media (max-width: 768px) {
  .s_footer__lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
    padding: 1.5em 0;
  }
}
.s_footer__lower-link a {
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_footer__lower-link a:hover {
  color: #FF5800;
}
.s_footer__privacy a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_footer__privacy a:hover {
  color: #FF5800;
}
.s_footer__copy {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
}
@media (max-width: 768px) {
  .s_footer__copy {
    text-align: center;
  }
}

.s_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .s_header {
    height: 64px;
  }
}
.s_header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2.0833%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .s_header__inner {
    padding-left: 0.5rem;
  }
}
.s_header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.s_header__logo a:hover {
  opacity: 0.8;
}
.s_header__logo a img {
  width: 50px;
  mix-blend-mode: exclusion;
}
@media (max-width: 768px) {
  .s_header__logo a img {
    width: 36px;
  }
}
.s_header__logo a span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.375em;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: block;
  color: #030303;
}
@media (max-width: 768px) {
  .s_header__logo a span {
    display: none;
  }
}
.s_header__right {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5em;
}
@media (max-width: 768px) {
  .s_header__right {
    gap: 1.5em;
  }
}
.s_header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.08333vw;
  height: 100%;
}
.s_header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.667vw;
  height: 100%;
}
@media (max-width: 768px) {
  .s_header__nav-list {
    gap: 1.5em;
  }
}
.s_header__nav-item a {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  color: #BBBBBB;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_header__nav-item a:hover {
  color: #FF5800;
}
.s_header__nav-item a img.white {
  display: none;
}
.s_header__nav-item--cart {
  position: relative;
}
.s_header__nav-item--cart-num {
  position: absolute;
  right: -0.75em;
  top: -0.8em;
  font-size: 0.625em;
  width: 0.75rem;
  height: 0.75rem;
  line-height: 0.75rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background-color: #D30600;
}
.s_header__nav-reserve {
  width: clamp(240px, 17.3vw, 332px);
}
.s_header__nav-reserve a {
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(14px, 1.041667vw, 1.25em);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #FF5800;
}
.s_header__btn {
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 5rem;
  height: 5rem;
  background-color: #030303;
  pointer-events: all;
}
@media (max-width: 1280px) {
  .s_header__btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .s_header__btn {
    width: 4em;
    height: 4em;
  }
}
.s_header__btn-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3em;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .s_header__btn-bar {
    width: 2.4em;
    height: 2.4px;
  }
}
.s_header__btn-bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 0.65em));
          transform: translate(-50%, calc(-50% - 0.65em));
}
.s_header__btn-bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.s_header__btn-bar:nth-child(3) {
  width: 2em;
  -webkit-transform: translate(calc(-50% + 0.5em), calc(-50% + 0.65em));
          transform: translate(calc(-50% + 0.5em), calc(-50% + 0.65em));
}
@media (max-width: 768px) {
  .s_header__btn-bar:nth-child(3) {
    width: 1.4em;
  }
}
.s_header__btn-text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.125em;
  color: #fff;
  line-height: 1.42;
}
.s_header__btn-text.menu {
  letter-spacing: 0.082em;
}
.s_header__btn-text.close {
  display: none;
  letter-spacing: 0.05em;
}
.s_header__menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 30em;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.94);
  overflow: scroll;
}
@media (max-width: 768px) {
  .s_header__menu {
    width: 100%;
  }
}
.s_header__menu-inner {
  padding: 20.37vh 5em;
}
@media (max-width: 768px) {
  .s_header__menu-inner {
    padding: 18vh 8vw 10vh;
  }
}
.s_header__menu-list {
  max-width: 1231px;
  display: grid;
  gap: 4em 12.5vw;
  margin-bottom: 11.1vh;
}
@media (max-width: 1024px) {
  .s_header__menu-list {
    gap: 2.5em 0em;
    margin-bottom: 18vh;
  }
}
.s_header__menu-item a {
  color: #BBBBBB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_header__menu-item a:hover {
  color: #fff;
}
.s_header__menu-item a span {
  display: block;
  line-height: 1;
}
.s_header__menu-item a span.jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 0.8125em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .s_header__menu-item a span.jp {
    font-size: 0.6875em;
  }
}
.s_header__menu-item a span.en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .s_header__menu-item a span.en {
    font-size: 1.5em;
  }
}
.s_header__menu-item--reserve {
  width: 312px;
}
@media (max-width: 768px) {
  .s_header__menu-item--reserve {
    width: 100%;
    max-width: 312px;
    margin: 0 auto 2.5rem;
  }
}
.s_header__menu-item--reserve a {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .s_header__menu-item--reserve a {
    font-size: 1em;
    padding: 1em;
  }
}
.s_header__menu-lower {
  display: grid;
  gap: 2rem;
}
.s_header__menu-lower-link a {
  color: #BBBBBB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  letter-spacing: 0.12em;
}
.s_header__menu-lower-link a:hover {
  color: #fff;
}
.s_header__menu-privacy a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #BBBBBB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s_header__menu-privacy a:hover {
  color: #fff;
}
.s_header__menu-copy {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #BBBBBB;
}

.is-open .s_header__menu {
  display: block;
}
.is-open .s_header__inner {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.is-open .s_header__logo {
  position: fixed;
  top: 4px;
  left: 40px;
  z-index: 9;
}
@media (max-width: 768px) {
  .is-open .s_header__logo {
    top: 0.3em;
    left: 0.5rem;
  }
}
@media (max-width: 768px) {
  .is-open .s_header__logo a {
    background-color: inherit;
  }
}
.is-open .s_header__nav-list {
  position: fixed;
  top: 1.5em;
  right: 7.5em;
  z-index: 9;
  height: auto;
}
@media (max-width: 768px) {
  .is-open .s_header__nav-list {
    top: 1.125em;
    right: 5.45em;
  }
}
.is-open .s_header__nav-item a img.black {
  display: none;
}
.is-open .s_header__nav-item a img.white {
  display: block;
}
.is-open .s_header__btn {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
}
.is-open .s_header__btn-bar:nth-child(1) {
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: translate(calc(-50% - 0.3em), calc(-50% - 0.95em)) rotate(-45deg);
          transform: translate(calc(-50% - 0.3em), calc(-50% - 0.95em)) rotate(-45deg);
}
@media (max-width: 768px) {
  .is-open .s_header__btn-bar:nth-child(1) {
    -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% - 0.75em)) rotate(-45deg);
            transform: translate(calc(-50% - 0.2em), calc(-50% - 0.75em)) rotate(-45deg);
  }
}
.is-open .s_header__btn-bar:nth-child(2) {
  opacity: 0;
}
.is-open .s_header__btn-bar:nth-child(3) {
  -webkit-transform-origin: right;
          transform-origin: right;
  width: 3em;
  -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% + 1.15em)) rotate(45deg);
          transform: translate(calc(-50% - 0.2em), calc(-50% + 1.15em)) rotate(45deg);
}
@media (max-width: 768px) {
  .is-open .s_header__btn-bar:nth-child(3) {
    width: 2.4em;
    -webkit-transform: translate(calc(-50% - 0.2em), calc(-50% + 0.95em)) rotate(45deg);
            transform: translate(calc(-50% - 0.2em), calc(-50% + 0.95em)) rotate(45deg);
  }
}

.sidebar__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #030303;
  padding: 0.75rem 0.625rem;
  margin-bottom: 0.75em;
}
@media (max-width: 768px) {
  .sidebar__title {
    font-size: 0.9375em;
  }
}
.sidebar__category {
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  .sidebar__category {
    margin-bottom: 2em;
  }
}
.sidebar__category-item:nth-child(n+2) {
  margin-top: 2px;
}
.sidebar__category-item a {
  display: block;
  font-size: 1.125em;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 1rem;
  background-color: #F8F8F8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .sidebar__category-item a {
    font-size: 1em;
  }
}
.sidebar__category-item a:hover {
  background-color: #030303;
  color: #fff;
}
.sidebar__articles {
  padding-bottom: 3em;
  border-bottom: 1px solid #BBBBBB;
  margin-bottom: 3em;
}
.sidebar__articles-item:nth-child(n+2) {
  margin-top: 2em;
}
.sidebar__articles-item a:hover .sidebar__articles-item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.sidebar__articles-item a:hover .sidebar__articles-item-title {
  color: #FF5800;
}
.sidebar__articles-item-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2em;
  font-weight: 600;
  color: #787878;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sidebar__articles-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sidebar__articles-item-img {
  position: relative;
  width: 28.57%;
  overflow: hidden;
}
.sidebar__articles-item-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.sidebar__articles-item-img img, .sidebar__articles-item-img video, .sidebar__articles-item-img iframe, .sidebar__articles-item-img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .sidebar__articles-item-img::before {
    padding-top: 120%;
  }
}
.sidebar__articles-item-img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__articles-item-contents {
  width: 65.71%;
}
@media (max-width: 768px) {
  .sidebar__articles-item-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sidebar__articles-item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .sidebar__articles-item-cats {
    margin-bottom: 0.75rem;
  }
}
.sidebar__articles-item-cat {
  font-size: 0.875em;
  font-weight: bold;
  background-color: #BCA072;
  color: #fff;
  line-height: 1;
  padding: 0.25rem;
}
.sidebar__articles-item-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .sidebar__articles-item-title {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.sidebar__articles-item-text {
  font-size: 1.125em;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .sidebar__articles-item-text {
    font-size: 0.9375em;
  }
}
.sidebar__articles-item-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
@media (max-width: 768px) {
  .sidebar__articles-item-author {
    margin-bottom: 0.75rem;
  }
}
.sidebar__articles-item-author-image {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  overflow: hidden;
}
.sidebar__articles-item-author-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1.5;
}
.sidebar__articles-item-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.5;
  color: #787878;
}
.sidebar__banner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar__banner a:hover {
  opacity: 0.8;
}

/* btn 
========================================= */
.btn {
  position: relative;
}
.btn a, .btn input, .btn > span {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__line {
  max-width: 235px;
}
@media (max-width: 768px) {
  .btn__line {
    max-width: 160px;
  }
}
.btn__line a {
  font-family: "Barlow Condensed", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2em;
  font-weight: 500;
  border-bottom: 2px solid #030303;
}
@media (max-width: 768px) {
  .btn__line a {
    font-size: 1.25em;
  }
}
.btn__line a::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_arrow-black.svg) no-repeat center center/contain;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}
@media (max-width: 768px) {
  .btn__line a::after {
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
}
.btn__line a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn__orange a, .btn__orange input {
  font-weight: bold;
  color: #fff;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
  background-color: #FF5800;
  border: 2px solid #FF5800;
  position: relative;
}
.btn__orange a::after, .btn__orange input::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_triangle-white.svg) no-repeat center center/contain;
}
.btn__orange a:hover, .btn__orange input:hover {
  color: #FF5800;
  background-color: #fff;
}
.btn__orange a:hover::after, .btn__orange input:hover::after {
  background: url(../img/common/icons/icon_triangle-orange.svg) no-repeat center center/contain;
  -webkit-transform: translateX(0.75em);
          transform: translateX(0.75em);
}
.btn__black a, .btn__black > input, .btn__black > span {
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
  background-color: #030303;
  border: 2px solid #030303;
  position: relative;
}
.btn__black a::after, .btn__black > input::after, .btn__black > span::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_triangle-white.svg) no-repeat center center/contain;
}
.btn__black a:hover, .btn__black > input:hover, .btn__black > span:hover {
  color: #030303;
  background-color: #fff;
}
.btn__black a:hover::after, .btn__black > input:hover::after, .btn__black > span:hover::after {
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
  -webkit-transform: translateX(0.75em);
          transform: translateX(0.75em);
}
@media (max-width: 768px) {
  .btn__black a:hover::after, .btn__black > input:hover::after, .btn__black > span:hover::after {
    -webkit-transform: translateX(0.375em);
            transform: translateX(0.375em);
  }
}
.btn__gray a, .btn__gray > input, .btn__gray > span {
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
  background-color: #787878;
  border: 2px solid #787878;
  position: relative;
}
.btn__gray a::after, .btn__gray > input::after, .btn__gray > span::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_triangle-white.svg) no-repeat center center/contain;
}
.btn__gray a:hover, .btn__gray > input:hover, .btn__gray > span:hover {
  color: #030303;
  background-color: #fff;
}
.btn__gray a:hover::after, .btn__gray > input:hover::after, .btn__gray > span:hover::after {
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
  -webkit-transform: translateX(0.75em);
          transform: translateX(0.75em);
}
@media (max-width: 768px) {
  .btn__gray a:hover::after, .btn__gray > input:hover::after, .btn__gray > span:hover::after {
    -webkit-transform: translateX(0.375em);
            transform: translateX(0.375em);
  }
}

/* TOP Before After
========================================= */
.before_after-swiper {
  overflow: visible !important;
}
.before_after-swiper .swiper-button-prev, .before_after-swiper .swiper-button-next {
  width: 1.25em;
  height: 1.25em;
  top: -5em;
  margin-top: 0;
}
.before_after-swiper .swiper-button-prev::after, .before_after-swiper .swiper-button-next::after {
  display: none;
}
.before_after-swiper .swiper-button-prev::before, .before_after-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.before_after-swiper .swiper-button-prev {
  left: inherit;
  right: 8%;
}
@media (max-width: 768px) {
  .before_after-swiper .swiper-button-prev {
    right: 48%;
  }
}
.before_after-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.before_after-swiper .swiper-button-next {
  right: 0%;
}
.before_after-swiper .swiper-pagination {
  z-index: 1;
  width: auto;
  top: -4em;
  left: inherit;
  right: 3.8%;
  bottom: inherit;
  font-size: 1.25em;
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .before_after-swiper .swiper-pagination {
    right: 22%;
  }
}

/* サロン詳細：VOICE SP
========================================= */
.voice-swiper .swiper-wrapper {
  padding-bottom: 3em;
}
.voice-swiper .swiper-slide {
  height: auto;
}
.voice-swiper .swiper-button-prev, .voice-swiper .swiper-button-next {
  display: none;
  width: 1.25em;
  height: 1.25em;
  top: inherit;
  bottom: 0;
  margin-top: 0;
}
@media (max-width: 768px) {
  .voice-swiper .swiper-button-prev, .voice-swiper .swiper-button-next {
    display: block;
  }
}
.voice-swiper .swiper-button-prev::after, .voice-swiper .swiper-button-next::after {
  display: none;
}
.voice-swiper .swiper-button-prev::before, .voice-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.voice-swiper .swiper-button-prev {
  left: inherit;
  right: 22%;
}
.voice-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.voice-swiper .swiper-button-next {
  right: 0%;
}

/* サロン詳細：STAFF SP
========================================= */
.staff-swiper .swiper-wrapper {
  padding-bottom: 3em;
}
.staff-swiper .swiper-slide {
  height: auto;
}
.staff-swiper .swiper-button-prev, .staff-swiper .swiper-button-next {
  display: none;
  width: 1.25em;
  height: 1.25em;
  top: inherit;
  bottom: 0;
  margin-top: 0;
}
@media (max-width: 768px) {
  .staff-swiper .swiper-button-prev, .staff-swiper .swiper-button-next {
    display: block;
  }
}
.staff-swiper .swiper-button-prev::after, .staff-swiper .swiper-button-next::after {
  display: none;
}
.staff-swiper .swiper-button-prev::before, .staff-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.staff-swiper .swiper-button-prev {
  left: inherit;
  right: 22%;
}
.staff-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.staff-swiper .swiper-button-next {
  right: 0%;
}

/* サロン詳細:サロン
========================================= */
.salon-swiper {
  padding-bottom: 3.25em !important;
}
@media (max-width: 768px) {
  .salon-swiper {
    overflow: visible !important;
  }
}
.salon-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 768px) {
  .salon-swiper .swiper-slide {
    min-height: 450px;
  }
}
.salon-swiper .swiper-button-prev, .salon-swiper .swiper-button-next {
  width: 1.25em;
  height: 1.25em;
  top: inherit;
  bottom: 0;
  margin-top: 0;
}
.salon-swiper .swiper-button-prev::after, .salon-swiper .swiper-button-next::after {
  display: none;
}
.salon-swiper .swiper-button-prev::before, .salon-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.salon-swiper .swiper-button-prev {
  left: inherit;
  right: 5%;
}
@media (max-width: 768px) {
  .salon-swiper .swiper-button-prev {
    right: 22%;
  }
}
.salon-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.salon-swiper .swiper-button-next {
  right: 0%;
}

/* 採用情報 スタッフインタビュー
========================================= */
@media (max-width: 768px) {
  .interview-swiper {
    overflow: visible !important;
  }
}
.interview-swiper .swiper-button-prev, .interview-swiper .swiper-button-next {
  width: 3em;
  height: 3em;
}
.interview-swiper .swiper-button-prev::after, .interview-swiper .swiper-button-next::after {
  display: none;
}
.interview-swiper .swiper-button-prev::before, .interview-swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/icons/icon_triangle-black.svg) no-repeat center center/contain;
}
.interview-swiper .swiper-button-prev {
  left: 2.5em;
}
@media (max-width: 768px) {
  .interview-swiper .swiper-button-prev {
    left: -2rem;
  }
}
.interview-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.interview-swiper .swiper-button-next {
  right: 2.5em;
}
@media (max-width: 768px) {
  .interview-swiper .swiper-button-next {
    right: -2rem;
  }
}

/* tab
========================================= */
.tab, .tab3, .all, .all3 {
  cursor: pointer;
}
.panel, .panel2, .panel3 {
  display: none;
}
.panel.is-active, .panel2.is-active, .panel3.is-active {
  display: block;
}