@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  -webkit-padding-start: initial;
          padding-inline-start: initial;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

mark {
  background: none;
}

input,
button,
textarea,
select {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  font-family: inherit;
  font-size: inherit;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  border: none;
  outline: none;
}

input[type=submit],
input[type=button] {
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  /* iOSでのlabelとinput,select,textareaの関連付け */
  cursor: pointer;
}

/* スピンボタン非表示 chrome,safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=month]::-webkit-outer-spin-button,
input[type=month]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=week]::-webkit-outer-spin-button,
input[type=week]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=time]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

/* スピンボタン非表示(firefox) */
input[type=number],
input[type=month],
input[type=datetime-local],
input[type=week],
input[type=time],
input[type=date] {
  -moz-appearance: textfield;
}

/* クリアボタン非表示 */
input[type=date]::-webkit-clear-button,
input[type=month]::-webkit-clear-button,
input[type=datetime-local]::-webkit-clear-button,
input[type=time]::-webkit-clear-button,
input[type=week]::-webkit-clear-button {
  -webkit-appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
li {
  list-style: none;
}

a > * {
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #A6925B;
  --color-sub: #847753;
  --color-silver: #D1D1D1;
  --color-kaikan: #A43D26;
  --color-cruise: #396F9A;
  --color-font: #343434;
  --color-link: #847753;
  --color-bg: #F8F6F3;
  /* font
  ---------------------------------------------------------- */
  --font-Shippori: "Shippori Mincho", serif;
  --font-YuMincho: "Yu Mincho", serif;
  --font-YuGothic: "Yu Gothic", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1040px;
  --sidePadding: 20px;
  --marginTop: 20px;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 80px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 30px;
  }
}

/**
 * Makes elements visually invisible but still accessible to screen-readers.
 *
 * This Css has been carefully tested to ensure screen-readers can read and
 * activate (in case of links and buttons) the elements with this class. Please
 * use caution when changing anything, even seemingly safe ones. For example
 * changing width from 1 to 0 would prevent TalkBack from activating (clicking)
 * buttons despite TalkBack reading them just fine. This is because
 * element needs to have a defined size and be on viewport otherwise TalkBack
 * does not allow activation of buttons.
 */
.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
     before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .sp-only {
    display: none;
  }
}

.c-taC {
  text-align: center;
}

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

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

.c-colorBox {
  padding: 20px;
}

.c-of-hidden {
  overflow: hidden;
}

.c-note {
  padding-left: 1.2em;
  position: relative;
}
.c-note mark {
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.c-fwN {
  font-weight: 400;
}

.c-fwM {
  font-weight: var(--font-m);
}

.c-fwB {
  font-weight: var(--font-b);
}

.c-fsSS {
  font-size: 0.8em;
}

.c-fsS {
  font-size: 0.9em;
}

.c-fsM {
  font-size: 1.2em;
}

.c-fsL {
  font-size: 1.4em;
}

.c-fc-red {
  color: var(--color-red);
}

.c-ttl-1 {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  padding-top: 42px;
  margin-bottom: 32px;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 {
    font-size: 36px;
    font-size: 2.25rem;
    padding-top: 70px;
  }
}
.c-ttl-1::before {
  content: "";
  display: inline-block;
  width: 40px;
  aspect-ratio: 1/0.75;
  background: url(/wearkimono/assets/img/img-ume-gold.svg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-ttl-1::before {
    width: 80px;
  }
}
.c-ttl-1.-white::before {
  background-image: url(/wearkimono/assets/img/img-ume-white.svg);
}
.c-ttl-1 + p {
  font-size: 16px;
  font-size: 1rem;
  line-height: var(--lhL);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-ttl-1 + p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-ttl-1.js-scroll::before {
  opacity: 0;
  -webkit-transform: translateX(-50%) scale(0.2);
          transform: translateX(-50%) scale(0.2);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-ttl-1.js-scroll .-txt {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease 0.45s;
  transition: all 0.8s ease 0.45s;
}
.c-ttl-1.js-scroll.-start::before {
  opacity: 1;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}
.c-ttl-1.js-scroll.-start .-txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-link-1 {
  text-decoration: underline;
  text-underline-position: from-font;
  color: var(--color-main);
}
@media screen and (min-width: 960px) {
  .c-link-1:hover {
    text-decoration: none;
  }
}

.c-flex {
  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;
  gap: 10px 20px;
}
.c-flex > * {
  margin-top: 0 !important;
}
.c-flex + * {
  margin-top: var(--marginTop);
}
@media screen and (min-width: 768px) {
  .c-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-flex.-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
}

.c-grid {
  margin-top: 20px !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.c-grid > * {
  margin-top: 0 !important;
}
.c-grid + * {
  margin-top: var(--marginTop);
}
.c-grid > .-txt > *:first-child {
  margin-top: 0 !important;
}
@media screen and (min-width: 768px) {
  .c-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 50px;
  }
}
@media screen and (min-width: 960px) {
  .c-grid {
    margin-top: 40px !important;
  }
}

.c-list-1 + * {
  margin-top: var(--marginTop);
}
.c-list-1 > li > ul {
  margin-top: 10px !important;
  margin-bottom: 15px !important;
}
.c-list-1 > li {
  padding-left: 1.2em;
  position: relative;
}
.c-list-1 > li + li {
  margin-top: 10px;
}
.c-list-1 > li mark {
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-1.-em2 > li {
  padding-left: 2.2em;
}
.c-list-1.-em3 > li {
  padding-left: 3.2em;
}
.c-list-1.-em4 > li {
  padding-left: 4.2em;
}

.c-list-2 + * {
  margin-top: var(--marginTop);
}
.c-list-2 li {
  padding-left: 15px;
  position: relative;
}
.c-list-2 li + li {
  margin-top: 10px;
}
.c-list-2 li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-main);
  border-radius: 9999px;
  position: absolute;
  top: calc(0.5em + 2.5px);
  left: 5px;
}

@media screen and (min-width: 768px) {
  .c-dlBox {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 40px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.c-dlBox + * {
  margin-top: var(--marginTop);
}
.c-dlBox + .c-dlBox {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-dlBox + .c-dlBox {
    margin-top: 0;
    border-top: 1px solid #D9D9D9;
  }
}
.c-dlBox dt {
  padding: 10px;
  background: var(--color-sub);
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-dlBox dt {
    font-weight: 400;
    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;
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-dlBox dt {
    padding: 20px 30px;
  }
}
.c-dlBox dd {
  padding: 10px 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-dlBox dd {
    padding: 20px 20px 20px 0;
  }
}
@media screen and (min-width: 960px) {
  .c-dlBox dd {
    padding: 20px 30px 20px 0;
  }
}

.c-imgAndTxt + * {
  margin-top: var(--marginTop);
}
.c-imgAndTxt .-img {
  float: left;
  width: 100%;
  margin-bottom: var(--marginTop);
}
@media screen and (min-width: 768px) {
  .c-imgAndTxt .-img {
    width: 50%;
    margin-right: 40px;
  }
}
.c-imgAndTxt .-img img {
  margin: auto;
}
.c-imgAndTxt .-txt > * + * {
  margin-top: var(--marginTop);
}
.c-imgAndTxt::after {
  content: "";
  display: block;
  clear: both;
}
.c-imgAndTxt.-right .-img {
  float: right;
  margin-left: 40px;
}

.c-btn-1 {
  text-align: center;
}
.c-btn-1 a {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 5px;
  -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;
  min-width: 230px;
  padding: 10px;
  background: var(--color-main);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.c-btn-1 a .c-icon-svg {
  width: 22px;
  height: 22px;
}

.c-modal__none {
  display: none;
}

.modaal-container {
  border-radius: 6px;
  border: 1px solid var(--color-main);
}

.modaal-content-container {
  padding: 30px 15px 35px;
}
@media screen and (min-width: 768px) {
  .modaal-content-container {
    padding: 40px 20px 45px;
  }
}

.modaal-overlay {
  mix-blend-mode: multiply;
}

.modaal-close {
  width: 26px;
  height: 26px;
  background: var(--color-main) !important;
  position: absolute;
  top: 5px;
  right: 5px;
}
.modaal-close::before, .modaal-close::after {
  top: 12px;
  left: 7px;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
}

html {
  font-family: "Shippori Mincho", serif;
  color: var(--color-font);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 50px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-m);
  letter-spacing: 0.36px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

svg {
  width: 100%;
  height: 100%;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

a.c-telLink {
  color: var(--color-font);
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  a.c-telLink {
    pointer-events: none;
    cursor: default;
  }
}

button {
  background: none;
  padding: 0;
  cursor: pointer;
}

em {
  font-style: normal;
}

.c-YuMincho {
  font-family: "Yu Mincho", serif;
}

.l-loading {
  width: 100%;
  height: 100vh;
  background: var(--color-main);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.l-loading__inner {
  height: 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-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: 10%;
}
.l-loading__logo {
  width: 140px;
}
.l-loading__logo img {
  width: 100%;
}
.l-loading__dot {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 9999px;
  background: #d4c18b;
  -webkit-box-shadow: 0 0 0 0 #beab78;
          box-shadow: 0 0 0 0 #beab78;
  -webkit-animation: l1 1.5s infinite;
          animation: l1 1.5s infinite;
}
@-webkit-keyframes l1 {
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}
@keyframes l1 {
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
  }
}

.l-bg-grd {
  position: relative;
}
.l-bg-grd > * {
  position: relative;
}
.l-bg-grd::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#C9C9C9), color-stop(84.13%, #434343), to(#2D2D2D));
  background: -webkit-linear-gradient(top, #C9C9C9 0%, #434343 84.13%, #2D2D2D 100%);
  background: linear-gradient(180deg, #C9C9C9 0%, #434343 84.13%, #2D2D2D 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.l-bg-movie {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
}
.l-bg-movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-header {
  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;
  padding: 0 12px;
  height: 88px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 164px;
    padding: 0 20px 0 30px;
    -webkit-transition: none;
    transition: none;
  }
}
@media screen and (min-width: 960px) {
  .l-header {
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto auto;
  }
}
.l-header__logo {
  width: 64px;
  aspect-ratio: 1/1;
  background: url(/wearkimono/assets/img/logo-white.svg) no-repeat center center/cover;
  position: absolute;
  top: 12px;
  left: 12px;
}
.l-header__logo.-color {
  background-image: url(/wearkimono/assets/img/logo-color.svg);
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 140px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__logo {
    top: 30px;
    left: 30px;
  }
}
.l-header__btn {
  display: none;
}
.l-header__lang {
  position: fixed;
  top: 8px;
  right: 60px;
}
@media screen and (min-width: 768px) {
  .l-header__lang {
    position: absolute;
    top: 15px;
    right: 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-header__lang {
    position: static;
  }
}
@media screen and (min-width: 960px) {
  .l-header__lang {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-header__lang:hover {
    opacity: 0.7;
  }
}
.l-header__lang a {
  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-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-weight: var(--font-b);
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  padding: 0 5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.l-header__lang a .c-icon-svg {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 960px) {
  .l-header__lang a .c-icon-svg {
    width: 24px;
    height: 24px;
  }
}
.l-header__telBox {
  display: none;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .l-header__telBox {
    display: block;
    position: static;
    top: 20px;
    right: 30px;
    margin-left: 10px;
  }
}
.l-header__telBox .-telBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-weight: 600;
  padding: 0 5px;
  border-bottom: 1px solid #D8D8D8;
}
.l-header__telBox .-telBox .-yoyaku {
  font-size: 18px;
  font-size: 1.125rem;
  margin-right: 10px;
}
.l-header__telBox .-telBox .-tel {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 5px;
}
.l-header__telBox .-telBox .-number {
  font-size: 24px;
  font-size: 1.5rem;
}
.l-header__telBox .-detail {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding-top: 5px;
}
.l-header.-onScroll {
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 555;
}
@media screen and (min-width: 768px) {
  .l-header.-onScroll {
    height: 115px;
    background: #fff;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: none;
    transition: none;
  }
}
.l-header.-onScroll .l-header__logo {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header.-onScroll .l-header__logo {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header.-onScroll .l-nav {
    visibility: visible;
  }
}
.l-header.-white {
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 555;
}
@media screen and (min-width: 768px) {
  .l-header.-white {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media screen and (min-width: 960px) {
  .l-header.-white {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .l-header.-white .l-header__logo {
    width: 84px;
    background-image: url(/wearkimono/assets/img/logo-color.svg);
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 999;
  }
}
@media screen and (min-width: 768px) {
  .l-header.-white .l-header__lang {
    position: static;
    margin-left: 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-header.-white .l-header__lang {
    margin-left: 0;
  }
}
.l-header.-white .l-header__lang a {
  color: var(--color-sub);
}
.l-header.-white .l-header__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  padding: 2px 5px 4px;
}
@media screen and (min-width: 768px) {
  .l-header.-white .l-header__btn {
    display: none;
  }
}
.l-header.-white .l-header__btn .c-icon-svg {
  width: 14px;
  height: 14px;
}
.l-header.-white .l-header__telBox {
  color: var(--color-sub);
  position: relative;
  top: auto;
  right: auto;
  padding-right: 25px;
}
.l-header.-white .l-nav__btn {
  background: var(--color-main);
}
.l-header.-active .l-header__logo {
  visibility: visible;
  opacity: 1;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  background-image: url(/wearkimono/assets/img/logo-color.svg);
}

.l-nav {
  position: relative;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  background: #fff;
  width: 100%;
  height: 100vh;
  padding: 85px 30px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888;
}
.l-nav__btn {
  width: 50px;
  aspect-ratio: 1/1;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-nav__btn {
    display: none;
  }
}
.l-nav__btn span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 960px) {
  .l-nav__btn span {
    background: none;
  }
}
.l-nav__btn span::before, .l-nav__btn span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-nav__btn span::before {
  top: -6px;
}
.l-nav__btn span::after {
  top: 6px;
}
.l-nav__btn.-active {
  background: var(--color-main);
}
.l-nav__btn.-active span {
  background: transparent;
}
.l-nav__btn.-active span::before, .l-nav__btn.-active span::after {
  top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-nav__btn.-active span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .l-nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: hidden;
    -webkit-transition: none;
    transition: none;
  }
}
.l-nav.-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .l-nav {
    height: 100%;
    background: none;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding: 0 0 0 85px;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .l-nav {
    background: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px 0 115px;
    position: relative;
  }
}
.l-nav__list {
  max-height: calc(100vh - 85px - 50px);
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .l-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: 20px;
    height: 100%;
    max-height: none;
  }
}
@media screen and (min-width: 960px) {
  .l-nav__list {
    max-width: 800px;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-nav__list li + li {
  border-top: 1px solid #E7E7E7;
}
@media screen and (min-width: 768px) {
  .l-nav__list li + li {
    border-top: none;
  }
}
.l-nav__list li a {
  display: grid;
  grid-template-columns: 1fr 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-font);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .l-nav__list li a {
    font-size: clamp(0.688rem, -0.708rem + 2.91vw, 1rem);
    grid-template-columns: 1fr;
    padding: 0;
    text-align: center;
    min-height: 35px;
    position: relative;
  }
  .l-nav__list li a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-main);
    position: absolute;
    bottom: -3px;
    right: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .l-nav__list li a.-current::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-nav__list li a {
    font-size: clamp(0.75rem, -1.25rem + 3.33vw, 1rem);
  }
  .l-nav__list li a:hover::after {
    width: 100%;
    right: auto;
    left: 0;
  }
}
.l-nav__list li a .c-icon-svg {
  width: 15px;
  aspect-ratio: 1/1;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-nav__list li a .c-icon-svg {
    display: none;
  }
}
.l-nav__list li a .-three {
  font-size: 1.6em;
}
.l-nav__list li.-reservation {
  border-top: none;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-nav__list li.-reservation {
    margin-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-nav__list li.-reservation {
    display: none;
  }
}
.l-nav__list li.-reservation a {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-main);
  text-align: center;
  padding: 10px;
  border: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-nav__list li.-reservation a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.l-footer {
  font-size: 9px;
  font-size: 0.5625rem;
  font-family: "Yu Gothic", sans-serif;
  background: #454545;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 25px;
  }
}

.l-mv {
  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-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-bottom: 30%;
  height: 100svh;
}
@media screen and (min-width: 768px) {
  .l-mv {
    padding: 12% 0;
  }
}
.l-mv__ttl {
  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-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;
  color: #fff;
}
.l-mv__ttl .-txt1 {
  font-size: clamp(1.375rem, 0.042rem + 6.67vw, 1.875rem);
  font-weight: 600;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .l-mv__ttl .-txt1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 960px) {
  .l-mv__ttl .-txt1 {
    font-size: clamp(2.5rem, 1.237rem + 2.11vw, 3rem);
  }
}
.l-mv__ttl .-txt2 {
  font-size: clamp(2.063rem, 0.063rem + 10vw, 2.813rem);
  font-weight: 600;
  letter-spacing: 6.6px;
}
@media screen and (min-width: 768px) {
  .l-mv__ttl .-txt2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 960px) {
  .l-mv__ttl .-txt2 {
    font-size: clamp(3.75rem, 1.855rem + 3.16vw, 4.5rem);
  }
}
.l-mv__subTtl {
  margin-top: 15px;
  font-size: clamp(0.75rem, 0.083rem + 3.33vw, 1rem);
  font-weight: 600;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-mv__subTtl {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 960px) {
  .l-mv__subTtl {
    font-size: clamp(1.313rem, 0.681rem + 1.05vw, 1.563rem);
  }
}
.l-mv__scroll {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  padding-bottom: 65px;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  --scrollHeight: 55px;
}
@media screen and (min-width: 768px) {
  .l-mv__scroll {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 120px;
    bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-mv__scroll {
    --scrollHeight: 110px;
  }
}
.l-mv__scroll::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: var(--scrollHeight);
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scrollLine 1.5s ease-in infinite;
          animation: scrollLine 1.5s ease-in infinite;
}
@-webkit-keyframes scrollLine {
  0% {
    height: 0;
    bottom: var(--scrollHeight);
  }
  30% {
    height: var(--scrollHeight);
    bottom: 0;
  }
  60% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scrollLine {
  0% {
    height: 0;
    bottom: var(--scrollHeight);
  }
  30% {
    height: var(--scrollHeight);
    bottom: 0;
  }
  60% {
    height: 0;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
.l-mv__ttl .-txt1 span {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.l-mv__ttl .-txt2 {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1.3s ease 2s;
  transition: all 1.3s ease 2s;
}
.l-mv__subTtl {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease 3.2s;
  transition: all 0.8s ease 3.2s;
}
.l-mv.-start .l-mv__ttl .-txt1 span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-mv.-start .l-mv__ttl .-txt1 span:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.l-mv.-start .l-mv__ttl .-txt1 span:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.l-mv.-start .l-mv__ttl .-txt2 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-mv.-start .l-mv__subTtl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-lead {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .l-lead {
    padding: 70px 0 0;
  }
}
@media screen and (min-width: 960px) {
  .l-lead {
    padding: 70px 60px 0;
    overflow: hidden;
  }
}
.l-lead__inner {
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-lead__txtAndImg .l-lead__img {
    margin-left: 120px;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__txtAndImg {
    display: grid;
    grid-template-columns: 43% 1fr;
    gap: 9%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-lead__txtAndImg .l-lead__txt {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
  }
  .l-lead__txtAndImg .l-lead__img {
    width: auto;
    margin-left: 0;
    margin-top: 0;
  }
}
.l-lead__ttl {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: var(--lhL);
  margin-bottom: 25px;
  letter-spacing: 2.2px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-lead__ttl {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__ttl {
    margin-bottom: 50px;
  }
}
.l-lead__txt {
  font-weight: var(--font-r);
  line-height: var(--lhL);
  color: #fff;
  padding: 0 30px;
  font-weight: 600;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-lead__txt {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: var(--font-r);
  }
}
.l-lead__txt p + p {
  margin-top: 15px;
}
@media screen and (min-width: 960px) {
  .l-lead__txt p + p {
    margin-top: 25px;
  }
}
.l-lead__img {
  margin-top: 45px;
  width: 63%;
}
@media screen and (min-width: 768px) {
  .l-lead__img {
    width: 55%;
  }
}
.l-lead__imgBox {
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-lead__imgBox {
    margin-top: 60px;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__imgBox {
    margin-top: 108px;
  }
}
.l-lead__imgBox .l-lead__img:first-child {
  width: 46%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .l-lead__imgBox .l-lead__img:first-child {
    width: 35%;
    position: absolute;
    top: 0;
    right: 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__imgBox .l-lead__img:first-child {
    width: 27%;
    right: 0;
  }
}
.l-lead__imgBox .l-lead__img:nth-child(2) {
  margin-top: 27px;
  width: 84%;
}
@media screen and (min-width: 768px) {
  .l-lead__imgBox .l-lead__img:nth-child(2) {
    padding-top: 150px;
    width: 55%;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__imgBox .l-lead__img:nth-child(2) {
    margin-top: 108px;
    padding-top: 192px;
    width: 49%;
    margin-left: 11%;
  }
}
.l-lead__bottomImg {
  height: 135px;
}
@media screen and (min-width: 768px) {
  .l-lead__bottomImg {
    height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .l-lead__bottomImg {
    height: 400px;
    width: 100vw;
    margin-left: -60px;
  }
}
.l-lead__bottomImg .l-lead__img {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .l-lead__bottomImg .l-lead__img {
    margin-top: 145px;
  }
}
.l-lead__bottomImg .l-lead__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-real {
  padding: 90px 0 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-real {
    padding-top: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-real {
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, var(--color-bg)), to(var(--color-bg)));
    background: -webkit-linear-gradient(left, #fff 0%, #fff 50%, var(--color-bg) 50%, var(--color-bg) 100%);
    background: linear-gradient(90deg, #fff 0%, #fff 50%, var(--color-bg) 50%, var(--color-bg) 100%);
  }
}
@media screen and (min-width: 768px) {
  .l-real__inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .l-real__inner {
    max-width: 1440px;
    margin: 0 auto;
    grid-template-columns: 37% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .l-real__colTtl {
    max-width: 540px;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    padding-top: 25%;
    max-height: calc(100svh - 120px);
  }
}
.l-real .c-ttl-1 span {
  font-size: 36px;
  font-size: 2.25rem;
  margin-right: 3px;
}
@media screen and (min-width: 768px) {
  .l-real .c-ttl-1 span {
    font-size: 64px;
    font-size: 4rem;
  }
}
.l-real__colList {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--color-bg);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-real__colList {
    padding: 100px 60px 140px;
  }
}
@media screen and (min-width: 960px) {
  .l-real__colList {
    padding: 225px 0 200px;
  }
}
.l-real__colList__item {
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-real__colList__item {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .l-real__colList__item {
    width: 67%;
  }
}
.l-real__colList__item + .l-real__colList__item {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-real__colList__item + .l-real__colList__item {
    margin-top: 140px;
  }
}
.l-real__colList__item > * {
  position: relative;
  z-index: 3;
}
.l-real__colList__item .-num {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  color: #ECE8DD;
  position: absolute;
  top: -55px;
  right: -2px;
  z-index: auto;
}
@media screen and (min-width: 768px) {
  .l-real__colList__item .-num {
    font-size: 100px;
    font-size: 6.25rem;
    top: -80px;
    right: -85px;
  }
}
@media screen and (min-width: 960px) {
  .l-real__colList__item .-num {
    font-size: 150px;
    font-size: 9.375rem;
    top: -140px;
    right: -130px;
  }
}
.l-real__colList__item:first-child::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 145px;
  background: #fff;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-real__colList__item:first-child::before {
    content: none;
  }
}
.l-real__colList__item .-ttl {
  margin-top: 15px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-real__colList__item .-ttl {
    font-size: 22px;
    font-size: 1.375rem;
    margin-top: 30px;
  }
}
@media screen and (min-width: 960px) {
  .l-real__colList__item .-ttl {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 40px;
  }
}
.l-real__colList__item .-txt {
  margin-top: 15px;
  line-height: var(--lhM);
}
@media screen and (min-width: 768px) {
  .l-real__colList__item .-txt {
    margin-top: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-real__colList__item .-txt {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 30px;
  }
}
.l-real__colList__item.js-scroll .-num {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-real__colList__item.js-scroll .-img, .l-real__colList__item.js-scroll .-ttl, .l-real__colList__item.js-scroll .-txt {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease 0.5s;
  transition: all 0.8s ease 0.5s;
}
.l-real__colList__item.js-scroll.-start .-num {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-real__colList__item.js-scroll.-start .-img, .l-real__colList__item.js-scroll.-start .-ttl, .l-real__colList__item.js-scroll.-start .-txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-flow {
  padding: 40px 0;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-flow {
    padding: 100px 60px 140px;
  }
}
.l-flow__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-flow__bg {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .l-flow__bg::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #aaa;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-flow__bg__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100svh;
    width: 100%;
    opacity: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
  }
  .l-flow__bg__item.-active {
    opacity: 1;
  }
  .l-flow__bg__item figure {
    width: 100%;
    height: 100%;
  }
  .l-flow__bg__item figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .l-flow__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 90px 60px;
    background: #fff;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .l-flow__inner {
    padding: 90px 80px;
  }
}
.l-flow__location {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  -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;
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-flow__location {
    padding: 0;
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.l-flow__location__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-kaikan);
  min-height: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item {
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
  }
}
.l-flow__location__item:nth-child(2) {
  border-color: var(--color-cruise);
}
.l-flow__location__item:nth-child(2) .-txtBox .-name {
  color: var(--color-cruise);
}
.l-flow__location__item .-img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item .-img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    min-height: 175px;
  }
}
.l-flow__location__item .-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-flow__location__item .-txtBox {
  text-align: center;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item .-txtBox {
    padding: 20px;
  }
}
.l-flow__location__item .-txtBox .-location {
  display: inline-block;
  padding: 1px 10px 2px;
  border-radius: 9999px;
  background: var(--color-main);
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item .-txtBox .-location {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 2px 15px 3px;
  }
}
.l-flow__location__item .-txtBox .-name {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-kaikan);
  font-weight: var(--font-b);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item .-txtBox .-name {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-flow__location__item:nth-child(1) .-txtBox .-name {
    margin-top: 25px;
  }
}
.l-flow__location__item .-fukidashi {
  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;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  font-weight: var(--font-b);
  color: #fff;
  padding: 5px;
  border-radius: 9999px;
  aspect-ratio: 1/1;
  background: var(--color-cruise);
  border: 1.5px solid #fff;
  position: absolute;
  bottom: -40px;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .l-flow__location__item .-fukidashi {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 10px;
    left: auto;
    right: -35px;
    bottom: -30px;
    border-width: 2px;
  }
}
.l-flow__location.js-scroll .l-flow__location__item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.l-flow__location.js-scroll .l-flow__location__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-flow__location.js-scroll .l-flow__location__item .-fukidashi {
  opacity: 0;
  -webkit-transform: scale(0.88);
          transform: scale(0.88);
  -webkit-transition: all 0.3s ease 0.85s;
  transition: all 0.3s ease 0.85s;
}
.l-flow__location.js-scroll.-start .l-flow__location__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-flow__location.js-scroll.-start .l-flow__location__item .-fukidashi {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.l-flow__list {
  margin-top: 75px;
  padding: 0 20px 0 50px;
  position: relative;
  --gap: 30px;
}
@media screen and (min-width: 768px) {
  .l-flow__list {
    margin-top: 70px;
    padding: 0 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-flow__list {
    --gap: 100px;
  }
}
.l-flow__list__item {
  position: relative;
}
.l-flow__list__item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% + var(--gap));
  background: #D2C39C;
  position: absolute;
  top: 0;
  left: -25px;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item::before {
    left: -60px;
  }
}
.l-flow__list__item:last-child::before {
  content: none;
}
.l-flow__list__item + .l-flow__list__item {
  margin-top: var(--gap);
}
.l-flow__list__item .-ttlBox {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-ttlBox {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-flow__list__item .-ttlBox + * {
  margin-top: 20px;
}
.l-flow__list__item .-ttl {
  position: relative;
}
.l-flow__list__item .-ttl .-num {
  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;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-main);
  background: #fff;
  border: 1px solid var(--color-main);
  width: 34px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  position: absolute;
  top: -4px;
  left: -42px;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-ttl .-num {
    font-size: 40px;
    font-size: 2.5rem;
    width: 75px;
    padding-bottom: 4px;
    border-width: 2px;
    top: -15px;
    left: calc(0% - 37.5px - 60px);
  }
}
.l-flow__list__item .-ttl .-txt {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-ttl .-txt {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.l-flow__list__item .-time {
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-time {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-flow__list__item .-img {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-img {
    margin-top: 30px;
  }
}
.l-flow__list__item .-img + * {
  margin-top: 15px;
}
.l-flow__list__item .-subBox {
  background: var(--color-bg);
  padding: 20px 15px;
  margin-top: 20px;
  color: var(--color-sub);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-subBox {
    margin-top: 30px;
    padding: 40px;
  }
}
.l-flow__list__item .-subBox > .-ttl {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-subBox > .-ttl {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.l-flow__list__item .-subBox > .-ttl + * {
  margin-top: 20px !important;
}
.l-flow__list__item .-subBox .-locationBox {
  margin-top: 20px;
  border: 1px solid var(--color-kaikan);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-subBox .-locationBox {
    margin-top: 30px;
  }
}
.l-flow__list__item .-subBox .-locationBox + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-subBox .-locationBox + * {
    margin-top: 20px;
  }
}
.l-flow__list__item .-subBox .-locationBox .-ttl {
  text-align: center;
  color: var(--color-kaikan);
  font-weight: var(--font-b);
  padding: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-flow__list__item .-subBox .-locationBox .-ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 10px;
  }
}
.l-flow__list__item .-subBox .-locationBox .-img {
  margin-top: 0;
}
.l-flow__list__item .-subBox .-locationBox.-B {
  border-color: var(--color-cruise);
}
.l-flow__list__item .-subBox .-locationBox.-B .-ttl {
  color: var(--color-cruise);
}
.l-flow__list__item .-subBox p + p {
  margin-top: 10px;
}
.l-flow__list__item.js-scroll > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.l-flow__list__item.js-scroll::before {
  height: 0;
  -webkit-transition: height 1.5s ease;
  transition: height 1.5s ease;
}
.l-flow__list__item.js-scroll.-start > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-flow__list__item.js-scroll.-start::before {
  height: calc(100% + var(--gap));
}

.l-gallery {
  background: #fff;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-gallery {
    padding-top: 180px;
    overflow: hidden;
  }
}
.l-gallery__list {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-gallery__list {
    margin: 90px auto 0;
    max-width: 1120px;
    z-index: 1;
  }
}
.l-gallery__list__item:nth-child(1) {
  width: 44%;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(1) {
    width: 51%;
  }
}
.l-gallery__list__item:nth-child(2) {
  width: 43%;
  position: absolute;
  right: 0;
  top: 45px;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(2) {
    width: 43%;
    top: 10%;
  }
}
.l-gallery__list__item:nth-child(3) {
  width: 43%;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(3) {
    width: 50%;
    margin-top: 130px;
    margin-left: -80px;
  }
}
@media screen and (min-width: 960px) {
  .l-gallery__list__item:nth-child(3) {
    margin-left: -160px;
  }
}
.l-gallery__list__item:nth-child(4) {
  width: 37%;
  position: absolute;
  bottom: 53px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(4) {
    width: 37%;
    bottom: auto;
    top: 39%;
    right: 120px;
  }
}
.l-gallery__list__item:nth-child(5) {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(5) {
    display: block;
    width: 53%;
    position: absolute;
    bottom: 10%;
    right: -14%;
  }
}
.l-gallery__list__item:nth-child(6) {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-gallery__list__item:nth-child(6) {
    display: block;
    width: 37%;
    margin: 160px 0 -60px 11%;
  }
}
.l-gallery__slideBox {
  padding-bottom: 35px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-gallery__slideBox {
    padding-bottom: 65px;
  }
}
.l-gallery__slideBox .-note {
  color: #fff;
  margin-top: 10px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-gallery__slideBox .-note {
    margin-top: 25px;
    padding: 0 40px;
    text-align: center;
  }
  .l-gallery__slideBox .-note > * {
    display: inline-block;
    margin: 0 auto;
  }
}
.l-gallery__mainSlide {
  padding: 35px 0 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-gallery__mainSlide {
    padding: 165px 0 0;
  }
}
.l-gallery__mainSlide li {
  width: 135px;
  margin-right: 7px;
}
@media screen and (min-width: 768px) {
  .l-gallery__mainSlide li {
    width: 230px;
    margin-right: 15px;
  }
}
@media screen and (min-width: 960px) {
  .l-gallery__mainSlide li {
    width: 310px;
  }
}
.l-gallery__subSlide {
  -webkit-filter: blur(9px);
          filter: blur(9px);
}
@media screen and (min-width: 768px) {
  .l-gallery__subSlide {
    -webkit-filter: blur(25px);
            filter: blur(25px);
  }
}
.l-gallery__subSlide__outer {
  width: 100%;
  position: absolute;
  bottom: 50%;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: auto;
}
.l-gallery__subSlide__outer::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.l-gallery__subSlide__outer .slick-slide img {
  width: 100%;
}

.l-kimono {
  background: #fff;
  padding: 55px 0 50px;
}
@media screen and (min-width: 768px) {
  .l-kimono {
    padding: 120px 40px 100px;
  }
}
.l-kimono__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.l-kimono__list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-kimono__list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-kimono__list__item {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .l-kimono__list__item {
    padding: 0;
  }
}
.l-kimono__list__item .-name {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-kimono__list__item .-name {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-kimono .slick-arrow {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--color-main);
  top: calc(50% - 1em - 10px);
  z-index: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.l-kimono .slick-arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: calc(50% - 1px);
}
.l-kimono .slick-arrow:hover {
  background: #fff;
}
.l-kimono .slick-arrow.slick-disabled {
  opacity: 0;
}
.l-kimono .slick-arrow.slick-disabled::before {
  opacity: 1;
}
.l-kimono .slick-next {
  right: 20px;
}
.l-kimono .slick-prev {
  left: 20px;
}
.l-kimono .slick-prev::before {
  left: calc(50% + 1px);
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.l-plan {
  background: var(--color-main);
  color: #fff;
  padding: 50px 20px 60px;
}
@media screen and (min-width: 768px) {
  .l-plan {
    padding: 120px 40px 120px;
  }
}
.l-plan__inner {
  max-width: 880px;
  margin: 0 auto;
}
.l-plan .c-ttl-1 p {
  margin-top: 0;
}
.l-plan .c-ttl-1 + p {
  font-weight: 500;
}
.l-plan p {
  margin-top: 20px;
}
.l-plan p + p {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .l-plan p + p {
    margin-top: 10px;
  }
}
.l-plan p .-kome {
  font-size: 0.7em;
  font-style: normal;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .l-plan .-note {
    text-align: center;
  }
}
.l-plan a {
  color: #fff;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 960px) {
  .l-plan a:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 960px) {
  .l-plan a.c-telLink {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
.l-plan__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-plan__list {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.l-plan__list__item {
  background: #fff;
  color: var(--color-font);
  padding-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-plan__list__item {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-img {
    height: 230px;
    width: 100%;
  }
  .l-plan__list__item .-img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.l-plan__list__item .-plan {
  font-size: clamp(0.625rem, -0.042rem + 3.33vw, 0.875rem);
  font-weight: var(--font-b);
  color: var(--color-sub);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-plan {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
.l-plan__list__item .-price {
  font-size: clamp(1.688rem, 0.021rem + 8.33vw, 2.313rem);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-price {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.l-plan__list__item .-price .-yen {
  font-size: clamp(1.125rem, -0.042rem + 5.83vw, 1.563rem);
  margin-right: 3px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-price .-yen {
    font-size: 30px;
    font-size: 1.875rem;
    margin-left: 0;
    margin-right: 6px;
  }
}
.l-plan__list__item .-price .-tax {
  font-size: clamp(0.625rem, 0.125rem + 2.5vw, 0.813rem);
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-price .-tax {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-plan__list__item .-price .-people {
  font-size: clamp(1rem, 5vw, 1.375rem);
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .l-plan__list__item .-price .-people {
    font-size: 26px;
    font-size: 1.625rem;
    padding-right: 25px;
  }
}
.l-plan__location__ttl {
  margin-top: 30px;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .l-plan__location__ttl {
    margin-top: 65px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.l-plan__location__list {
  margin: 12px 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-plan__location__list {
    margin: 20px 0 35px;
  }
}
.l-plan__location__list__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  color: var(--color-main);
  min-height: 105px;
}
@media screen and (min-width: 768px) {
  .l-plan__location__list__item {
    min-height: 260px;
  }
}
.l-plan__location__list__item .-img {
  height: 100%;
  height: 100%;
}
.l-plan__location__list__item .-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-plan__location__list__item .-txtBox {
  padding: 15px 10px 10px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-plan__location__list__item .-txtBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
  }
}
.l-plan__location__list__item .-txtBox .-location {
  font-size: 11px;
  font-size: 0.6875rem;
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 9999px;
  font-weight: 600;
  padding: 0 10px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .l-plan__location__list__item .-txtBox .-location {
    font-size: 14px;
    font-size: 0.875rem;
    position: absolute;
    top: 15px;
    left: 15px;
  }
}
.l-plan__location__list__item .-txtBox .-name {
  margin-top: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
  color: var(--color-kaikan);
}
@media screen and (min-width: 768px) {
  .l-plan__location__list__item .-txtBox .-name {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 0;
  }
}
.l-plan__location__list__item:nth-child(2) .-txtBox .-name {
  color: var(--color-cruise);
}
.l-plan__detailBox {
  padding: 20px 0;
  font-weight: var(--font-r);
}
@media screen and (min-width: 768px) {
  .l-plan__detailBox {
    padding: 30px 0;
  }
}
.l-plan__detailBox + .l-plan__detailBox {
  border-top: 2px solid #B4A77E;
}
.l-plan__detailBox .-ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-b);
}
@media screen and (min-width: 768px) {
  .l-plan__detailBox .-ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.l-plan__detailBox .-ttl + * {
  margin-top: 15px;
}
.l-plan__detailBox .c-list-2 li::before {
  width: 11px;
  height: 11px;
  background: #CFBD8B;
  left: 0;
  top: calc(0.5em - 1.5px);
}
.l-plan__detailBox .-leftLineBox {
  padding-left: 10px;
  border-left: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .l-plan__detailBox .-leftLineBox {
    margin-top: 35px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-plan__detailBox .-leftLineBox .-ttl {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
  }
}
.l-plan__detailBox .-leftLineBox * + * {
  margin-top: 5px;
}
.l-plan__detailBox .-leftLineBox * + .-ttl {
  margin-top: 15px;
}
.l-plan__detailBox .-leftLineBox .-ttl {
  font-weight: 600;
}
.l-plan__detailBox .-plainList li + li {
  margin-top: 5px;
}
.l-plan__detailBox .-contactDlBox {
  display: grid;
  grid-template-columns: 2.7em 1fr;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.l-plan__detailBox .-contactDlBox dt {
  position: relative;
}
.l-plan__detailBox .-contactDlBox dt::after {
  content: ":";
  display: inline-block;
  position: absolute;
  top: -2px;
  right: -5px;
}

.l-access {
  background: var(--color-bg);
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-access {
    padding: 120px 40px;
  }
}
.l-access__inner {
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-access__list {
    margin-top: 140px;
  }
}
.l-access__list__item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-access__list__item {
    display: grid;
    grid-template-columns: 1fr minmax(0, 55%);
    text-align: left;
  }
}
.l-access__list__item + .l-access__list__item {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item + .l-access__list__item {
    margin-top: 60px;
  }
}
.l-access__list__item .-txtBox {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-txtBox {
    padding: 0;
  }
}
.l-access__list__item .-txtBox .-location {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 9999px;
  padding: 0 10px;
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-txtBox .-location {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-access__list__item .-txtBox .-name {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-txtBox .-name {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .l-access__list__item .-txtBox .-name span {
    display: inline-block;
  }
}
.l-access__list__item .-txtBox .-name + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-txtBox .-name + * {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
.l-access__list__item .-txtBox .c-link-1 {
  margin-top: 10px;
}
.l-access__list__item .-txtBox .c-link-1 a {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: var(--font-b);
  color: var(--color-sub);
  padding: 5px 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .l-access__list__item .-txtBox .c-link-1 a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-access__list__item .-txtBox .c-link-1 a:hover {
    opacity: 0.7;
  }
}
.l-access__list__item .-txtBox .c-link-1 a .c-icon-svg {
  width: 11px;
  height: 11px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-txtBox .c-link-1 a .c-icon-svg {
    width: 12px;
    height: 12px;
  }
}
.l-access__list__item .-txtBox .c-link-1 a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-access__list__item .-googlemap {
  margin-top: 20px;
  height: 190px;
}
@media screen and (min-width: 768px) {
  .l-access__list__item .-googlemap {
    margin-top: 0;
    max-width: 460px;
    height: 350px;
  }
}
.l-access__list__item .-googlemap iframe {
  width: 100%;
  height: 100%;
}

.l-contact {
  background: var(--color-main);
  padding: 40px var(--sidePadding);
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding: 120px var(--sidePadding);
  }
}
.l-contact .-ttl {
  color: #fff;
  font-size: clamp(0.938rem, -0.063rem + 5vw, 1.313rem);
  font-weight: 600;
  text-align: center;
  line-height: var(--lhL);
}
@media screen and (min-width: 768px) {
  .l-contact .-ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.l-contact .-telBox {
  max-width: 610px;
  margin: 8px auto 0;
  padding-top: 8px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .l-contact .-telBox {
    margin-top: 25px;
    padding-top: 20px;
  }
}
.l-contact .-telBox .-telCol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
}
.l-contact .-telBox .-tel {
  font-size: clamp(0.938rem, -0.063rem + 5vw, 1.313rem);
}
@media screen and (min-width: 768px) {
  .l-contact .-telBox .-tel {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.l-contact .-telBox .-phoneNumber {
  font-size: clamp(1.625rem, -0.042rem + 8.33vw, 2.25rem);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-contact .-telBox .-phoneNumber {
    font-size: 48px;
    font-size: 3rem;
  }
}
.l-contact .-telBox .-detail {
  font-size: clamp(0.688rem, 0.021rem + 3.33vw, 0.938rem);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .l-contact .-telBox .-detail {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 0;
  }
}
.l-contact .-subBox {
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .l-contact .-subBox {
    max-width: 440px;
    margin: 35px auto 0;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 25px 10px;
    border-radius: 10px;
  }
}
.l-contact .-subBox .-txt1 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: var(--lhL);
}
@media screen and (min-width: 768px) {
  .l-contact .-subBox .-txt1 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-contact .-subBox .-txt1 + * {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .l-contact .-subBox .-txt1 + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-contact .-subBox .-txt2 {
    display: grid;
    grid-template-columns: auto auto auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-contact .-subBox .-txt2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #CFBD8B;
    border-radius: 9999px;
    margin-right: 2px;
  }
  .l-contact .-subBox .-txt2 span {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .l-contact .-subBox .-txt2 span {
    display: inline-block;
  }
}

.l-modal .-ttl {
  color: var(--color-sub);
  font-size: clamp(1.125rem, 0.125rem + 5vw, 1.5rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal .-ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .l-modal .-ttl br {
    display: none;
  }
}
.l-modal .-telBox {
  margin-top: 5px;
  color: var(--color-sub);
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal .-telBox {
    margin-top: 15px;
  }
}
.l-modal .-telBox .-telCol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
}
.l-modal .-telBox .-tel {
  font-size: clamp(0.938rem, -0.063rem + 5vw, 1.313rem);
}
@media screen and (min-width: 768px) {
  .l-modal .-telBox .-tel {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-modal .-telBox .-phoneNumber {
  font-size: clamp(1.625rem, -0.042rem + 8.33vw, 2.25rem);
}
@media screen and (min-width: 768px) {
  .l-modal .-telBox .-phoneNumber {
    font-size: 32px;
    font-size: 2rem;
  }
}
.l-modal .-telBox .-detail {
  font-size: clamp(0.688rem, 0.021rem + 3.33vw, 0.938rem);
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .l-modal .-telBox .-detail {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-modal .-subBox {
  margin-top: 30px;
  padding: 10px 0 0;
  border-top: 1px solid var(--color-main);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-modal .-subBox {
    padding-top: 20px;
  }
}
.l-modal .-subBox .-txt1 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: var(--lhL);
}
@media screen and (min-width: 768px) {
  .l-modal .-subBox .-txt1 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-modal .-subBox .-txt1 + * {
  margin-top: 5px;
}
.l-modal .-subBox span {
  display: inline-block;
}
.l-modal .c-btn-1 {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-modal .c-btn-1 {
    margin-top: 30px;
  }
}

.translated-ltr .l-header__lang {
  display: none;
}
@media screen and (min-width: 960px) {
  .translated-ltr .l-header__telBox .-detail {
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .translated-ltr .l-nav__list li a {
    font-size: 10px;
    line-height: 1;
  }
}
@media screen and (min-width: 960px) {
  .translated-ltr .l-nav__list li a {
    font-size: 14px;
  }
}
.translated-ltr .l-nav__list li a .-three {
  font-size: 1em;
}
.translated-ltr .l-real .c-ttl-1 span {
  font-size: 28px;
  font-size: 1.75rem;
}
.translated-ltr .l-flow__location.js-scroll.-start .l-flow__location__item .-fukidashi {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .translated-ltr .l-flow__location.js-scroll.-start .l-flow__location__item .-fukidashi {
    max-width: 140px;
  }
}
.translated-ltr .l-flow__list__item .-ttlBox {
  gap: 20px;
}
.translated-ltr .l-plan em {
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .translated-ltr .l-contact .-subBox .-txt2 {
    grid-template-columns: auto auto;
    grid-template-areas: "circle txt1" "circle txt2";
  }
  .translated-ltr .l-contact .-subBox .-txt2::before {
    grid-area: circle;
    background: #fff;
  }
  .translated-ltr .l-contact .-subBox .-txt2 span:first-child {
    grid-area: txt1;
  }
  .translated-ltr .l-contact .-subBox .-txt2 span:last-child {
    grid-area: txt2;
  }
}

.mt0 {
  margin-top: 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}