@charset "utf-8";
/* =======================================
font
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Bebas+Neue&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Shippori+Mincho:wght@400;500;600;700;800&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/*
[+] noto sans
font-family: 'Noto Sans JP', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

-------------------------------------------

[+] noto serif
font-family: 'Noto Serif JP', serif;
font-weight:
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

-------------------------------------------

[+] Zen Maru Gothic
font-family: 'Zen Maru Gothic', sans-serif;
font-weight:
  300 light
  400 Regular
  500 Medium
  700 Bold
  900 Black

-------------------------------------------

[+] Bebas Neue
font-family: 'Bebas Neue', sans-serif;
font-weight:
  400 Regular

-------------------------------------------

[+] Libre Baskerville
font-family: 'Libre Baskerville', serif;
font-weight:
  400 Regular
  700 Bold

-------------------------------------------

[+] Shippori Mincho
font-family: 'Shippori Mincho', serif;
font-weight:
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold

-------------------------------------------

[+] Lora
font-family: 'Lora', serif;
font-weight:
  400 Regular
  700 Bold

-------------------------------------------

[+] Montserrat
font-family: 'Montserrat', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  700 Bold

-------------------------------------------
[+] Raleway
font-family: 'Raleway', sans-serif;
font-weight:
  100 Thin
  200 ExtraLight
  300 Light
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold
  900 Black

-------------------------------------------
[+]Shippori+Mincho
font-family: 'Shippori Mincho', serif;
font-weight:
  400 Regular
  500 Medium
  600 SemiBold
  700 Bold
  800 ExtraBold

*/

/* ============================
wildcard
---------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::before,
::after {
  box-sizing: border-box;
}

/* ============================
root
---------------------------- */
:root {
  /* common colors */
  --common_kycol: #333333; /* key color */
  --common_bgcol: #FFFFFF; /* background default color */

  --common_head_bgcol: transparent; /* background header color */
  --common_body_bgcol: #FFFFFF; /* background body color */
  --common_main_bgcol: #FFFFFF; /* background main color */
  --common_foot_bgcol: linear-gradient(to bottom, #333333, #FFFFFF); /* background footer color */

  --common_txcol: #FFFFFF; /* text color */
  --common_lcol: #FFFFFF;/* a:link */
  --common_vcol: #FFFFFF;/* a:visited */
  --common_hcol: #FFFFFF;/* a:hover */
  --common_acol: #FFFFFF;/* a:active */
  --common_fcol: #FFFFFF;/* a:focus */

  /* size (1440px基準)*/
  --s32: 2.2222222222222223vw; /* 32px */
  --s16: 1.1111111111111112vw; /* 16px */
  --s8: 0.5555555555555556vw;  /* 8px */
  --s1: 0.06944444444444445vw; /* 1px */

  /* font-family */
  --ff-g: 'Noto Sans JP', sans-serif;
  --ff-m: 'Noto Serif JP', serif;
  --ff-z: 'Zen Maru Gothic', sans-serif;
  --ff-b: 'Bebas Neue', sans-serif;
  --ff-r: 'Roboto', sans-serif;
  --ff-l: 'Libre Baskerville', serif;
  --ff-rw: 'Raleway', sans-serif;
  --ff-sm: 'Shippori Mincho', serif;

  --common_header_height: calc(var(--s1) * 96); /* 9.0rem */
}

@media screen and (min-width: 1440px) {
  :root {
    /* size */
    --s32: 3.2rem; /* 32px */
    --s16: 1.6rem; /* 16px */
    --s8:  0.8rem; /* 8px */
    --s1:  0.1rem; /* 1px */
  }
}

@media screen and (max-width: 767px) {
  :root {
    /* size */
    --s32: 3.2rem; /* 32px */
    --s16: 1.6rem; /* 16px */
    --s8:  0.8rem; /* 8px */
    --s1:  0.1rem; /* 1px */
    --common_header_height: calc(var(--s1) * 60); /* 6.0rem */
  }
}


/* ============================
loading
---------------------------- */
.loaded {
  display: none;
}
.loaded.active {
  display: block;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 50000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#progress-bar-container {
  width: 80%;
  max-width: 600px;
  height: calc(var(--s1) * 4);
  background-color: #E0E0E0;
  border-radius: calc(var(--s1) * 4);
  overflow: hidden;
}
#progress-bar {
  width: 0;
  height: 100%;
  background-color: var(--common_kycol);
  border-radius: calc(var(--s1) * 4);
  transition: all 0.3s ease;
}


/* ============================
display responsive
---------------------------- */
.dn {
  display: none !important;
}
.pc {
  display: block;
}
.pci {
  display: inline;
}
.pcib {
  display: inline-block;
}
.sp {
  display: none;
}
.spi {
  display: none;
}
.spib {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .pci {
    display: none;
  }
  .pcib {
    display: none;
  }
  .sp {
    display: block;
  }
  .spi {
    display: inline;
  }
  .spib {
    display: inline-block;
  }
}

/* ============================
scrollbar
---------------------------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #CCCCCC;
}
::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

/* ============================
html body
---------------------------- */
html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--common_header_height);
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--common_txcol);
  background-color: var(--common_body_bgcol);
  font-family: var(--ff-g);
  font-style: normal;
  font-weight: 400;
  font-size: var(--s16);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--s16);
  }
  html, body {
    scroll-padding-top: var(--common_header_height);
  }
}

/* ============================
default style
---------------------------- */
a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.3s ease;
}
a:link {
  color: var(--common_lcol);
}
a:visited {
  color: var(--common_vcol);
}
a:hover {
  color: var(--common_hcol);
}
a:active {
  color: var(--common_acol);
}
a:focus {
  color: var(--common_fcol);
}
a:hover {
  opacity: 0.8;
}

p {
  margin: 0 0 calc(var(--s1) * 18) 0;
  padding: 0;

  text-shadow: 0 0 calc(var(--s1) * 6) rgba(0, 0, 0, 0.20);
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  line-height: 250%;
  letter-spacing: calc(var(--s1) * 1.12);
}

img {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

hr {
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin: 0 auto;
  border-top: 1px solid #333333;
  padding: 0;
}

address {
  font-style: normal;
}

/* ============================
text align
---------------------------- */
.tl {
  text-align: left !important;
}
.tc {
  text-align: center !important;
}
.tr {
  text-align: right !important;
}

/* ============================
margin padding
---------------------------- */
.mt1 {
  margin-top: calc(var(--s14) * 1);
}
.mb1 {
  margin-bottom: calc(var(--s14) * 1);
}
.pt1 {
  padding-top: calc(var(--s14) * 1);
}
.pb1 {
  padding-bottom: calc(var(--s14) * 1);
}

.mt2 {
  margin-top: calc(var(--s14) * 2);
}
.mb2 {
  margin-bottom: calc(var(--s14) * 2);
}
.pt2 {
  padding-top: calc(var(--s14) * 2);
}
.pb2 {
  padding-bottom: calc(var(--s14) * 2);
}

.mt3 {
  margin-top: calc(var(--s14) * 3);
}
.mb3 {
  margin-bottom: calc(var(--s14) * 3);
}
.pt3 {
  padding-top: calc(var(--s14) * 3);
}
.pb3 {
  padding-bottom: calc(var(--s14) * 3);
}

.mt4 {
  margin-top: calc(var(--s14) * 4);
}
.mb4 {
  margin-bottom: calc(var(--s14) * 4);
}
.pt4 {
  padding-top: calc(var(--s14) * 4);
}
.pb4 {
  padding-bottom: calc(var(--s14) * 4);
}

.mt5 {
  margin-top: calc(var(--s14) * 5);
}
.mb5 {
  margin-bottom: calc(var(--s14) * 5);
}
.pt5 {
  padding-top: calc(var(--s14) * 5);
}
.pb5 {
  padding-bottom: calc(var(--s14) * 5);
}

/* ============================
overflow
---------------------------- */
.ov {
  overflow: visible !important;
}
.oh {
  overflow: hidden !important;
}

/* ============================
flex
---------------------------- */
.flex,
.flex-i {
  list-style-type: none;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex {
  display: -webkit-flex;
  display: flex;
}
.flex-i {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.jc-st {
  justify-content: start;
}
.jc-en {
  justify-content: end;
}
.jc-c {
  justify-content: center;
}
.jc-fs {
  justify-content: flex-start;
}
.jc-fe {
  justify-content: flex-end;
}
.jc-l {
  justify-content: left;
}
.jc-r {
  justify-content: right;
}
.jc-sb {
  justify-content: space-between;
}
.jc-sa {
  justify-content: space-around;
}
.jc-se {
  justify-content: space-evenly;
}
.jc-sc {
  justify-content: stretch;
}
.fw-nw {
  flex-wrap: nowrap;
}
.fw-wr {
  flex-wrap: wrap-reverse;
}
.fd-rr {
  flex-direction: row-reverse;
}
.fd-cm {
  flex-direction: column;
}
.ff-cm {
  flex-flow: column;
}
.ai-s {
  align-items: start;
}
.ai-c {
  align-items: center;
}
.ai-e {
  align-items: end;
}
.ai-fe {
  align-items: flex-end;
}
.ai-st {
  align-items: stretch;
}
.wfit {
  width: fit-content;
}
.hfit {
  height: fit-content;
}

/* ======================
.window-full
------------------------- */
.window-full {
  margin: 0 calc(50% - 50vw) !important;
  width: 100vw !important;
}

/* ======================
00) common
------------------------- */

/* ======================
10) header
------------------------- */
header {
  width: 100%;
  height: var(--common_header_height);
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--common_head_bgcol);
  z-index: 10000;
}
header .outer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
header .outer .inner {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(var(--s1) * 40) 0 calc(var(--s1) * 60);
  gap: calc(var(--s1) * 34);
}
header .logo {
  display: block;
  margin-top: calc(var(--s1) * 40);
}
header .logo a {
  display: block;
  width: calc(var(--s1) * 238);
  height: calc(var(--s1) * 86);
}
header .logo a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ----------------------
  Main menu
------------------------- */
header .menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
header .menu .menu-main {
  list-style: none;
  display: flex;
  gap: calc(var(--s1) * 24);
  margin: 0;
  padding: 0;
}
header .menu .menu-main > .itm {
  position: relative;
  display: grid;
  align-items: center;
  font-size: var(--s16);
  font-weight: 500;
}
header .menu .menu-main > .itm > a {
  display: block;
  padding: calc(var(--s1) * 10) calc(var(--s1) * 26);
  text-decoration: none;

  text-align: center;
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 14);
  font-weight: 700;
  line-height: 100%; /* 1.4rem */
  letter-spacing: calc(var(--s1) * 0.056); /* 0.56px */

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);

}
header .menu .menu-main > .itm.contact {
  margin: 0;
  padding: 0;
}
header .menu .menu-main > .itm.contact > a {
  padding: var(--s8) var(--s16);
  border-radius: calc(var(--s1) * 64); /* 64px */
  background: linear-gradient(to bottom, #FFFFFF 10%, #CCCCCC 90%);
  border: calc(var(--s1) * 2) solid #333333;
  color: #000000;
}

/* ----------------------
  Main float menu
------------------------- */
header .float-menu {
  position: fixed;
  top: var(--common_header_height);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--common_header_height));
  transition: all .3s ease;
  background: rgba(43, 43, 43, 0.87);
  backdrop-filter: blur(5px);
  transform: scale(0.75);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header .float-menu {
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header.active .float-menu {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  gap: calc(var(--s1) * 64);
}
header .float-menu .menu-main {
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 48);
}
header .float-menu .menu-main > .itm {
  width: 100%;
  text-align: center;
}
header .float-menu .menu-main > .itm > a {
  color: #FFFFFF;
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 16);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.128);
  display: flex;
  justify-content: center;
  gap: calc(var(--s1) * 5);
  letter-spacing: 0.112rem;
}
header .float-menu .menu-main > .itm > a.menu-main-instagram::after {
  display: block;
  content: '';
  width: calc(var(--s1) * 14);
  height: calc(var(--s1) * 14);
  background-image: url(/imgs/icon-instagram.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
header .float-menu .cnt {
  width: 22%;
  margin-bottom: 0;
  padding: calc(var(--s1) * 24) 0;
  border: 1px solid rgba(255, 255, 255, 0.40);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: calc(var(--s1) * 10);
}
header .float-menu .cnt .lead {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.14);
}
header .float-menu .cnt .tel-num {
  display: flex;
  align-items: baseline;
  gap: calc(var(--s1) * 8);
  font-family: var(--ff-rw);
}
header .float-menu .cnt .tel-num .tel {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  line-height: 100%;
}
header .float-menu .cnt .tel-num .num {
  font-size: calc(var(--s1) * 24);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.048);
}
header .float-menu .cnt .time {
  font-size: calc(var(--s1) * 12);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.12);
}


/* ----------------------
  Sub menu (CSS only auto-height animation)
  grid-template-rows: 0fr -> 1fr
------------------------- */
header .menu .menu-main > .itm > .menu-sub-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: max-content;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    grid-template-rows .20s ease,
    opacity .16s ease,
    visibility .16s ease;
}
header .menu .menu-main > .itm > .menu-sub-wrap > .menu-sub-inner {
  min-height: 0;
  overflow: hidden;
}
header .menu .menu-main > .itm:hover > .menu-sub-wrap,
header .menu .menu-main > .itm:focus-within > .menu-sub-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header .menu .menu-sub {
  list-style: none;
  margin: 0;
  padding: calc(var(--s1) * 12);
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 4);
  background: rgba(0, 0, 0, 0.75);
  border-radius: var(--s8);
}
header .menu .menu-sub .itm {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  text-align: center;
}
header .menu .menu-sub .itm > a {
  display: block;
  padding: var(--s8) calc(var(--s1) * 10);
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}
header .menu .menu-sub .itm > a:hover {
  opacity: .85;
}
@media screen and (max-width: 767px) {
  header .menu .menu-main > .itm > .menu-sub-wrap {
    position: static;
    transform: none;
    width: 100%;
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
  }
  header .menu .menu-main > .itm > .menu-sub-wrap > .menu-sub-inner {
    max-height: 100vh;
    overflow: visible;
  }
  header .menu .menu-sub {
    background: transparent;
    padding: 0;
  }
}

/* ----------------------
  Hamburger button
------------------------- */
header .ham-btn {
  display: block;
  width: calc(var(--s1) * 48);
  height: var(--s16);
  position: relative;
  cursor: pointer;
  z-index: 11000;
}
header .ham-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: var(--s1);
  background:  #FFFFFF;
  transform: translate(-50%, -50%);
  transition: all .3s ease;
}
header .ham-btn span::before,
header .ham-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--s1);
  background:  #FFFFFF;
  transition: all .3s ease;
}
header .ham-btn span::before {
  top: calc(var(--s1) * -10);
}
header .ham-btn span::after {
  bottom: calc(var(--s1) * -10);
}
header.active .ham-btn span {
  background: transparent;
}
header.active .ham-btn span::before {
  transform: translateY(calc(var(--s1) * 10)) rotate(30deg);
}
header.active .ham-btn span::after {
  transform: translateY(calc(var(--s1) * -10)) rotate(-30deg);
}


/* ======================
20) main
------------------------- */
main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--common_header_height);
  background-color: var(--common_main_bgcol);
}
main section {
  width: 100%;
  max-width: calc(var(--s1) * 1440); /* 1440px */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  main section {
    width: 90%;
    max-width: 90%;
  }
}
main section > .outer {
  margin-top: 6em;
  margin-bottom: 6em;
  padding: 0;
}
main section > .outer > .inner {
  margin-top: 6em;
  margin-bottom: 6em;
  padding: 0;
}


/* ======================
30) footer
------------------------- */
footer {
  background: linear-gradient(180deg, rgba(76, 76, 77, 0.00) 0.22%, rgba(76, 76, 77, 0.80) 9.62%, rgba(76, 76, 77, 0.90) 44.97%);
  backdrop-filter: blur(2px);
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
footer section {
  width: 100%;
  max-width: calc(var(--s1) * 1440); /* 1440px */
  margin: 0 auto;
}
footer section > .outer {
  margin: 0;
  padding: 0;
}
footer section > .outer > .inner {
  margin-top: 6em;
  margin-bottom: 6em;
  padding: 0;
}
@media screen and (max-width: 767px) {
  footer section {
    width: 90%;
    max-width: 90%;
  }
}


/* ----------------------
  footer section.info
------------------------- */
footer section.info .outer .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto calc(var(--s1) * 223) auto;
  padding-top: calc(var(--s1) * 180);
}
footer section.info .outer .inner .info-ttl-lst {
  display: flex;
  gap: calc(var(--s1) * 80);
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box {
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 40);
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box .info-ttl .en {
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 32);
  font-size: calc(var(--s1) * 26);
  font-weight: 300;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.312);
  display: block;
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box .info-ttl .jp {
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 16);
  font-weight: 500;
  letter-spacing: calc(var(--s1) * 0.16);
  display: block;
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box .btns {
  display: flex;
  justify-content: flex-end;
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box .btns .btn {
  display: flex;
  gap: calc(var(--s1) * 24);
  align-items: center;
  font-size: calc(var(--s1) * 14);
  letter-spacing: calc(var(--s1) * 0.07);
  white-space: nowrap;
}
footer section.info .outer .inner .info-ttl-lst .info-ttl-box .btns .btn::after {
  content: '';
  display: block;
  width: calc(var(--s1) * 36);
  height: calc(var(--s1) * 20);
  border-radius: calc(var(--s1) * 20);
  background-color: #FFFFFF;
  background-image: url(/imgs/arrow_r.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
footer section.info .outer .inner .info-ttl-lst .info-lst {
  display: flex;
  gap: calc(var(--s1) * 40);
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm {
  width: 100%;
  max-width: calc(var(--s1) * 225);
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm a {
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 12);
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm a .pht-date {
  display: flex;
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm a .pht-date .pht {
  width: 100%;
  max-width: calc(var(--s1) * 200);
  height: calc(var(--s1) * 267);
  background-color: #FFFFFF;
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm a .pht-date .date {
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 12);
  font-weight: 500;
  line-height: 200%;
  letter-spacing: calc(var(--s1) * 0.108);
  writing-mode: vertical-rl;
}
footer section.info .outer .inner .info-ttl-lst .info-lst .itm a .info-ttl {
  /* 2行まで「…」表示 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: calc(var(--s1) * 13);
  font-weight: 500;
  line-height: 170%;
  letter-spacing: calc(var(--s1) * 0.104);
}

/* ----------------------
  footer section.reservation
------------------------- */
footer section.reservation .outer .inner {
  width: 100%;
  max-width: 1000px;
  margin:calc(var(--s1) * 223) auto calc(var(--s1) * 186) auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 40);
}
footer section.reservation .outer .inner .res-ttl {
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 12);
}
footer section.reservation .outer .inner .res-ttl .en {
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 26);
  font-weight: 300;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.312);
}
footer section.reservation .outer .inner .res-ttl .jp {
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 16);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.16);
}
footer section.reservation .outer .inner .cnt {
  width: 100%;
  margin-bottom: 0;
  padding: calc(var(--s1) * 24) 0;
  border: 1px solid rgba(255, 255, 255, 0.40);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: calc(var(--s1) * 10);
}
footer section.reservation .outer .inner .cnt .lead {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.14);
}
footer section.reservation .outer .inner .cnt .tel-num {
  display: flex;
  align-items: baseline;
  gap: calc(var(--s1) * 8);
  font-family: var(--ff-rw);
}
footer section.reservation .outer .inner .cnt .tel-num .tel {
  font-size: calc(var(--s1) * 14);
  font-weight: 400;
  line-height: 100%;
}
footer section.reservation .outer .inner .cnt .tel-num .num {
  font-size: calc(var(--s1) * 24);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.048);
}
footer section.reservation .outer .inner .cnt .time {
  font-size: calc(var(--s1) * 12);
  font-weight: 400;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.12);
}

/* ----------------------
  footer section.signature
------------------------- */
footer section.signature .outer .inner {
  width: 100%;
  max-width: 1000px;
  margin:calc(var(--s1) * 186) auto calc(var(--s1) * 106) auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 40);
}
footer section.signature .outer .inner .signature-logo {
  width: 100%;
  max-width: calc(var(--s1) * 238);
  margin: 0 auto;
}
footer section.signature .outer .inner .signature-logo .logo {
  display: block;
  width: 100%;
}
footer section.signature .outer .inner .cnt {
  display: flex;
  flex-direction: column;
  gap: calc(var(--s1) * 20);
  margin-bottom: 0;
}
footer section.signature .outer .inner .cnt .shop-name {
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 20);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.08);
}
footer section.signature .outer .inner .cnt .shop-add {
  display: flex;
  gap: calc(var(--s1) * 10);
  justify-content: center;
}
footer section.signature .outer .inner .cnt .shop-add .postal {
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 14);
  font-weight: 500;
  line-height: 160%;
  letter-spacing: calc(var(--s1) * 0.056);
}
footer section.signature .outer .inner .cnt .shop-add .address {
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 14);
  font-weight: 600;
  line-height: 160%;
  letter-spacing: calc(var(--s1) * 0.056);
}
footer section.signature .outer .inner .cnt .shop-add .gmap a {
  display: flex;
  padding: 6px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 11);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: calc(var(--s1) * 0.11);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.40);
}
footer section.signature .outer .inner .cnt .shop-sns {
  margin-top: calc(var(--s1) * 14);
  font-family: var(--ff-rw);
  font-size: calc(var(--s1) * 14);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 1.4rem */
  letter-spacing: calc(var(--s1) * 0.14);
}
footer section.signature .outer .inner .cnt .shop-sns a {
  display: inline-flex;
  justify-content: center;
  gap: calc(var(--s1) * 5);
}
footer section.signature .outer .inner .cnt .shop-sns a::after {
  display: block;
  content: '';
  width: calc(var(--s1) * 14);
  height: calc(var(--s1) * 14);
  background-image: url(/imgs/icon-instagram.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ----------------------
  footer section.copyright
------------------------- */
footer section.copyright .outer .inner {
  width: 100%;
  max-width: 1000px;
  margin:calc(var(--s1) * 106) auto calc(var(--s1) * 42) auto;
  text-align: center;
}
footer section.copyright .outer .inner p small {
  text-align: center;
  font-family: var(--ff-sm);
  font-size: calc(var(--s1) * 12);
  font-weight: 500;
  line-height: 120%;
  letter-spacing: calc(var(--s1) * 0.12);
}



/* ======================
999) form
------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: calc(var(--s1) * 10) calc(var(--s1) * 12);
  font-size: var(--s16);
  font-weight: 400;
  line-height: 150%;
  color: var(--common_color);
  border-radius: calc(var(--s8) * 0.5);
  border: 0.1rem solid #D2D2D2;
  background: #EFEFEF;
}
select {
  width: auto;
  max-width: auto;
}
textarea {
  height: calc(var(--s8) * 24.25); /* 19.4rem */
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: 0.2rem solid #4F187D;
  outline-offset: 0.2rem;
}
input[type="checkbox"] {
  width: var(--s20);
  height: var(--s20);
  accent-color: #D2D2D2;
  border: 0.1rem solid #D2D2D2;
  border-radius: calc(var(--s8) / 2);
  background: #EFEFEF;
  margin-right: var(--s8);
}
input[type="checkbox"]:checked {
  accent-color: #D2D2D2;
  border: 0.1rem solid #D2D2D2;
  background: #EFEFEF;
}
input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem #4F187D;
}
input[type="radio"] {
  appearance: none;
  width: var(--s20);
  height: var(--s20);
  border: 0.1rem solid #D2D2D2;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  background: #EFEFEF;
  transition: box-shadow .2s, border-color .2s;
  margin-right: var(--s8);
}
input[type="checkbox"] {
  appearance: none;
  width: var(--s20);
  height: var(--s20);
  border: 0.1rem solid #D2D2D2;
  display: inline-grid;
  place-content: center;
  background: #EFEFEF;
  transition: box-shadow .2s, border-color .2s;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem #4F187D;
}
input[type="radio"]::before {
  content: "";
  width: calc(var(--s1) * 10);
  height: calc(var(--s1) * 10);
  border-radius: 50%;
  transform: scale(0);
  background: #4F187D;
  transition: transform .15s ease;
}
input[type="checkbox"]::before {
  content: "";
  margin-top: calc(var(--s8) * 0.5 * -1);
  width: calc(var(--s1) * 10);
  height: var(--s16);
  transform: scale(0) rotate(45deg);
  transition: transform .15s ease;
  border-right: calc(var(--s8) * 0.5) solid #4F187D;
  border-bottom: calc(var(--s8) * 0.5) solid #4F187D;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  transform: scale(1) rotate(45deg);
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  box-shadow: 0 0 0 0.2rem #4F187D;
}
input[type="submit"] {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: var(--s24) calc(var(--s8) * 11.25);
  border-radius: var(--s42);
  border-radius: 47px;
  background:
  url(/img/bg_locations-btn_arrow.svg) center right var(--s24) / var(--s32) var(--s32) no-repeat,
  linear-gradient(90deg, #6F00CF 5.09%, #28ACEE 96.79%);
  color: #FFFFFF;
  font-size: var(--s16);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.064rem;
  text-align: center;
  border: none;
  cursor: pointer;
}