@charset "UTF-8";
/*/////////----------------リセット*/
/* A modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
main,
h1,
h2,
h3,
h4,
div,
section,
ol,
ul,
li,
p,
figure,
blockquote,
dl,
dd,
a,
button {
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 100;
  line-height: 1.5;
}

/* 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;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style-type: 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]) {
  text-decoration-skip-ink: auto;
}

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*/////////----------------ミックスイン設定*/
/*共通設定*/
html {
  font-size: 62.5%;
}

body {
  background: #FFF;
  padding-top: 45px;
  font-family: "Cardo", "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
  color: #333;
  /* <=768px */
}
@media (max-width: 768px) {
  body {
    padding-top: 25px;
  }
}

a {
  display: block;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

button {
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  transition: 0.3s;
}

.sp_only {
  display: none;
}

@media (max-width: 480px) {
  .sp_only {
    display: block;
  }
}
/*/////////----------------TOP特集 表示テンプレ （新着物件 お気に入り 閲覧済）*/
.new-arrived {
  padding: 150px 0;
}
.new-arrived__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.new-arrived__title {
  text-align: center;
  margin-bottom: 50px;
}
.new-arrived__title-en {
  font-size: 3.4rem;
  color: #FFAC1D;
  font-weight: 500;
  letter-spacing: 1px;
}
.new-arrived__title-ja {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}
.new-arrived__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 1024px) {
  .new-arrived__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}
.new-arrived__item {
  display: flex;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.new-arrived__img {
  width: 39%;
}
.new-arrived__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.new-arrived__info {
  flex: 1;
  padding: 25px 20px 20px;
  font-size: 14px;
  color: #333;
}
.new-arrived__info dl {
  margin: 0;
}
.new-arrived__label {
  font-size: 1.3rem;
  color: #de6b38;
  font-weight: bold;
  margin-bottom: 5px;
}
.new-arrived__row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.new-arrived__row dt {
  width: 60px;
  font-size: 1.4rem;
  font-weight: normal;
}
.new-arrived__row dd {
  font-size: 1.5rem;
  font-weight: bold;
}
.new-arrived__row dd span {
  font-size: 20px;
  font-weight: bold;
  margin-right: 3px;
}
.new-arrived__row:nth-last-of-type(1) {
  margin-top: 10px;
}
.new-arrived__row:nth-last-of-type(1) dd {
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .new-arrived { /*pc*/
    padding: 120px 0;
    /*pc*/
  }
  .new-arrived__title {
    text-align: center;
    margin-bottom: 50px;
  }
  .new-arrived__title-en {
    font-size: 2.6rem;
  }
  .new-arrived__title-ja {
    font-size: 1.6rem;
  }
  .new-arrived__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .new-arrived { /*tab*/
    /*tab*/
  }
  .new-arrived__list {
    grid-template-columns: 1fr;
  }
}

/*/////////----------------共通 タイトル、説明エリア
----------------/////////*/
.cmn_ttl_text_area__ttlBox {
  margin-bottom: 5vh;
  color: var(--ink);
}
.cmn_ttl_text_area__eyebrow {
  margin: 0 0 6px;
  font-size: 2.2rem;
  color: #000;
  letter-spacing: 0.06em;
}
.cmn_ttl_text_area__title {
  margin: 17px 0;
}
.cmn_ttl_text_area__title-en {
  font: 400 40px/1.25 "Cardo", serif;
  letter-spacing: 0.08em;
  color: var(--ttl-en); /* 見出し赤 */
}
.cmn_ttl_text_area__lead {
  margin: 0 0 16px;
  line-height: 1.9;
}
.cmn_ttl_text_area.ttlonly {
  margin-bottom: 0;
}

.cmn_ttl_text_area__ttlonly {
  margin-bottom: 0;
}
.cmn_ttl_text_area__ttlonly .cmn_ttl_text_area__title {
  margin-bottom: 0;
}

.cmn_btns_area {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: end;
  /* 共通ボタン */
}
.cmn_btns_area .c-btn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  min-height: 40px;
  padding: 0 15px;
  background: var(--btn-bg);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid var(--btn-bg);
}
.cmn_btns_area .c-btn:hover, .cmn_btns_area .c-btn:focus-visible {
  opacity: 1;
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}
.cmn_btns_area .c-btn__en {
  margin-left: 6px;
  font: 400 12px/1 "Cardo", serif;
}

@media (max-width: 768px) {
  .cmn_ttl_text_area {
    margin-bottom: 30px;
  }
  .cmn_ttl_text_area__eyebrow {
    font-size: 1.8rem;
  }
  .cmn_ttl_text_area__title {
    margin: 15px 0;
  }
  .cmn_ttl_text_area__title-en {
    font-size: 30px;
  }
  .cmn_ttl_text_area__lead {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .cmn_btns_area {
    width: 100%;
    gap: 12px;
    justify-content: center;
    /* 共通ボタン */
  }
  .cmn_btns_area li {
    width: 90%;
  }
  .cmn_btns_area .c-btn {
    min-width: 200px;
    width: 100%;
    padding: 0 15px;
    background: #192d4a;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    border: 1px solid #192d4a;
  }
  .cmn_btns_area .c-btn:hover, .cmn_btns_area .c-btn:focus-visible {
    opacity: 1;
    background: var(--btn-hover);
    border-color: var(--btn-hover);
  }
  .cmn_btns_area .c-btn__en {
    margin-left: 6px;
    font: 400 12px/1 "Cardo", serif;
  }
}
/*/////////----------------店舗共通カード
----------------/////////*/
/* 共通パーツ：店舗・スタッフ紹介（ネスト構造） */
.shopstaff-links {
  /* 背景と内側幅 */
  --wrap: 1200px;
  --bg: #dddcda; /* セクション地のグレー */
  --panel: #fff;
  --line: #e6e8ef;
  --ink: #222;
  --badge-red: #e23e35; /* 指定済みアクセントを流用 */
  --badge-brown: #5b4a40;
  background: #dddcda;
  /* スマホ（<=768px） */
}
.shopstaff-links .inner {
  width: 90%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 130px 0 20px;
}
.shopstaff-links__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.shopstaff-links .shopcard {
  /* hover */
}
.shopstaff-links .shopcard__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.shopstaff-links .shopcard__panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shopstaff-links .shopcard__badge {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.shopstaff-links .shopcard__badge--red {
  background: var(--badge-red);
}
.shopstaff-links .shopcard__badge--brown {
  background: var(--badge-brown);
}
.shopstaff-links .shopcard__badge span {
  display: block;
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: 5px;
  margin-left: 5px;
}
.shopstaff-links .shopcard__hd {
  margin: 4px 0 12px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.shopstaff-links .shopcard__ph {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.shopstaff-links .shopcard__ph img {
  display: block;
  width: 100%;
  height: auto;
}
.shopstaff-links .shopcard__link:hover .shopcard__panel {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .shopstaff-links .inner {
    padding: 60px 0 60px;
  }
  .shopstaff-links__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .shopstaff-links .shopcard__badge {
    width: 96px;
    height: 96px;
    left: -14px;
    top: -14px;
  }
  .shopstaff-links .shopcard__badge span {
    font-size: 18px;
  }
  .shopstaff-links .shopcard__hd {
    font-size: 18px;
  }
}

/*/////////----------------お客様の声
----------------/////////*/
#voice-section {
  overflow: hidden;
  padding-bottom: 100px;
  /* === 上部ヒーロー === */
  /* 左のカットアウト画像：位置・サイズ・影 */
  /* === スライダー === */
  /* --- 768px 以下 --- */
}
#voice-section .voice {
  padding: 70px 0 0;
  background: linear-gradient(180deg, #dddcda 0%, #dddcda 50%, #FFF 50%, #FFF 100%);
}
#voice-section .voice__top {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 78px) clamp(16px, 4vw, 40px) clamp(50px, 8vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(24px, 5vw, 65px);
  /* 下端の白いアーチを“上向き”に食い込ませる */
}
#voice-section .voice__top::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  width: 200vw; /* 画面より大きくして大きなアーチに */
  height: 1000px;
  background: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 0;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.03) inset;
}
#voice-section .cmn_ttl_text_area {
  position: relative;
  margin-top: 15vh;
  z-index: 10;
}
#voice-section .voice__art {
  position: relative;
  z-index: 10;
  margin-top: -10vh;
  margin-left: -4vw;
  width: 120%;
}
#voice-section .voice__art img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}
#voice-section .voice__slider_con {
  padding: 20px 0;
}
#voice-section .voice__slider {
  box-sizing: border-box;
  max-width: 380px;
  margin: 0 auto;
  padding: 0 0 50px;
  background-color: #FFF;
}
@media (min-width: 1300px) {
  #voice-section .voice__slider { /*tab*/
    max-width: 1400px;
    /*tab*/
  }
}
#voice-section .voice__slider .voice__img {
  position: relative;
}
#voice-section .voice__slider .voice__img .voice__name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 7px 7px 3px;
  background-color: rgba(220, 220, 220, 0.9);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.2;
}
#voice-section .voice__slider .slick-slide {
  padding: 0 10px;
  max-width: 380px;
}
#voice-section .voice__slider .slick-list {
  overflow: visible;
}
#voice-section .voice__slider__item a {
  display: block;
  background-color: #FFF;
}
#voice-section .voice__slider__item img {
  width: 100%;
  height: auto;
  display: block;
}
#voice-section .voice__slider .slick-dots {
  bottom: 0px;
}
#voice-section .voice__slider .slick-dots li {
  width: 10px;
  margin: 0 5px;
}
#voice-section .voice__slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #c6c6c6;
}
#voice-section .voice__slider .slick-dots li button:before {
  content: none;
}
#voice-section .voice__slider .slick-dots li.slick-active button {
  background-color: #192d4a;
}
#voice-section .voice__slider .slick-dots li.slick-active button:before {
  color: #192d4a;
  opacity: 1;
}
@media (max-width: 768px) {
  #voice-section .voice__top {
    order: 2;
    grid-template-columns: 1fr;
    padding: 28px 16px clamp(50px, 16vw, 140px);
    gap: 18px;
    padding-inline: 24px;
  }
  #voice-section .voice__top::after {
    width: 350vw;
  }
  #voice-section .voice__art {
    margin-top: -10vh;
    margin-left: 0;
    width: 100%;
  }
  #voice-section .cmn_ttl_text_area {
    margin-top: 0;
  }
}

/*/////////----------------ヘッダー*/
/*ヘッダースクロール時処理*/
@media (min-width: 1025px) {
  /*min1025*/ /*min1025*/
}
#fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
}
#fixed-header.fixed { /*headerをfixed処理した際影つける*/
  position: fixed;
  width: 100%;
  z-index: 1001;
}
#fixed-header.fixed .header-nav-menu_left, #fixed-header.fixed .header-nav-menu_right {
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
}
#fixed-header.no-show { /*下にスクロールした際、headerを隠す処理*/
  top: -130px;
  box-shadow: none;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #fixed-header {
    position: fixed;
    height: auto;
    min-height: 50px;
  }
  #fixed-header.fixed { /*headerをfixed処理した際影つける*/
    background-color: rgba(0, 0, 0, 0);
  }
  #fixed-header.fixed .header-nav-menu_left, #fixed-header.fixed .header-nav-menu_right {
    box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  }
  #fixed-header .no-show {
    top: -80px;
  }
}
#fixed-header.fixed .header__logo {
  padding: 20px 10px;
  background-color: #FFAC1D;
}
#fixed-header.fixed .header__logo img {
  max-width: 250px;
  height: auto;
}
#fixed-header.fixed .header__logo .pc {
  display: none;
}
#fixed-header.fixed .header__logo .sp {
  display: block;
}
#fixed-header.fixed .header__content {
  padding-top: 15px;
  gap: 5px;
}
#fixed-header.fixed .header__suvnav {
  gap: 8px;
}
#fixed-header.fixed .header__suvnav a {
  padding-right: 15px;
  font-size: 1.3rem;
}
#fixed-header.fixed .header__suvnav a::before {
  top: calc(50% - 4px);
  right: 5px;
  width: 7px;
  height: 7px;
}
#fixed-header.fixed .header__btn--like a {
  min-width: 110px;
  margin-left: 10px;
  padding: 4px 10px 4px 33px;
}
#fixed-header.fixed .header__btn--like a::before {
  /*@include iconFav*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_fav.svg);
  background-size: auto;
}
#fixed-header.fixed .header__btn--viewed a {
  min-width: 110px;
  padding: 4px 10px 4px 33px;
}
#fixed-header.fixed .header__btn--viewed a::before {
  /*@include iconView*/
  top: calc(50% - 9px);
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_view.svg);
  background-size: auto;
}
#fixed-header.fixed .header__nav-list {
  gap: 50px;
}
#fixed-header.fixed .header__nav-item a {
  font-size: 1.4rem;
}
#fixed-header.fixed .header__nav-item span {
  font-size: 1.1rem;
}

/*ヘッダースクロール時処理 ここまで*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

/* ヘッダー＋ハンバーガー／ドロワー*/
:root {
  --wrap: 1300px;
  --ink: #111;
  --muted: #6c768b;
  --line: #e6e8ef;
  --brand: #192d4a; /* 指定 */
  --hover: #dd3e35; /* 指定 */
  --white: #fff;
  --shadow: 0 6px 14px rgba(0, 0, 0, .12);
  --ttl-en:#d83434; /* タイトルエリアen */
  --danger: #dd3e35; /* ログイン赤（デザイン準拠） */
  --band: #254068; /* 下段バー(明) */
  --band-deep:#10233b; /* 最下段バー(濃) */
  --shops-bg:#efefef;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.u-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  overflow: hidden;
}

/* ============ Header (上段 + 白ナビバー) ============ */
.header-con {
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: var(--ink);
  /* 上段 */
  /* 白ナビバー */
  /* <=768px */
}
.header-con .inner {
  max-width: var(--wrap);
  width: 96%;
  margin-inline: auto;
  margin: 0 auto;
}
.header-con__topbar {
  background: var(--brand);
}
.header-con__top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-block: 10px;
}
.header-con .header-cta {
  display: flex;
  gap: 10px;
}
.header-con .header-cta__btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 200px;
  width: 100%;
  min-height: 25px;
  padding: 0 10px;
  background: var(--white);
  color: #1a2233;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 3px;
}
.header-con .header-cta__btn:hover {
  background-color: var(--hover);
}
.header-con .header-cta__btn--login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  background: #dd3e35;
  color: #fff;
}
.header-con .header-cta__ico {
  margin-right: 3px;
  inline-size: 22px;
  block-size: 22px;
  display: grid;
  place-items: center;
}
.header-con .header-cta__ja, .header-con .header-cta__en {
  white-space: nowrap;
}
.header-con__navwrap {
  margin: 15px 0;
}
.header-con .gbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px 20px 10px 14px;
}
.header-con .gbar__logos {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-con .gbar__logo {
  max-width: 210px;
  width: 15vw;
  min-width: 100px;
}
.header-con .gbar__logo img {
  display: block;
}
.header-con .gbar__logo--sub {
  margin-left: 4px;
  width: 13.5714285714vw;
}
.header-con .gbar .gmenu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1vw;
  margin-right: 1.5vw;
}
.header-con .gbar .gmenu__link {
  color: #1a2233;
  font-size: 1.4rem;
}
.header-con .gbar .gmenu__link:hover {
  color: var(--hover);
}
.header-con .gbar__hamburger {
  position: relative;
  width: 30px;
  margin-left: auto;
  border: none;
  background: #fff;
  border-radius: 4px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.header-con .gbar__hamburger .gbar__line {
  width: 30px;
  height: 2px;
  background: #1a2233;
  display: block;
}
.header-con .gbar__hamburger .gbar__line:nth-of-type(3) {
  margin: 6px 0;
}
@media (max-width: 768px) {
  .header-con {
    /* 白ナビバー */
  }
  .header-con__top-inner {
    padding-block: 7px;
  }
  .header-con .header-cta {
    width: 100%;
    margin: 0 auto;
    gap: 5px;
  }
  .header-con .header-cta__btn {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    font-size: 1.3rem;
  }
  .header-con .header-cta--login {
    width: 100%;
  }
  .header-con__navwrap {
    margin: 8px 0;
  }
  .header-con .gbar {
    padding: 7px 10px;
  }
  .header-con .gbar .gmenu {
    display: none;
  }
  .header-con .gbar__hamburger {
    display: grid;
  }
}

/* ============ Drawer（ハンバーガーメニュー） ============ */
.gdrawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: auto;
  height: 100vh;
  font-family: "Cardo", "Zen Old Mincho", serif;
  /* hidden 時は display:none。open() 時に hidden=false → フェード制御 */
  /* フェード制御（全体を不透明度で） */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  /* 低減動作環境 */
}
.gdrawer[hidden] {
  display: none;
}
.gdrawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease;
}
.gdrawer__wrap {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  background: #fff;
}
.gdrawer__close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}
.gdrawer__close:hover {
  border-color: #cfd5e2;
}
.gdrawer__main {
  position: relative;
  background: #fff;
  height: 100%;
  padding: 60px clamp(16px, 8vw, 65px);
  display: flex;
  flex-direction: column;
}
.gdrawer__logo {
  display: flex;
  gap: 10px;
}
.gdrawer__brand {
  display: inline-block;
  max-width: 210px;
  min-width: 150px;
  width: 20vw;
}
.gdrawer__brand img {
  display: block;
}
.gdrawer__brand__reno {
  max-width: 200px;
  min-width: 140px;
  width: 19vw;
}
.gdrawer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}
.gdrawer .gdrawer-col {
  width: calc((100% - 60px) / 3);
}
.gdrawer .gdrawer-col__hd {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.gdrawer .gdrawer-col__hd--sp {
  margin-top: 26px;
}
.gdrawer .gdrawer-col__hd a {
  font-size: 2rem;
}
.gdrawer .gdrawer-col__list {
  list-style: none;
  margin: 0 0 30px;
  display: grid;
  gap: 8px;
}
.gdrawer .gdrawer-col__list li {
  position: relative;
  padding-left: 25px;
}
.gdrawer .gdrawer-col__list li::before {
  content: "—";
  position: absolute;
  left: 4px;
  top: 0;
  color: #ddd;
  font-size: 13px;
  line-height: 1.5;
}
.gdrawer .gdrawer-col__list li a {
  color: #777;
}
.gdrawer .gdrawer-col__list li a:hover {
  color: var(--hover);
}
.gdrawer .gdrawer-col__list--sp {
  margin-bottom: 0;
}
.gdrawer .gdrawer-col__list_none {
  margin: 0 0 15px;
}
.gdrawer .gdrawer-col__list_none .gdrawer-col__hd {
  margin: 0 0 15px;
}
.gdrawer .gdrawer-col__list_none .gdrawer-col__hd:last-of-type {
  margin: 0 0 0;
}
.gdrawer__rule {
  height: 1px;
  border: 0;
  background: var(--line);
  margin: 18px 0;
}
.gdrawer__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 20px 0;
  font-family: "Zen Old Mincho", serif;
}
.gdrawer .gdrawer-shop__soka-adachi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gdrawer .gdrawer-shop__name {
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gdrawer .gdrawer-shop__name h2 {
  margin-right: 5px;
  font-size: 1.7rem;
  line-height: 1;
}
.gdrawer .gdrawer-shop__tel a {
  margin-left: 2px;
  color: #4d4d4d;
  font-size: 2.2rem;
}
.gdrawer .gdrawer-shop__tel a:hover {
  color: var(--hover);
}
.gdrawer .gdrawer-shop__reno {
  padding-left: 5vw;
  border-left: 1px solid var(--line);
}
.gdrawer__hours {
  width: 100%;
  margin-top: 18px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  color: #4d4d4d;
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 1px;
}
.gdrawer__side {
  position: relative;
  background: #0d1b2c;
  min-width: 25vw;
}
.gdrawer__bg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.gdrawer__bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.gdrawer .gdrawer-cta {
  box-sizing: border-box;
  position: absolute;
  right: calc(50% - 11.4285714286vw);
  top: calc(50% - 110px);
  display: grid;
  gap: 12px;
  width: 22.8571428571vw;
  max-width: 90%;
}
.gdrawer .gdrawer-cta__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #192d4a;
  background: #fff;
  color: #1a2233;
  letter-spacing: 0.02em;
  line-height: 1;
}
.gdrawer .gdrawer-cta__btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.gdrawer .gdrawer-cta__btn--danger {
  background: var(--hover);
  border-color: var(--hover);
  color: #fff;
}
.gdrawer .gdrawer-cta__btn--outline {
  background: #fff;
  color: #1a2233;
}
.gdrawer .gdrawer-cta__en {
  justify-self: end;
  font: 400 13px/1 "Cardo", serif;
}
@media (max-width: 768px) {
  .gdrawer__wrap {
    grid-template-columns: 1fr;
  }
  .gdrawer__close {
    top: 12px;
    right: 12px;
  }
  .gdrawer__main {
    position: static;
    padding: 4vh 7vw;
  }
  .gdrawer__brand {
    min-width: 120px;
  }
  .gdrawer__brand__reno {
    min-width: 110px;
  }
  .gdrawer__cols {
    margin: 40px 0 10px;
  }
  .gdrawer .gdrawer-col {
    width: 100%;
  }
  .gdrawer .gdrawer-col__hd {
    margin: 0 0 5px;
    font-size: 1.7rem;
    letter-spacing: 0;
  }
  .gdrawer .gdrawer-col__hd a {
    font-size: 1.7rem;
  }
  .gdrawer .gdrawer-col__list {
    list-style: none;
    margin: 0 0 20px;
    display: grid;
    gap: 5px;
  }
  .gdrawer .gdrawer-col__list li::before {
    content: "—";
    position: absolute;
    left: 4px;
    top: 0;
    color: #ddd;
  }
  .gdrawer .gdrawer-col__list li a {
    font-size: 1.3rem;
  }
  .gdrawer .gdrawer-col__list_none {
    margin: 0 0 20px;
  }
  .gdrawer__cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gdrawer__contacts {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 95%;
    margin: 20px auto 10px;
  }
  .gdrawer__contacts .gdrawer-shop__soka-adachi {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .gdrawer__contacts .gdrawer-shop__name {
    margin: 0;
  }
  .gdrawer__contacts .gdrawer-shop__name h2 {
    margin-right: 3px;
    font-size: 1.7rem;
  }
  .gdrawer__contacts .gdrawer-shop__tel {
    padding-bottom: 5px;
    border-bottom: 1px dashed #ddd;
  }
  .gdrawer__contacts .gdrawer-shop__tel a {
    margin-left: 2px;
    color: #4d4d4d;
    font-size: 2.2rem;
  }
  .gdrawer__contacts .gdrawer-shop__tel a:hover {
    color: var(--hover);
  }
  .gdrawer__contacts .gdrawer-shop__reno {
    padding-left: 0;
    border-left: none;
  }
  .gdrawer__bg {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .gdrawer__bg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .gdrawer .gdrawer-cta {
    right: calc(50% - 140px);
    top: calc(50% - 100px);
    gap: 10px;
    width: min(90%, 280px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gdrawer {
    transition: none;
  }
  .gdrawer.is-open {
    transition: none;
  }
}
@media (max-width: 768px) {
  .gdrawer { /*tab*/
    /*tab*/
  }
}

/*/////////----------------フッター*/
/*バナーエリア*/
#footer-section_bnr {
  padding: 50px 0;
  background-color: #dddcda;
}

.footer-section_bnr__slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer-section_bnr__slider .slick-slide {
  padding: 0 10px;
}
.footer-section_bnr__slider .slick-dots {
  bottom: -60px;
}
.footer-section_bnr__slider .slick-dots li {
  width: 10px;
  margin: 0 5px;
}
.footer-section_bnr__slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #c6c6c6;
}
.footer-section_bnr__slider .slick-dots li button:before {
  content: none;
}
.footer-section_bnr__slider .slick-dots li.slick-active button {
  background-color: #00a193;
}
.footer-section_bnr__slider .slick-dots li.slick-active button:before {
  color: #00a193;
  opacity: 1;
}

/*フッター*/
.footer-con {
  padding: 40px 0 0;
  font-family: "Zen Old Mincho", serif;
  color: var(--ink);
  /* grid */
}
.footer-con .inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 24px;
}
.footer-con__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  padding: 0 0 30px;
}
.footer-con__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-con__logo img {
  display: block;
}
.footer-con__logo01 {
  width: 210px;
}
.footer-con__logo02 {
  width: 200px;
}
.footer-con__pagetop {
  position: relative;
  width: 33px;
}
.footer-con__dashes {
  font-family: "Cardo", serif;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: #666;
  line-height: 1;
}
.footer-con__arrow {
  font-size: 18px;
  color: #192d4a;
  line-height: 1;
}
.footer-con__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer-con__head {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-con__logo {
    order: 2;
  }
  .footer-con__pagetop {
    order: 1;
    margin-bottom: 20px;
  }
  .footer-con__logo01 {
    width: 50%;
  }
  .footer-con__logo02 {
    width: calc(50% - 10px);
  }
}

/* メニュー */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
}
.footer-nav__col {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav__item {
  margin: 0 0 18px;
}
.footer-nav__link {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.footer-nav__link:hover {
  color: var(--hover);
}

/* CTA縦ボタン */
.footer-con {
  /* CTA縦ボタン */
  /* 店舗SNS帯 */
  /* 下段バー */
  /* Responsive <=768px */
}
.footer-con .footer-cta {
  display: grid;
  gap: 12px;
}
.footer-con .footer-cta__btn {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  min-height: 44px;
  letter-spacing: 0.02em;
  padding: 0 14px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 15px;
}
.footer-con .footer-cta__btn.c-btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.footer-con .footer-cta__btn.c-btn--primary .footer-cta__en {
  color: #fff;
  opacity: 0.85;
}
.footer-con .footer-cta__btn.c-btn--primary:hover {
  background: var(--hover);
  border-color: var(--hover);
}
.footer-con .footer-cta__btn.c-btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.footer-con .footer-cta__btn.c-btn--danger {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}
.footer-con .footer-cta__btn.c-btn--danger:hover {
  filter: brightness(0.95);
}
.footer-con .footer-cta__en {
  justify-self: end;
  font: 400 13px/1 "Cardo", serif;
}
.footer-con__shops {
  margin: 22px 0 26px;
}
.footer-con__shops .shops-sns {
  background-color: #e7e6e5;
  display: inline-block;
  padding: 12px 25px;
}
.footer-con__shops .shops-sns__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.footer-con__shops .shops-sns__name {
  font-size: 14px;
  color: #333;
}
.footer-con__shops .shops-sns__icon img {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-con__bar {
  padding: 20px 0;
  background: var(--band);
  color: #dbe6f7;
  font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.footer-con__bar .inner {
  padding: 14px 24px;
  display: flex;
  justify-content: center;
}
.footer-con__bar .footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-con__bar .footer-links a {
  color: #fff;
  font-size: 14px;
}
.footer-con__bar .footer-links a:hover {
  opacity: 0.85;
}
.footer-con__bar--deep {
  padding: 0 10px;
  background: var(--band-deep);
  color: #b7c7df;
}
.footer-con__bar--deep .inner {
  display: flex;
  justify-content: center;
}
.footer-con__copy {
  margin: 0;
  color: #FFF;
  font-size: 12px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .footer-con .inner {
    padding: 0 16px;
  }
  .footer-con__grid {
    grid-template-columns: 1fr;
  }
  .footer-con .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
  }
  .footer-con .footer-cta__btn {
    grid-template-columns: 1fr 90px;
  }
  .footer-con__shops .shops-sns {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .footer-con__shops .shops-sns__item {
    justify-content: center;
  }
}

/*/////////----------------臨時*/
.preparation_con_area {
  padding: 150px 0;
  text-align: center;
}
.preparation_con_area .btnbtn {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  min-height: 50px;
  padding: 0 15px;
  margin: 10px auto;
  background: #192d4a;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.preparation_con_area .btnbtn:hover {
  opacity: 1;
  background: #c14a4a;
  border-color: #c14a4a;
}
.preparation_con_area .rinziBox__en {
  margin-left: 6px;
  font: 400 12px/1 "Cardo", serif;
}

.preparation_con {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 100px 20px;
  background: #fff;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  line-height: 2.2;
  letter-spacing: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .preparation_con {
    margin: 50px auto 20px;
    padding: 70px 30px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 1px;
  }
}/*# sourceMappingURL=common.css.map */