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

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-contents_max: 75rem;
  --width-contents_max_s: 56.25rem;
  /* 高さ【ヘッダのみ】 */
  --height-header_lg: 5.5rem;
  --height-header_mdsm: 5.5rem;
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key:	#e50112;
  --color-key_l:	#ea3341;
  --color-key_bg_l:	#FDE6E8;
  --color-body_bg:	#FFFFFF;
  /* テキスト */
  --color-txt:	#282828;
  --color-txt-title:	#323232;
  --color-txt-btn:	#323232;
  --color-txt-note:	#949494;
  --color-txt-footer:	#F9C2C6;
  /* リンク */
  --color-link:	#282828;
  --color-link_hover:	rgb(14.5, 14.5, 14.5);
  --color-link_hover_bg:	rgba(40, 40, 40, 0.08);
  /* 罫線 */
  --color-border:	#CCCCCC;
  --color-border-box:	#d2d2d2;
  /* ヘッダ */
  --color-header_txt:	#ea3341;
  --color-body_icon:	#797E81;
  --color-header_bg:	#FFFFFF;
  --color-header_dropdown_bg:	#ea3341;
  --color-body_dropdown_hover:	rgb(231.62, 27.88, 43.4666666667);
  /* サイド */
  --color-side_txt:	rgba(255, 255, 255, 0.8);
  --color-side_icon:	rgba(255, 255, 255, 0.4);
  --color-side_bg:	#2A3944;
  --color-side_hover:	rgb(32.2636363636, 43.7863636364, 52.2363636364);
  --color-side_open_bg:	rgb(36.1581818182, 49.0718181818, 58.5418181818);
  --color-side_active:	rgb(26.4218181818, 35.8581818182, 42.7781818182);
  --color-side_active_txt:	white;
  --color-arrow_back:	#F3F3F3;
  /* オーバーレイ（モーダルやドロワーの背景） */
  --color-overlay-bg:	rgba(0, 0, 0, 0.8);
  /* モーダルウィンドウのコンテンツ背景 */
  --color-modal-bg:	#FFFFFF;
  --color-card-header:	#333333;
  --color-card-bg:	#F8F8F8;
  --color-card-shadow:	rgba(0, 0, 0, 0.0509803922);
  --color-shop-category_restaurant:#FFB553;
  --color-shop-category_service:#5EC7FE;
  --color-shop-category_variety:#CDCD28;
  --color-shop-category_fashion:#F08282;
  --color-shop-category_jewelry:#AB91DB;
  --color-shop-category_life:#7DC85F;
  --color-shop-category_antique:#D25F96;
  --color-shop-info-bg:	#F8F8F8;
  --color-search-icon-bg:	#F6F6F6;
  /* チャート */
  --color-chart01:	#00AAF6;
  --color-chart02:	#2EC193;
  --color-chart03:	#767CDC;
  --color-chart04:	#E97DB3;
  --color-chart05:	#E59C23;
  --color-chart06:	#00C8E1;
  --color-chart07:	#00E0B5;
  /* その他ベーシックな色 */
  --color_black:	#000000;
  --color_white:	#FFFFFF;
  --color_darkgray:	#333333;
  --color_gray:	#ACACAC;
  --color_red:	#EB2D2D;
  --color_blue:	#0059ff;
}

/*—————————————————————————————————————————————————————
　フォント設定
—————————————————————————————————————————————————————*/
:root {
  --font-family-base: "Noto Sans JP", "Lexend Exa", sans-serif;
  --font-family-en: "Lexend Exa", sans-serif;
  --font-family-en-accent: "Lato", sans-serif;
}

/*
// フォントの読み込みサンプル
@include g.font-face(
  "Noto Sans Jp",
  "../fonts/NotoSansJP-VariableFont_wght",
  400,
  normal,
  ttf
);
@include g.font-face(
  "Noto Sans Jp",
  "../fonts/NotoSansJP-VariableFont_wght",
  500,
  normal,
  ttf
);
@include g.font-face(
  "Noto Sans Jp",
  "../fonts/NotoSansJP-VariableFont_wght",
  700,
  normal,
  ttf
);
@include g.font-face(
  "Lexend Exa",
  "../fonts/LexendExa-Light",
  400,
  normal,
  ttf
);
@include g.font-face(
  "Lexend Exa",
  "../fonts/LexendExa-Regular",
  500,
  normal,
  ttf
);
@include g.font-face(
  "Lexend Exa",
  "../fonts/LexendExa-VariableFont_wght",
  700,
  normal,
  ttf
);
@include g.font-face(
  "Lato",
  "../fonts/Lato-Regular",
  600,
  normal,
  ttf
);
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--height-header_lg);
}
@media screen and (max-width: 991px) {
  html {
    scroll-padding-top: var(--height-header_mdsm);
  }
}

:root {
  --txt-color: ;
  --main-color: ;
  --sub-color: ;
  --main--bg: ;
  --white: ;
}

address {
  font-style: normal;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  color: #323232;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-family: var(--font-family-base);
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@media screen and (max-width: 374px) {
  body {
    width: 375px;
    min-width: 375px;
    zoom: var(--viewport-scale, 1);
  }
}
a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 4px 6px;
  vertical-align: top;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

form {
  margin: 0;
  padding: 0;
}

form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #e9761e;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

form button:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.6;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  padding: 0.40625rem 1rem;
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 0.25rem;
  background-image: none;
  background-color: #F5F5F5;
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::placeholder,
textarea::placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
@media screen and (max-width: 600px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 0.875rem;
  }
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input::-webkit-input-placeholder {
  color: #848484;
}

input::-moz-placeholder {
  color: #848484;
}

input::-ms-input-placeholder {
  color: #848484;
}

input:-ms-input-placeholder {
  color: #848484;
}

input::placeholder {
  color: #848484;
}

input:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type=submit],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #e9761e;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus {
  outline: none;
}

input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.6;
}

input[type=submit] ::-moz-focus-inner,
input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e2e2;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 26px;
  height: 15.6px;
  border-bottom: 4px solid #e9761e;
  border-left: 4px solid #e9761e;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.625rem 2.4375rem 0.625rem 0.75rem;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-image: url(../img/common/select-arrow.svg);
  background-position: right 11px top 55%;
  background-size: 13px;
  background-repeat: no-repeat;
  background-color: #F5F5F5;
  color: #1D1D1D;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

option {
  color: #1D1D1D;
}

.c-tab {
  max-width: 75rem;
  margin: 0 auto;
  border: 1px solid var(--color-border-box);
  border-radius: 2px;
  background: var(--color_white);
}
.c-tab__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.c-tab__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(3.75rem, 3.5376213592rem + 0.9061488673vw, 4.625rem);
  border: 0;
  border-right: 1px solid var(--color-border-box);
  border-radius: 1px 0px 0px 0px;
  background: var(--color_white);
  font-size: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  text-align: center;
  color: var(--color-txt);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .c-tab__button:hover:not(.is-active) {
    background-color: #F0F0F0;
  }
}
.c-tab__button:last-child {
  border-right: 0;
}
@media screen and (max-width: 991px) {
  .c-tab__button:last-child {
    border-bottom: none;
  }
}
.c-tab__button.is-active {
  background: var(--color-key_l);
  color: var(--color_white);
  font-weight: 700;
  cursor: default;
}
@media screen and (max-width: 991px) {
  .c-tab__button__note {
    font-size: 0.75rem;
  }
}
.c-tab__body {
  border-top: 1px solid var(--color-border-box);
  padding: 2.3125rem 0;
}
.c-tab__panel {
  display: none;
}
.c-tab__panel.is-active {
  display: block;
}

.c-icon-pin {
  position: relative;
  display: inline-block;
  width: 0.669375rem;
  height: 1.00375rem;
}
.c-icon-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-key_l);
  clip-path: path("M5.355 0C2.398 0 0 2.398 0 5.355C0 9.366 5.355 16.06 5.355 16.06C5.355 16.06 10.71 9.366 10.71 5.355C10.71 2.398 8.312 0 5.355 0Z");
}
.c-icon-pin::after {
  content: "";
  position: absolute;
  top: 0.1675rem;
  left: 50%;
  width: 0.334375rem;
  height: 0.334375rem;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-button {
  --button-bg: var(--color_white);
  --button-border: var(--color-border-box);
  --button-color: var(--color-txt);
  --button-icon-bg: var(--color-key_l);
  --button-icon-color: var(--color_white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--button-border);
  border-radius: 27px;
  background: var(--button-bg);
  color: var(--button-color);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media (any-hover: hover) {
  .c-button:hover {
    --button-bg: var(--color-key_l);
    --button-border: var(--color-key_l);
    --button-color: var(--color_white);
  }
}
.c-button--l {
  min-width: 20.625rem;
  height: 3.5rem;
  font-size: 0.9375rem;
}
.c-button--m {
  min-width: 13.75rem;
  height: 3rem;
  font-size: 0.875rem;
}
.c-button--l-subtle {
  --icon-arrow-box-bg: var(--color-arrow_back);
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23ea3341%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  --icon-arrow-box-size: 1rem;
}
.c-button--l-subtle::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--icon-arrow-box-size);
  height: var(--icon-arrow-box-size);
  border-radius: 0.1875rem;
  background-color: var(--icon-arrow-box-bg);
  background-image: var(--icon-arrow-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -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;
}
.c-button--l-subtle {
  min-width: 20.625rem;
  height: 3.5rem;
  font-size: 0.9375rem;
}
.c-button--primary {
  --button-bg: var(--color-key);
  --button-border: var(--color-key);
  --button-color: var(--color_white);
}
.c-button--whiteIcon {
  --button-icon-bg: var(--color-arrow_back);
  --button-icon-color: var(--color-key_l);
}
.c-button--tertiary {
  --button-border: var(--color_white);
  --button-color: var(--color_white);
  background-color: #3A2C2C;
}
.c-button--map {
  min-width: 10.625rem;
  height: 2.5rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 991px) {
  .c-button--map {
    min-width: 9.75rem;
    height: 2.375rem;
  }
}

.c_slider {
  overflow: hidden;
  padding: 2.5rem 0;
}
@media screen and (max-width: 991px) {
  .c_slider {
    padding: 0 0 1.5rem;
  }
}
.c_slider__splide {
  position: relative;
  margin: 0 auto;
  overflow: visible;
}
.c_slider__track {
  overflow: visible;
}
.c_slider__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_slider__slide {
  overflow: hidden;
  width: min(100vw - 6rem, 46.875rem);
}
.c_slider__slide a {
  display: block;
  overflow: hidden;
}
@media (any-hover: hover) {
  .c_slider__slide a:hover .c_slider__image {
    opacity: 0.7;
  }
}
@media screen and (max-width: 991px) {
  .c_slider__slide {
    width: 100%;
  }
}
.c_slider__image {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c_slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 46.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.625rem auto 0;
}
@media screen and (max-width: 991px) {
  .c_slider__nav {
    margin-top: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c_slider__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .c_slider__button {
    display: none;
  }
}
.c_slider .splide__pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  padding: 0;
  margin: 0;
}
.c_slider .splide__pagination li {
  line-height: 1;
}
.c_slider .splide__pagination__page {
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0;
  border-radius: 50%;
  background: #C7C7C7;
  opacity: 1;
}
.c_slider .splide__pagination__page.is-active {
  -webkit-transform: none;
          transform: none;
  background: var(--color-key_l);
}

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

.c-title--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-title--inner__reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.c-title--inner__reverse .c-title__en {
  color: var(--color-txt_tone);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.08em;
  padding-top: 0.625rem;
  font-weight: 600;
  font-family: var(--font-family-en);
}
.c-title--inner__reverse .c-title__ja {
  color: var(--color-txt);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 2.5714285714;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 991px) {
  .c-title--inner__reverse .c-title__ja {
    line-height: 1;
  }
}

.c-title__en {
  color: var(--color-txt_tone);
  font-size: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  line-height: 1;
  padding-top: 0.625rem;
  font-weight: 600;
  font-family: var(--font-family-en);
  letter-spacing: -3.2px;
}
@media screen and (max-width: 991px) {
  .c-title__en {
    letter-spacing: -2.24px;
  }
}

.c-title__ja {
  color: var(--color-txt);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 2.5714285714;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 991px) {
  .c-title__ja {
    line-height: 1;
    padding-top: 0.1875rem;
  }
}

.c-sectionTitle, .c-entry-content h2:not(.p-tenant__fvTitle) {
  position: relative;
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  padding-left: 1.375rem;
  color: var(--color-txt);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .c-sectionTitle, .c-entry-content h2:not(.p-tenant__fvTitle) {
    padding-left: 0.875rem;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.c-sectionTitle::before, .c-entry-content h2:not(.p-tenant__fvTitle)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 2.5rem;
  background: var(--color-key_l);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .c-sectionTitle::before, .c-entry-content h2:not(.p-tenant__fvTitle)::before {
    width: 0.25rem;
    height: 1.75rem;
  }
}
.c-sectionTitle--s {
  font-size: 1rem;
}
.c-sectionTitle--s::before {
  width: 0.1875rem;
  height: 1.25rem;
}

.c-numberTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem) 0 0;
  color: var(--color-txt);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .c-numberTitle {
    gap: 0.875rem;
    line-height: 1.7111111111;
  }
}
.c-numberTitle::before {
  content: var(--number-title);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: var(--color-key_l);
  font-family: var(--font-family-en);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .c-numberTitle::before {
    line-height: 1.4;
  }
}
.c-numberTitle--01 {
  --number-title: "01";
}
.c-numberTitle--02 {
  --number-title: "02";
}
.c-numberTitle--03 {
  --number-title: "03";
}
.c-numberTitle + p {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}

.c-postCard {
  display: block;
  color: var(--color-txt);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-postCard:hover {
    opacity: 0.7;
  }
  .c-postCard:hover .c-postCard__image {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
.c-postCard__imageWrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--color-border-box);
  border-radius: 2px;
  background: var(--color_white);
}
.c-postCard__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.c-postCard__body {
  text-align: left;
}
.c-postCard__date {
  display: block;
  margin-top: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  color: var(--color-txt-note);
  font-family: var(--font-family-en);
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
  line-height: 1.5;
}
.c-postCard__title {
  margin-top: 0.4375rem;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .c-postCard__title {
    margin-top: 0.5rem;
  }
}
.c-postCard__meta {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
  line-height: 1.8285714286;
}
.c-postCard__meta span {
  color: var(--color-key_l);
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}
@media screen and (max-width: 991px) {
  .c-postCard__meta span {
    margin-right: 0.125rem;
    margin-left: 0.125rem;
  }
}

.c-shopCard {
  display: block;
  padding: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  background: var(--color_white);
  color: var(--color-txt-btn);
  text-decoration: none;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-shopCard:hover {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 600px) {
  .c-shopCard {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-shopCard__image {
  aspect-ratio: 300/180;
  overflow: hidden;
  background: var(--color_white);
}
@media screen and (max-width: 600px) {
  .c-shopCard__image {
    width: 7.5rem;
  }
}
.c-shopCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-shopCard__body {
  padding-top: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .c-shopCard__body {
    padding-top: 0;
  }
}
.c-shopCard__lead {
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
  line-height: 1.4;
}
.c-shopCard__title {
  padding-top: 0.25rem;
  font-size: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  font-weight: 600;
  line-height: 1.26;
}
.c-shopCard__meta {
  padding-top: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
  line-height: 1.8285714286;
  color: var(--color-txt);
}
@media screen and (max-width: 600px) {
  .c-shopCard__meta {
    padding-top: 0.5rem;
  }
}
.c-shopCard__meta span {
  color: var(--color-key_l);
  margin: 0 0.25rem;
}
@media screen and (max-width: 600px) {
  .c-shopCard__meta span {
    margin: 0 0.125rem;
  }
}

.c-floorShopCard {
  display: block;
  padding: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem) clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem) clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  background: var(--color_white);
  color: var(--color-txt-btn);
  text-decoration: none;
  -webkit-box-shadow: 0 0 0.5rem rgba(var(--color-card-shadow), 0.05);
          box-shadow: 0 0 0.5rem rgba(var(--color-card-shadow), 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .c-floorShopCard:hover {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
  }
}
.c-floorShopCard__image {
  margin-bottom: 0.625rem;
  aspect-ratio: 250/154;
  background: var(--color_white);
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__image {
    margin-bottom: 0;
  }
}
.c-floorShopCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-floorShopCard__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.5rem, 0.4696601942rem + 0.1294498382vw, 0.625rem);
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: clamp(0.5rem, 0.4696601942rem + 0.1294498382vw, 0.625rem);
       -moz-column-gap: clamp(0.5rem, 0.4696601942rem + 0.1294498382vw, 0.625rem);
            column-gap: clamp(0.5rem, 0.4696601942rem + 0.1294498382vw, 0.625rem);
    row-gap: 0.625rem;
    padding-top: 0.890625rem;
  }
}
.c-floorShopCard__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(1.5rem, 1.3483009709rem + 0.6472491909vw, 2.125rem);
  height: clamp(1.5rem, 1.3483009709rem + 0.6472491909vw, 2.125rem);
  border-radius: 2px;
  color: var(--color_white);
  font-size: clamp(0.8125rem, 0.7366504854rem + 0.3236245955vw, 1.125rem);
  font-family: var(--font-family-en);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__number {
    grid-column: 1;
    grid-row: 1;
  }
}
.c-floorShopCard__number--restaurant {
  background: var(--color-shop-category_restaurant);
}
.c-floorShopCard__number--service {
  background: var(--color-shop-category_service);
}
.c-floorShopCard__number--variety {
  background: var(--color-shop-category_variety);
}
.c-floorShopCard__number--fashion {
  background: var(--color-shop-category_fashion);
}
.c-floorShopCard__number--jewelry {
  background: var(--color-shop-category_jewelry);
}
.c-floorShopCard__number--lifebeauty {
  background: var(--color-shop-category_life);
}
.c-floorShopCard__number--antique {
  background: var(--color-shop-category_antique);
}
.c-floorShopCard__text {
  min-width: 0;
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__text {
    display: contents;
  }
}
.c-floorShopCard__lead {
  padding: 0 0 0.375rem;
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__lead {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 0;
  }
}
.c-floorShopCard__title {
  margin: 0;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .c-floorShopCard__title {
    grid-column: 1/-1;
    grid-row: 2;
  }
}

.c_guideNav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  background: var(--color-body_bg);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 600px) {
  .c_guideNav {
    grid-template-columns: repeat(6, 1fr);
  }
}
.c_guideNav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 10.5rem;
  text-align: center;
  color: var(--color-txt);
  border-right: 1px solid var(--color-border-box);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 991px) {
  .c_guideNav__item {
    min-height: 7rem;
    padding: 0.5rem 0 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .c_guideNav__item:nth-child(1), .c_guideNav__item:nth-child(2) {
    grid-column: span 3;
    border-bottom: 1px solid var(--color-border-box);
  }
}
@media screen and (max-width: 600px) {
  .c_guideNav__item:nth-child(2) {
    border-right: none;
  }
}
@media screen and (max-width: 600px) {
  .c_guideNav__item:nth-child(3), .c_guideNav__item:nth-child(4), .c_guideNav__item:nth-child(5) {
    grid-column: span 2;
  }
}
.c_guideNav__item:last-child {
  border-right: none;
}
@media (any-hover: hover) {
  .c_guideNav__item:hover {
    opacity: 0.7;
  }
  .c_guideNav__item:hover .c_guideNav__icon {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
  }
}
.c_guideNav__icon {
  width: clamp(4rem, 3.7572815534rem + 1.0355987055vw, 5rem);
  height: auto;
  -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;
}
.c_guideNav__text {
  font-size: clamp(0.8125rem, 0.7669902913rem + 0.1941747573vw, 1rem);
  line-height: 1.4;
}
.c_guideNav__text .u-pc {
  display: contents;
}
@media screen and (max-width: 991px) {
  .c_guideNav__text .u-pc {
    display: none;
  }
}

.c-categoryNav {
  padding: clamp(3rem, 2.8786407767rem + 0.5177993528vw, 3.5rem) clamp(0.625rem, -0.8009708738rem + 6.0841423948vw, 6.5rem) clamp(3rem, 2.8786407767rem + 0.5177993528vw, 3.5rem) clamp(0.625rem, -0.1941747573rem + 3.4951456311vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2rem, 1.1201456311rem + 3.7540453074vw, 5.625rem);
  background: var(--color_white);
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .c-categoryNav {
    display: block;
    border-radius: 8px;
  }
}
.c-categoryNav__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18.125rem;
          flex: 0 0 18.125rem;
}
@media screen and (max-width: 991px) {
  .c-categoryNav__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5rem;
            flex: 0 0 12.5rem;
    padding-top: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
.c-categoryNav__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .c-categoryNav__list {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-categoryNav__list {
    padding-top: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .c-categoryNav__list {
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
}
.c-categoryNav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .c-categoryNav__item:hover {
    color: var(--color-key_l);
  }
  .c-categoryNav__item:hover .c-categoryNav__icon {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 0 0.875rem rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 0.875rem rgba(0, 0, 0, 0.12);
  }
}
.c-categoryNav__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(5rem, 4.6966019417rem + 1.2944983819vw, 6.25rem);
  height: clamp(5rem, 4.6966019417rem + 1.2944983819vw, 6.25rem);
  background: var(--color_white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.c-categoryNav__icon img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-categoryNav__text {
  margin-top: clamp(0.375rem, 0.2233009709rem + 0.6472491909vw, 1rem);
  width: 6.25rem;
  font-size: clamp(0.8125rem, 0.7669902913rem + 0.1941747573vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .c-categoryNav__text {
    width: 100%;
  }
}

.c-floorNav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-border-box);
}
.c-floorNav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4.625rem;
  border-right: 1px solid var(--color-border-box);
  border-bottom: 1px solid var(--color-border-box);
  background: var(--color_white);
  color: var(--color-txt);
  font-size: clamp(0.9375rem, 0.8919902913rem + 0.1941747573vw, 1.125rem);
  font-family: var(--font-family-en);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-floorNav__item:last-child {
  border-right: 0;
}
@media (any-hover: hover) {
  .c-floorNav__item:hover {
    background: #F0F0F0;
  }
}
.c-floorNav__item.is-active {
  background: var(--color-key_l);
  color: var(--color_white);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .c-floorNav__item {
    min-height: 3.625rem;
  }
}

.c-anchorNav {
  display: grid;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: clamp(3rem, 2.5145631068rem + 2.071197411vw, 5rem);
}
.c-anchorNav__item {
  width: 100%;
}
.c-anchorNav__item > a {
  --anchor-nav-bg: var(--color_white);
  --anchor-nav-border: var(--color-border-box);
  --anchor-nav-color: var(--color-txt);
  --icon-arrow-box-bg: var(--color-key_l);
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  height: clamp(2.75rem, 2.567961165rem + 0.7766990291vw, 3.5rem);
  padding: 0 1.5rem 0 2rem;
  border: 1px solid var(--anchor-nav-border);
  border-radius: 27px;
  background: var(--anchor-nav-bg);
  color: var(--anchor-nav-color);
  font-size: clamp(0.8125rem, 0.7669902913rem + 0.1941747573vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-anchorNav__item > a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1875rem;
  background-color: var(--icon-arrow-box-bg);
  background-image: var(--icon-arrow-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -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 (any-hover: hover) {
  .c-anchorNav__item > a:hover {
    opacity: 0.6;
  }
  .c-anchorNav__item > a:hover::after {
    -webkit-transform: translateY(0.1875rem);
            transform: translateY(0.1875rem);
  }
}
@media screen and (max-width: 991px) {
  .c-anchorNav__item > a {
    padding: 0.75rem 1rem;
    gap: 0;
  }
}
.c-anchorNav--grid {
  grid-template-columns: repeat(4, 1fr);
}
.c-anchorNav--grid .c-anchorNav__item {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .c-anchorNav--grid {
    gap: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .c-anchorNav--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.125rem;
  }
}

.c-link {
  --link-bg: var(--color-key_l);
  --link-icon-color: var(--color_white);
  --link-color: var(--color-txt);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--link-color);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .c-link:hover {
    --link-color: var(--color-key_l);
    --link-bg: var(--color-key);
  }
}
.c-link--whiteIcon {
  --link-bg: var(--color-arrow_back);
  --link-icon-color: var(--color-key_l);
}
.c-link--dark {
  --link-color: var(--color_white);
}
.c-link__icon {
  position: relative;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 0.125rem;
  background: var(--link-bg);
}
.c-link__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-top: 1px solid var(--link-icon-color);
  border-right: 1px solid var(--link-icon-color);
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
          transform: translate(-60%, -50%) rotate(45deg);
}
.c-link__icon--pale {
  background: var(--color-arrow_back);
}
.c-link__icon--pale::before {
  border-color: var(--color-key_l);
}

.c-link-underbar {
  position: relative;
  margin-right: 0.3125rem;
  display: inline-block;
  color: var(--color-key_l);
  text-decoration: none;
}
.c-link-underbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -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 (any-hover: hover) {
  .c-link-underbar:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}
.c-link-underbar--black {
  color: var(--color-link);
}
.c-link-underbar--static {
  margin-right: 0.3125rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-key_l);
  -webkit-transition: color 0.3s ease, text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.c-link-underbar--static::after {
  display: none;
}
@media (any-hover: hover) {
  .c-link-underbar--static:hover {
    color: var(--color-key);
    text-decoration-color: transparent;
  }
}
.c-link-underbar--static--black {
  text-decoration-color: var(--color-link);
}
@media (any-hover: hover) {
  .c-link-underbar--static--black:hover {
    color: var(--color-link_hover);
  }
}

.c-link-underbar__icon {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  color: #B4B4B4;
}
.c-link-underbar__icon::before, .c-link-underbar__icon::after {
  content: "";
  position: absolute;
  width: 0.6875rem;
  height: 0.6875rem;
}
.c-link-underbar__icon::before {
  left: 0;
  bottom: 0;
  background: #B4B4B4;
}
.c-link-underbar__icon::after {
  bottom: 3px;
  left: 3px;
  background: var(--color_white);
  border: 1px solid #B4B4B4;
}

.c-iconArrow {
  --icon-arrow-box-bg: transparent;
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23ea3341%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  --icon-arrow-box-size: 1rem;
}
.c-iconArrow::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--icon-arrow-box-size);
  height: var(--icon-arrow-box-size);
  border-radius: 0.1875rem;
  background-color: var(--icon-arrow-box-bg);
  background-image: var(--icon-arrow-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -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;
}
.c-iconArrow--bg-primary {
  --icon-arrow-box-bg: var(--color-key_l);
}
.c-iconArrow--bg-lightgray {
  --icon-arrow-box-bg: var(--color-arrow_back);
}
.c-iconArrow--right-white {
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-iconArrow--right-primary {
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23ea3341%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-iconArrow--left-primary {
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%201L3%204L6%207%27%20fill%3D%27none%27%20stroke%3D%27%23ea3341%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-iconArrow--down-white {
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-iconArrow--down-gray {
  --icon-arrow-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23282828%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}

.c-arrowBox {
  --arrow-bg: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1rem;
  height: 1rem;
  background-color: var(--arrow-bg);
  border-radius: 0.1875rem;
  vertical-align: center;
}
.c-arrowBox--plain {
  --arrow-bg: transparent;
}
.c-arrowBox--gray {
  --arrow-bg: #646464;
}
.c-arrowBox--lightgray {
  --arrow-bg: var(--color-arrow_back);
}
.c-arrowBox--primary {
  --arrow-bg: var(--color-key_l);
}
.c-arrowBox--white {
  --arrow-bg: var(--color_white);
}

.c-arrowBox--pagetop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: transparent;
  border-radius: 0.1875rem;
  vertical-align: center;
  -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 (max-width: 991px) {
  .c-arrowBox--pagetop {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-arrowBox--pagenation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  background-color: transparent;
  border-radius: 0.1875rem;
  vertical-align: center;
}

.c-arrow {
  --arrow-color: var(--color-key_l);
  --arrow-size: 0.5rem;
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--arrow-size);
  height: var(--arrow-size);
  background-color: var(--arrow-color);
  mask: var(--arrow-mask) center/contain no-repeat;
  -webkit-mask: var(--arrow-mask) center/contain no-repeat;
  -webkit-transform: translateX(1px);
          transform: translateX(1px);
}
.c-arrow::before, .c-arrow::after {
  content: none;
}
.c-arrow--up {
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%205L4%202L7%205%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--down {
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--left {
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%201L3%204L6%207%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--right {
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--pagination-left {
  --arrow-size: 0.75rem;
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M6%201L3%204L6%207%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--pagination-right {
  --arrow-size: 0.75rem;
  --arrow-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
}
.c-arrow--primary {
  --arrow-color: var(--color-key_l);
}
.c-arrow--white {
  --arrow-color: var(--color_white);
}
.c-arrow--gray {
  --arrow-color: #282828;
}

.c-arrow--pagetop {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color_white);
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%205L4%202L7%205%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%205L4%202L7%205%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E") center/contain no-repeat;
}
@media screen and (max-width: 991px) {
  .c-arrow--pagetop {
    width: 0.6875rem;
    height: 0.6875rem;
  }
}
.c-arrow--pagetop::before, .c-arrow--pagetop::after {
  content: none;
}

.c-pageHeader {
  position: relative;
  margin-bottom: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  padding: clamp(0.25rem, 0.1589805825rem + 0.3883495146vw, 0.625rem) clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  background-image: url("../img/common/pagettl_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  text-align: center;
}
.c-pageHeader__title {
  padding: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem) 0 clamp(2rem, 1.7269417476rem + 1.1650485437vw, 3.125rem) 0;
  color: var(--color-key);
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-weight: 600;
  line-height: 1.125;
}
@media screen and (max-width: 991px) {
  .c-pageHeader__title {
    line-height: 1.6363636364;
  }
}

.c-breadcrumb {
  max-width: 75rem;
  margin: 0;
  text-align: left;
  overflow-x: auto;
  overflow-y: hidden;
}
.c-breadcrumb__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0.75rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .c-breadcrumb__list {
    gap: 0.3125rem;
  }
}
.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  color: var(--color-txt-note);
  font-size: clamp(0.5625rem, 0.5169902913rem + 0.1941747573vw, 0.75rem);
  line-height: 2.25;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-right: 0.75rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .c-breadcrumb__item + .c-breadcrumb__item::before {
    margin-right: 0.5rem;
  }
}
.c-breadcrumb__item:last-child {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: auto;
  padding-left: 0;
  white-space: nowrap;
  word-break: normal;
}
.c-breadcrumb__item:last-child::before {
  position: static;
  top: auto;
  left: auto;
}
.c-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    color: var(--color-key_l);
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(3rem, 2.5145631068rem + 2.071197411vw, 5rem);
  font-family: var(--font-family-en-accent);
}
@media screen and (max-width: 991px) {
  .c-pagination {
    gap: 0.5rem;
  }
}
.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .c-pagination__list {
    gap: 0.5rem;
  }
}
.c-pagination__link, .c-pagination__prev, .c-pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border-box);
  border-radius: 2px;
  background: var(--color_white);
  color: var(--color-txt);
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (any-hover: hover) {
  .c-pagination__link:hover, .c-pagination__prev:hover, .c-pagination__next:hover {
    border-color: var(--color-key_l);
    background: rgba(234, 51, 65, 0.08);
    color: var(--color-key_l);
  }
}
@media screen and (max-width: 991px) {
  .c-pagination__link, .c-pagination__prev, .c-pagination__next {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
}
.c-pagination__link.is-active {
  border-color: var(--color-key_l);
  background: var(--color-key_l);
  color: var(--color_white);
}
@media (any-hover: hover) {
  .c-pagination__link.is-active:hover {
    background: var(--color-key_l);
    color: var(--color_white);
  }
}
.c-pagination__ellipsis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.625rem;
  width: auto;
  height: 2.125rem;
  color: var(--color-txt);
  font-size: 0.875rem;
}
@media screen and (max-width: 991px) {
  .c-pagination__ellipsis {
    padding: 0;
    height: 2.25rem;
    font-size: 1rem;
  }
}

.c-list {
  --list-title-width: 15.625rem;
  --list-column-gap: 2rem;
  --list-block-padding: 2.5rem;
  border-top: 1px solid var(--color-border-box);
}
.c-list__item {
  display: grid;
  grid-template-columns: var(--list-title-width) 1fr;
  gap: var(--list-column-gap);
  padding: var(--list-block-padding) 0;
  border-bottom: 1px solid var(--color-border-box);
}
@media screen and (max-width: 991px) {
  .c-list__item {
    display: block;
    padding: 2rem 0;
  }
}
.c-list__item--s {
  --list-column-gap: 1rem;
  --list-block-padding: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  padding: var(--list-block-padding) clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  gap: var(--list-column-gap);
}
@media screen and (max-width: 991px) {
  .c-list__item--s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-list__title {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(5rem, 2.4211165049rem + 11.003236246vw, 15.625rem);
          flex: 0 0 clamp(5rem, 2.4211165049rem + 11.003236246vw, 15.625rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
}
.c-list__body {
  min-width: 0;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .c-list__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.c-list__body p {
  margin: 0;
}

.c-accessList {
  --list-title-width: 15.625rem;
  --list-column-gap: 2rem;
  --list-block-padding: 2.5rem;
  border-top: 1px solid var(--color-border-box);
}
.c-accessList__item {
  display: grid;
  grid-template-columns: var(--list-title-width) 1fr;
  gap: var(--list-column-gap);
  padding: var(--list-block-padding) 0;
  border-bottom: 1px solid var(--color-border-box);
}
@media screen and (max-width: 991px) {
  .c-accessList__item {
    display: block;
    padding: 2rem 0;
  }
}
.c-accessList__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-accessList__body {
  min-width: 0;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.9;
}
.c-accessList__body p {
  margin: 0;
}
.c-accessList__group + .c-accessList__group {
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .c-accessList__group + .c-accessList__group {
    margin-top: 1.5rem;
  }
}
.c-accessList__subTitle {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
  line-height: 1.4;
}

.c-noteList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-noteList li {
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (max-width: 991px) {
  .c-noteList li {
    padding-left: 1.6875rem;
  }
}
.c-noteList li + li {
  margin-top: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.c-noteList li::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: var(--color-key_l);
}
.c-noteList strong {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .c-noteList strong {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.c-noteList span {
  display: inline-block;
  margin-top: 0.125rem;
}

.c-listTable, .c-entry-content .wp-block-table {
  --list-title-width: 15.625rem;
  --list-column-gap: 1rem;
  --list-block-padding: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  margin: 0;
}
.c-listTable table, .c-entry-content .wp-block-table table {
  width: 100%;
  border-top: 1px solid var(--color-border-box);
  border-collapse: separate;
  border-spacing: 0;
}
.c-listTable tbody, .c-entry-content .wp-block-table tbody,
.c-listTable tr,
.c-entry-content .wp-block-table tr,
.c-listTable th,
.c-entry-content .wp-block-table th,
.c-listTable td,
.c-entry-content .wp-block-table td {
  display: block;
}
.c-listTable tr, .c-entry-content .wp-block-table tr {
  display: grid;
  grid-template-columns: var(--list-title-width);
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: var(--list-column-gap);
  padding: var(--list-block-padding) clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  border-bottom: 1px solid var(--color-border-box);
}
@media screen and (max-width: 991px) {
  .c-listTable tr, .c-entry-content .wp-block-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-listTable th, .c-entry-content .wp-block-table th,
.c-listTable td,
.c-entry-content .wp-block-table td {
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--color-txt);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}
.c-listTable th, .c-entry-content .wp-block-table th,
.c-listTable td:first-child,
.c-entry-content .wp-block-table td:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(5rem, 2.4211165049rem + 11.003236246vw, 15.625rem);
          flex: 0 0 clamp(5rem, 2.4211165049rem + 11.003236246vw, 15.625rem);
  font-weight: 700;
}
.c-listTable td:not(:first-child), .c-entry-content .wp-block-table td:not(:first-child) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
}
.c-listTable p, .c-entry-content .wp-block-table p {
  margin: 0;
}

table.c-listTable, .c-entry-content table.wp-block-table {
  width: 100%;
  border-top: 1px solid var(--color-border-box);
  border-collapse: separate;
  border-spacing: 0;
}

.c-newsList {
  border-top: 1px solid var(--color-border-box);
}

.c-newsItem {
  position: relative;
  display: block;
  padding: clamp(1.5rem, 1.3862257282rem + 0.4854368932vw, 1.96875rem) 3.625rem clamp(1.53125rem, 1.4023058252rem + 0.5501618123vw, 2.0625rem) 0.5625rem;
  border-bottom: 1px solid var(--color-border-box);
  color: var(--color-txt);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-newsItem:hover {
    opacity: 0.7;
  }
  .c-newsItem:hover::before {
    width: 3rem;
  }
  .c-newsItem:hover::after {
    background-color: var(--color-key_l);
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
    -webkit-transform: translate(0.25rem, -50%);
            transform: translate(0.25rem, -50%);
  }
}
@media screen and (max-width: 991px) {
  .c-newsItem {
    padding: 1.5rem 2.65625rem 1.53125rem 0.65625rem;
  }
}
.c-newsItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 2rem;
  height: 1px;
  background: var(--color-key);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.c-newsItem::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1875rem;
  background-color: var(--color-arrow_back);
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M2%201L5%204L2%207%27%20fill%3D%27none%27%20stroke%3D%27%23ea3341%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-newsItem__date {
  display: block;
  margin-bottom: 0.625rem;
  color: var(--color-txt-note);
  font-family: var(--font-family-en);
  font-size: 0.875rem;
}
.c-newsItem__text {
  margin: 0;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.8;
}

.c-mediaSection__content {
  display: grid;
  grid-template-columns: 30.625rem 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1280px) {
  .c-mediaSection__content {
    grid-template-columns: 28.75rem 1fr;
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 991px) {
  .c-mediaSection__content {
    display: block;
  }
}

.c-mediaSection__image {
  position: relative;
  aspect-ratio: 400/268;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .c-mediaSection__image {
    margin-bottom: 1.375rem;
  }
}
.c-mediaSection__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-mediaSection__body {
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .c-mediaSection__body {
    line-height: 1.8;
  }
}
.c-mediaSection__body p + p {
  margin-top: 0.375rem;
}
.c-mediaSection__body .c-button {
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .c-mediaSection__body .c-button {
    margin-top: 1.5rem;
  }
}

.c-mapEmbed {
  width: 100%;
  height: 27.3125rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .c-mapEmbed {
    min-height: 20.625rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-mapEmbed {
    height: 13.75rem;
    margin-bottom: 1.5rem;
  }
}
.c-mapEmbed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.c-listSection {
  margin-top: clamp(0.25rem, 0.2354368932rem + 0.0621359223vw, 0.31rem);
}

.c-noteText {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .c-noteText {
    font-size: 0.6875rem;
  }
}

.c-historyGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 991px) {
  .c-historyGallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.c-historyGallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.c-entry-content > :first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.c-entry-content > * + * {
  -webkit-margin-before: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
          margin-block-start: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
.c-entry-content h2:not(.p-tenant__fvTitle) {
  margin-top: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
}
.c-entry-content h2:not(.p-tenant__fvTitle) + * {
  margin-top: 0;
}
.c-entry-content h3:not(.c-numberTitle) {
  padding: 0 0 1rem;
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}
.c-entry-content h3:not(.c-numberTitle) + * {
  margin-top: 0;
}
.c-entry-content p {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.75;
}
.c-entry-content p + p {
  margin-top: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
}
.c-entry-content .wp-block-button__link,
.c-entry-content .wp-block-file__button {
  --button-bg: var(--color_white);
  --button-border: var(--color-border-box);
  --button-color: var(--color-txt);
  --button-icon-bg: var(--color-key_l);
  --button-icon-color: var(--color_white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 20.625rem;
  height: 3.5rem;
  padding: 0 1.25rem;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 600px) {
  .c-entry-content .wp-block-button__link,
  .c-entry-content .wp-block-file__button {
    width: 100%;
    min-width: 0;
  }
}
.c-entry-content .wp-block-button__link::after,
.c-entry-content .wp-block-file__button::after {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  margin-left: 0.59375rem;
  border-radius: 0.1875rem;
  background: var(--button-icon-bg);
}
.c-entry-content .wp-block-button__link::before,
.c-entry-content .wp-block-file__button::before {
  content: "";
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  z-index: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.3125rem;
          flex: 0 0 0.3125rem;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-left: -0.6875rem;
  margin-right: 0.375rem;
  border-top: 1px solid var(--button-icon-color);
  border-right: 1px solid var(--button-icon-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (any-hover: hover) {
  .c-entry-content .wp-block-button__link:hover,
  .c-entry-content .wp-block-file__button:hover {
    --button-bg: var(--color-key_l);
    --button-border: var(--color-key_l);
    --button-color: var(--color_white);
  }
}
.c-entry-content .wp-block-button.is-style-small .wp-block-button__link {
  width: auto;
  min-width: 13.75rem;
  height: 3rem;
  font-size: 0.875rem;
}
.c-entry-content ul:not(.c-noteList) {
  margin-top: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.c-entry-content ul:not(.c-noteList) li {
  position: relative;
  padding-left: clamp(1.3125rem, 1.2214805825rem + 0.3883495146vw, 1.6875rem);
}
.c-entry-content ul:not(.c-noteList) li + li {
  margin-top: 0.5rem;
}
.c-entry-content ul:not(.c-noteList) li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-key_l);
}
.c-entry-content ul:not(.c-noteList) + p {
  margin-top: 1rem;
}
.c-entry-content ul.c-noteList {
  margin-top: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.c-entry-content .wp-block-table.c-listTable, .c-entry-content .wp-block-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  -webkit-margin-before: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
          margin-block-start: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
.c-entry-content .c-anchorNav.wp-block-buttons, .c-entry-content .c-anchorNav.is-layout-flex {
  display: grid;
}
.c-entry-content .c-anchorNav .wp-block-button {
  margin: 0;
}
.c-entry-content .c-anchorNav .wp-block-button__link {
  --button-bg: var(--color_white);
  --button-border: var(--color-border-box);
  --button-color: var(--color-txt);
  --button-icon-bg: var(--color-key_l);
  --button-icon-color: var(--color_white);
  --button-icon-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E");
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 0;
  height: clamp(2.75rem, 2.567961165rem + 0.7766990291vw, 3.5rem);
  padding: 0 1.5rem 0 2rem;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
@media screen and (max-width: 991px) {
  .c-entry-content .c-anchorNav .wp-block-button__link {
    padding: 0.75rem 1rem;
  }
}
.c-entry-content .c-anchorNav .wp-block-button__link::before {
  content: none;
}
.c-entry-content .c-anchorNav .wp-block-button__link::after {
  content: "";
  -webkit-box-ordinal-group: initial;
      -ms-flex-order: initial;
          order: initial;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  margin-right: 0;
  border-radius: 0.1875rem;
  background-color: var(--button-icon-bg);
  background-image: var(--button-icon-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem 0.5rem;
  -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 (any-hover: hover) {
  .c-entry-content .c-anchorNav .wp-block-button__link:hover {
    opacity: 0.6;
  }
  .c-entry-content .c-anchorNav .wp-block-button__link:hover::after {
    -webkit-transform: translateY(0.1875rem);
            transform: translateY(0.1875rem);
  }
}

.l-importantNotice {
  background: var(--color-key_bg_l);
}
.l-importantNotice__link {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  width: min(100% - 2rem, var(--width-contents_max));
  min-height: 3rem;
  margin: 0 auto;
  color: var(--color-txt);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-importantNotice__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 991px) {
  .l-importantNotice__link {
    grid-template-columns: auto minmax(0, 1fr);
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    width: calc(100% - 2rem);
    min-height: 0;
    padding: 0.625rem 0;
  }
}
.l-importantNotice__label {
  color: var(--color-key);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .l-importantNotice__label {
    font-size: 0.8125rem;
  }
}
.l-importantNotice__text {
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .l-importantNotice__text {
    overflow: hidden;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header_bg);
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.08);
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 1.125rem 1.25rem 1.0625rem 1.25rem;
}
@media screen and (max-width: 991px) {
  .l-header__inner {
    min-height: 3.75rem;
    padding: 1rem 1rem 1rem 1rem;
    position: relative;
    z-index: 120;
    background: var(--color-header_bg);
  }
}
.l-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem 0.5rem 0.5rem 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .l-header__brand {
    gap: 0rem;
  }
}
.l-header__logo {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
.l-header__logo img {
  display: block;
  width: clamp(7.75rem, 7.0825242718rem + 2.8478964401vw, 10.5rem);
  height: auto;
}
.l-header__brandText {
  margin: 0;
  padding-left: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  color: var(--color-key);
  font-size: clamp(0.625rem, 0.6098300971rem + 0.0647249191vw, 0.6875rem);
  line-height: 1;
  white-space: nowrap;
}
.l-header__pcNav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .l-header__pcNav {
    display: none;
  }
}
.l-header__pcNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1280px) {
  .l-header__pcNavList {
    gap: 1.25rem;
  }
}
.l-header__pcNavList a {
  color: var(--color-txt);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__pcNavList a:hover {
    color: var(--color-key_l);
  }
}
.l-header__tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__lang {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-txt);
  font-family: var(--font-family-en);
  font-weight: 300;
  font-size: 1rem;
  cursor: pointer;
}
.l-header__lang::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../img/common/icon_lang.svg") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__lang span {
  line-height: 1;
}
.l-header__lang--white {
  color: var(--color_white);
}
.l-header__menuBtn {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__menuBtn {
    position: relative;
    z-index: 120;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .l-header__menuBtn span {
    position: absolute;
    left: 50%;
    width: 1.75rem;
    height: 0.125rem;
    background: var(--color-key);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .l-header__menuBtn span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
            transform: translate(-50%, calc(-50% - 0.5rem));
  }
  .l-header__menuBtn span:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .l-header__menuBtn span:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%, calc(-50% + 0.5rem));
            transform: translate(-50%, calc(-50% + 0.5rem));
  }
  .l-header__menuBtn.is-active span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__menuBtn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__menuBtn.is-active span:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-header__spNav {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__spNav {
    display: block;
    position: fixed;
    top: 3.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    overflow-y: auto;
    padding: 1.125rem 1rem 0 2.5rem;
    background: var(--color-key_l);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__spNav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 991px) {
  .l-header__spNavHead {
    display: block;
    margin: 0;
  }
  .l-header__spNavHead .l-header__brand {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .l-header__spNavLang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 1.125rem;
    margin-bottom: 1.8125rem;
  }
  .l-header__spNavLang .l-header__langWidget .gt_float_switcher {
    color: var(--color_white);
  }
  .l-header__spNavLang .l-header__langWidget .gt-current-lang {
    color: var(--color_white) !important;
  }
  .l-header__spNavLang .l-header__langWidget .gt-current-lang::before {
    background-image: url("../img/common/icon_lang_inverse.svg");
  }
}
@media screen and (max-width: 991px) {
  .l-header__spNavList {
    display: grid;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .l-header__spNavList a {
    color: var(--color_white);
    font-size: 1rem;
    line-height: 1.8125;
    text-decoration: none;
  }
}
@media screen and (max-width: 991px) {
  .l-header__spSubNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem 1.5rem;
    margin: 4.5rem 0 0;
    padding: 0;
    list-style: none;
  }
  .l-header__spSubNav a {
    color: #FAD6D9;
    font-size: 0.75rem;
    text-decoration: none;
  }
}
.l-header__menuClose {
  display: none;
}
@media screen and (max-width: 991px) {
  .l-header__menuClose {
    position: fixed;
    top: 0.875rem;
    right: 1rem;
    z-index: 130;
    display: block;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .l-header__menuClose span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.875rem;
    height: 0.125rem;
    background: var(--color-key);
  }
  .l-header__menuClose span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__menuClose span:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-header__menuClose__menuClose, .l-header__menuClose__menuBtn {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__menuClose__menuClose span {
  width: 1.75rem;
  height: 0.125rem;
}

/* =====================================================
    GTranslate
===================================================== */
.l-header__langWidget {
  position: relative;
  z-index: 130;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__langWidget [class*=gt_container-],
.l-header__langWidget #gt_float_wrapper {
  position: static !important;
  white-space: normal !important;
}
.l-header__langWidget .gt_float_switcher {
  position: relative !important;
  overflow: visible !important;
  width: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: var(--color-txt);
  font-family: var(--font-family-en);
}
.l-header__langWidget .gt-selected {
  z-index: 1 !important;
  background: transparent !important;
}
.l-header__langWidget .gt-current-lang {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0 !important;
  color: var(--color-txt) !important;
  cursor: pointer;
}
.l-header__langWidget .gt-current-lang::before {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../img/common/icon_lang.svg") no-repeat center/contain;
  content: "";
}
.l-header__langWidget .gt-current-lang::after {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.5rem;
          flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%208%208%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M1%203L4%206L7%203%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%271.4%27%20stroke-linecap%3D%27square%27%20stroke-linejoin%3D%27miter%27/%3E%3C/svg%3E") center/contain no-repeat;
}
.l-header__langWidget .gt-lang-code {
  color: inherit !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  text-transform: uppercase;
}
.l-header__langWidget .gt_float_switcher img,
.l-header__langWidget .gt_float_switcher-arrow {
  display: none !important;
}
.l-header__langWidget .gt_options {
  position: absolute !important;
  z-index: 2 !important;
  top: calc(100% + 1rem);
  right: 0;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  min-width: 13.75rem;
  max-height: min(22.5rem, 60vh) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border: 1px solid var(--color-border-box);
  border-radius: 0.25rem;
  background: var(--color_white);
  -webkit-box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.12);
}
.l-header__langWidget .gt_options a {
  display: block !important;
  padding: 0.625rem 0.875rem !important;
  background: var(--color_white) !important;
  color: var(--color-txt) !important;
  font-family: var(--font-family-en);
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}
.l-header__langWidget .gt_options a:hover, .l-header__langWidget .gt_options a:focus-visible, .l-header__langWidget .gt_options a.gt-current {
  background: #f5f5f5 !important;
  color: var(--color-key) !important;
}
.l-header__langWidget .gt_options a:focus-visible {
  outline: 2px solid var(--color-key);
  outline-offset: -2px;
}

@media screen and (max-width: 991px) {
  .l-header__langWidget .gt_options {
    position: absolute !important;
    top: calc(100% + 0.75rem);
    right: 0;
    left: auto;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    min-width: 13.75rem;
    max-width: calc(100vw - 2rem);
    max-height: min(22.5rem, 60vh) !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.l-container {
  width: min(100% - clamp(2rem, 0.0582524272rem + 8.284789644vw, 10rem), var(--width-contents_max));
  margin-inline: auto;
}
.l-container--narrow {
  width: min(100% - clamp(2rem, 1.2718446602rem + 3.1067961165vw, 5rem), var(--width-contents_max_s));
}

.u-pc {
  display: block;
}
@media screen and (max-width: 991px) {
  .u-pc {
    display: none;
  }
}

.u-pc-inline {
  display: inline;
}
@media screen and (max-width: 991px) {
  .u-pc-inline {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .u-sp {
    display: block;
  }
}

/* ====================================================

　　ヘルパー
　　　1.余白
　　　2.デバイス別 表示・非表示
　　　3.行揃え

==================================================== */
/*-————————————————————————————————————————————————————
　余白
-————————————————————————————————————————————————————*/
.hp_mt {
  display: block;
}
.hp_mt__xl {
  margin-top: 8rem !important;
}
@media screen and (max-width: 991px) {
  .hp_mt__xl {
    margin-top: 12rem !important;
  }
}
.hp_mt__l {
  margin-top: 4rem !important;
}
@media screen and (max-width: 991px) {
  .hp_mt__l {
    margin-top: 6.4rem !important;
  }
}
.hp_mt__m {
  margin-top: 4rem !important;
}
@media screen and (max-width: 991px) {
  .hp_mt__m {
    margin-top: 4.8rem !important;
  }
}
.hp_mt__s {
  margin-top: 1.6rem !important;
}
@media screen and (max-width: 991px) {
  .hp_mt__s {
    margin-top: 2.4rem !important;
  }
}
.hp_mt__ss {
  margin-top: 0.8rem !important;
}
@media screen and (max-width: 991px) {
  .hp_mt__ss {
    margin-top: 1.6rem !important;
  }
}

/*-————————————————————————————————————————————————————
　改行ヘルパー
-————————————————————————————————————————————————————*/
.hp_br__sm {
  display: none;
}
@media screen and (max-width: 600px) {
  .hp_br__sm {
    display: inline;
  }
}
.hp_br__md {
  display: none;
}
@media screen and (max-width: 768px) {
  .hp_br__md {
    display: inline;
  }
}

/*-————————————————————————————————————————————————————
　デバイス別 表示・非表示
-————————————————————————————————————————————————————*/
@media screen and (max-width: 991px) {
  .hp_hide__lg {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_hide__lgmd {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_hide__lgmd {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_hide__md {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_hide__md {
    display: block !important;
  }
}
@media screen and (max-width: 600px) {
  .hp_hide__mdsm {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_hide__mdsm {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_hide__mdsm {
    display: block !important;
  }
}
@media screen and (max-width: 600px) {
  .hp_hide__sm {
    display: none !important;
  }
}

/*-————————————————————————————————————————————————————
　行揃え 中央
-————————————————————————————————————————————————————*/
@media screen and (max-width: 991px) {
  .hp_textAlign__lgCenter {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_textAlign__lgmdCenter {
    text-align: center !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_textAlign__lgmdCenter {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_textAlign__mdCenter {
    text-align: center !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_textAlign__mdCenter {
    text-align: left !important;
  }
}
@media screen and (max-width: 600px) {
  .hp_textAlign__mdsm {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .hp_textAlign__mdsm {
    text-align: center !important;
  }
}
@media screen and (max-width: 991px) {
  .hp_textAlign__mdsm {
    text-align: left !important;
  }
}
@media screen and (max-width: 600px) {
  .hp_textAlign__sm {
    text-align: center !important;
  }
}
.hp_textAlign__all {
  text-align: center !important;
}
.hp_textAlign__allCenter {
  text-align: center !important;
}

/*-————————————————————————————————————————————————————
　文字装飾
-————————————————————————————————————————————————————*/
.hp_txt_og {
  color: #e50112;
}

.p-t-sectionInner {
  max-width: 75rem;
  margin: 0 auto;
}

.p-t-sectionHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2.03125rem;
}
@media screen and (max-width: 991px) {
  .p-t-sectionHead {
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.p-t-sectionHead__more {
  margin-top: 0.5rem;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .p-t-sectionHead__more {
    display: none;
  }
}

.p-t-guide {
  margin: 0 auto;
  padding: clamp(1.5rem, 1.317961165rem + 0.7766990291vw, 2.25rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  background-image: url("../img/top/guide_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .p-t-guide {
    background-image: url("../img/top/guide_bg_sp.png");
  }
}

.p-t-shopNews {
  padding: clamp(3rem, 2.2111650485rem + 3.3656957929vw, 6.25rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.p-t-shopNews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
     -moz-column-gap: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
          column-gap: clamp(1.125rem, 0.9126213592rem + 0.9061488673vw, 2rem);
  row-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-t-shopNews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-t-shopNews__buttonWrap {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-t-shopNews__buttonWrap {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-t-shopGuide {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) 1.875rem;
}
@media screen and (max-width: 991px) {
  .p-t-shopGuide {
    padding-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  }
}
.p-t-shopGuide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  background: #ef3346;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .p-t-shopGuide::before {
    height: 100%;
    border-radius: 0;
  }
}
.p-t-shopGuide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  z-index: 1;
  pointer-events: none;
  background-image: url("../img/top/sec_deco_left.png"), url("../img/top/sec_deco_right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  background-size: 270px auto, 270px auto;
}
@media screen and (max-width: 991px) {
  .p-t-shopGuide::after {
    height: 100%;
    background-image: url("../img/top/sec_deco_left.png"), url("../img/top/sec_deco_right.png");
    background-position: left bottom, right bottom;
    background-size: 110px auto, 110px auto;
  }
}
.p-t-shopGuide__inner {
  position: relative;
  z-index: 2;
}

.p-t-concept {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 3.4684466019rem + 4.4012944984vw, 8.75rem) clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem) clamp(6.25rem, 5.6432038835rem + 2.5889967638vw, 8.75rem) clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
}
@media screen and (max-width: 768px) {
  .p-t-concept {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.p-t-concept::before, .p-t-concept::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
.p-t-concept::before {
  top: 0;
  height: 25rem;
  background-image: url("../img/top/concept_bg_top.png");
  background-position: center top;
}
@media screen and (max-width: 991px) {
  .p-t-concept::before {
    background-image: url("../img/top/concept_bg_top_sp.png");
  }
}
.p-t-concept::after {
  bottom: 0;
  height: 31.25rem;
  background-image: url("../img/top/concept_bg_bottom.png");
  background-position: center bottom;
}
@media screen and (max-width: 991px) {
  .p-t-concept::after {
    background-image: url("../img/top/concept_bg_bottom_sp.png");
  }
}
.p-t-concept__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 1.4235436893rem + 2.4595469256vw, 4.375rem);
}
@media screen and (max-width: 1024px) {
  .p-t-concept__inner {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 991px) {
  .p-t-concept__inner {
    max-width: 44.375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 991px) {
  .p-t-concept__body {
    display: contents;
  }
}
.p-t-concept__catch {
  width: clamp(20.375rem, 18.0388349515rem + 9.9676375405vw, 30rem);
  margin-bottom: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .p-t-concept__catch {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .p-t-concept__catch {
    margin-left: auto;
  }
}
.p-t-concept__catch img {
  display: block;
  width: 100%;
  height: auto;
}
.p-t-concept__text {
  color: var(--color-txt);
  line-height: 2.2;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
}
@media screen and (max-width: 991px) {
  .p-t-concept__text {
    line-height: 1.875;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-t-concept__text p {
  margin: 0;
}
.p-t-concept__text p + p {
  margin-top: clamp(1.3125rem, 1.145631068rem + 0.71197411vw, 2rem);
}
.p-t-concept__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(20.375rem, 15.4599514563rem + 20.9708737864vw, 40.625rem);
          flex: 0 0 clamp(20.375rem, 15.4599514563rem + 20.9708737864vw, 40.625rem);
}
@media screen and (max-width: 1024px) {
  .p-t-concept__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.4375rem;
  }
}
.p-t-concept__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-t-information {
  padding: clamp(3rem, 2.2111650485rem + 3.3656957929vw, 6.25rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  background: var(--color_white);
}
@media screen and (max-width: 600px) {
  .p-t-information__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .p-t-information__list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-t-information__more--sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-t-information__more--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 2rem auto 0;
    text-align: center;
  }
}

.p-t-access {
  display: grid;
  grid-template-columns: 1fr clamp(17.5rem, 13.5558252427rem + 16.8284789644vw, 33.75rem);
}
@media screen and (max-width: 991px) {
  .p-t-access {
    display: block;
  }
}
.p-t-access__map {
  height: 33.75rem;
}
@media screen and (max-width: 991px) {
  .p-t-access__map {
    height: 16.25rem;
  }
}
.p-t-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-t-access__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 6.3125rem;
  color: var(--color_white);
  text-align: center;
  background: #3A2C2C;
}
@media screen and (max-width: 991px) {
  .p-t-access__content {
    min-height: auto;
    padding: 3rem 0;
  }
}
.p-t-access__logo {
  width: 14.9375rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 991px) {
  .p-t-access__logo {
    width: 11.5625rem;
    margin-bottom: 0.375rem;
  }
}
.p-t-access__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-t-access__name {
  margin: 0 0 2rem;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .p-t-access__name {
    margin-bottom: 1.75rem;
    font-size: 0.75rem;
  }
}
.p-t-access__address {
  padding: 0 0 1.5rem;
  font-style: normal;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.8;
}
.p-t-access__route {
  padding: 0 0 2rem;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .p-t-access__route {
    line-height: 1.5;
  }
}

.p-t-link {
  padding: clamp(3rem, 2.2035800971rem + 3.3980582524vw, 6.28125rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) 0;
  background: var(--color_white);
}
.p-t-link__head {
  padding-bottom: 2.03125rem;
}
@media screen and (max-width: 991px) {
  .p-t-link__head {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.p-t-link__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-t-link__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0625rem;
  }
}
.p-t-link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 5.25rem;
  border: 1px solid var(--color-border-box);
  background: var(--color_white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-t-link__item:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 991px) {
  .p-t-link__item {
    height: 3.25rem;
  }
}
.p-t-link__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-shopList__body {
  padding-bottom: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
}
@media screen and (max-width: 1280px) {
  .p-shopList__body {
    max-width: 92%;
    margin: 0 auto;
  }
}
.p-shopList__lead {
  padding-bottom: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  text-align: center;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.8;
}
.p-shopList__lead a {
  color: var(--color-key);
}
@media screen and (max-width: 991px) {
  .p-shopList__lead {
    text-align: left;
  }
}
.p-shopList__category {
  display: grid;
  grid-template-columns: repeat(8, 5rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5.1875rem;
}
@media screen and (max-width: 991px) {
  .p-shopList__category {
    grid-template-columns: repeat(auto-fit, 6.875rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    row-gap: 1.25rem;
  }
}
.p-shopList__categoryItem {
  text-align: center;
  text-decoration: none;
  color: var(--color-txt-btn);
}
@media screen and (max-width: 991px) {
  .p-shopList__categoryItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (any-hover: hover) {
  .p-shopList__categoryItem:hover .p-shopList__categoryIcon {
    background-color: var(--color-key_bg_l);
  }
}
.p-shopList__categoryItem.is-active {
  color: var(--color_white);
}
.p-shopList__categoryItem.is-active .p-shopList__categoryIcon {
  background: var(--color-key_l);
}
.p-shopList__categoryItem.is-active .p-shopList__categoryText {
  color: var(--color-txt);
  font-weight: 500;
}
.p-shopList__categoryIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: var(--color-search-icon-bg);
  position: relative;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 991px) {
  .p-shopList__categoryIcon {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.p-shopList__categoryIcon img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .p-shopList__categoryIcon img {
    width: 2.375rem;
    height: 2.375rem;
  }
}
.p-shopList__categoryText {
  display: block;
  width: 7.5rem;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 991px) {
  .p-shopList__categoryText {
    width: auto;
    margin-left: 0;
    -webkit-transform: none;
            transform: none;
    max-width: 5rem;
    font-size: 0.8125rem;
  }
}
.p-shopList__initials, .p-shopList__alphabet {
  display: grid;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 991px) {
  .p-shopList__initials, .p-shopList__alphabet {
    gap: 0.625rem;
  }
}
.p-shopList__initials {
  grid-template-columns: repeat(auto-fit, 3.375rem);
}
@media screen and (max-width: 991px) {
  .p-shopList__initials {
    grid-template-columns: repeat(5, 3.375rem);
  }
}
.p-shopList__alphabet {
  grid-template-columns: repeat(13, 3.375rem);
  font-family: var(--font-family-en);
}
@media screen and (max-width: 1280px) {
  .p-shopList__alphabet {
    grid-template-columns: repeat(auto-fit, 3.375rem);
    max-width: none;
  }
}
.p-shopList__initial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  background: var(--color-search-icon-bg);
  color: var(--color-txt);
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-shopList__initial:hover {
    background: var(--color-key_bg_l);
  }
}
.p-shopList__initial.is-active {
  background: var(--color-key_l);
  color: var(--color_white);
}
.p-shopList__cards {
  padding-top: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
  padding-bottom: clamp(5rem, 4.3325242718rem + 2.8478964401vw, 7.75rem);
  background-color: var(--color-card-bg);
}
.p-shopList__cardsInner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-shopList__cardsInner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-shopList__cardsInner {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
.p-shopList__empty {
  width: 100%;
  text-align: center;
}
.p-shopList__emptyTitle {
  margin-bottom: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: bold;
}

.p-shopNewsList__inner {
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-shopNewsList__inner {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .p-shopNewsList__inner {
    width: 91%;
  }
}
.p-shopNewsList__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 2.0625rem;
}
@media screen and (max-width: 991px) {
  .p-shopNewsList__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.125rem;
    margin: 0 auto;
  }
}
.p-shopNewsList__pagination {
  padding-bottom: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
}

.p-floorGuide {
  background: var(--color_white);
}
.p-floorGuide__body {
  margin-bottom: clamp(2.5rem, 1.8774271845rem + 2.6563106796vw, 5.065rem);
}
.p-floorGuide__mapArea {
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-floorGuide__mapArea {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapArea {
    width: 91.4%;
  }
}
.p-floorGuide__mapInner {
  border: 1px solid var(--color-border-box);
  overflow: hidden;
}
.p-floorGuide__mapInner .c-floorNav {
  border-top: none;
}
.p-floorGuide__mapCanvas {
  position: relative;
  min-width: 0;
}
.p-floorGuide__mapIconLegend {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 1.5rem;
  color: var(--color-txt);
  font-size: 0.875rem;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapIconLegend {
    gap: 0.625rem;
    margin: 1rem;
    font-size: 0.6875rem;
  }
}
.p-floorGuide__mapIconLegendItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.p-floorGuide__mapIconLegendItem img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapIconLegendItem img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-floorGuide__mapImage {
  min-width: 0;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapImage {
    overflow-x: auto;
    width: 100%;
    width: max(100%, clamp(23.75rem, 72vw, 45rem));
    padding-right: 1rem;
  }
}
.p-floorGuide__mapImage img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapImage img {
    min-width: 45rem;
  }
}
.p-floorGuide__mapCategoryLegend {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
  max-width: calc(100% - 2rem);
  margin: 1.5rem;
  padding: 0;
  list-style: none;
  color: #323232;
  font-size: 0.875rem;
  line-height: 1.4;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapCategoryLegend {
    position: static;
    right: auto;
    bottom: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.625rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.75rem 1rem 1.25rem;
    font-size: 0.6875rem;
  }
}
.p-floorGuide__mapCategoryLegendItem {
  position: relative;
  padding-left: 1.5rem;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapCategoryLegendItem {
    padding-left: 1.125rem;
  }
}
.p-floorGuide__mapCategoryLegendItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.125rem;
  background: var(--floor-guide-legend-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .p-floorGuide__mapCategoryLegendItem::before {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.p-floorGuide__mapCategoryLegendItem--restaurant {
  --floor-guide-legend-color: var(--color-shop-category_restaurant);
}
.p-floorGuide__mapCategoryLegendItem--service {
  --floor-guide-legend-color: var(--color-shop-category_service);
}
.p-floorGuide__mapCategoryLegendItem--variety {
  --floor-guide-legend-color: var(--color-shop-category_variety);
}
.p-floorGuide__mapCategoryLegendItem--fashion {
  --floor-guide-legend-color: var(--color-shop-category_fashion);
}
.p-floorGuide__mapCategoryLegendItem--jewelry {
  --floor-guide-legend-color: var(--color-shop-category_jewelry);
}
.p-floorGuide__mapCategoryLegendItem--lifebeauty {
  --floor-guide-legend-color: var(--color-shop-category_life);
}
.p-floorGuide__mapCategoryLegendItem--antique {
  --floor-guide-legend-color: var(--color-shop-category_antique);
}
.p-floorGuide__shopArea {
  padding: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem) 0;
  background: var(--color-card-bg);
}
.p-floorGuide__shopInner {
  max-width: 74.875rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-floorGuide__shopInner {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .p-floorGuide__shopInner {
    max-width: 91.4%;
  }
}
.p-floorGuide__shopGroup + .p-floorGuide__shopGroup {
  padding-top: clamp(4rem, 3.7572815534rem + 1.0355987055vw, 5rem);
}
.p-floorGuide__shopGroup--restaurant {
  --floor-shop-color: var(--color-shop-category_restaurant);
}
.p-floorGuide__shopGroup--service {
  --floor-shop-color: var(--color-shop-category_service);
}
.p-floorGuide__shopGroup--variety {
  --floor-shop-color: var(--color-shop-category_variety);
}
.p-floorGuide__shopGroup--fashion {
  --floor-shop-color: var(--color-shop-category_fashion);
}
.p-floorGuide__shopGroup--jewelry {
  --floor-shop-color: var(--color-shop-category_jewelry);
}
.p-floorGuide__shopGroup--lifebeauty {
  --floor-shop-color: var(--color-shop-category_life);
}
.p-floorGuide__shopGroup--antique {
  --floor-shop-color: var(--color-shop-category_antique);
}
.p-floorGuide__shopHeading {
  position: relative;
  margin: 0 0 clamp(1.5rem, 1.3634708738rem + 0.5825242718vw, 2.0625rem);
  padding-left: clamp(1.25rem, 1.2348300971rem + 0.0647249191vw, 1.3125rem);
  color: var(--color-card-header);
  font-size: clamp(1.125rem, 0.9733009709rem + 0.6472491909vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}
.p-floorGuide__shopHeading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(0.25rem, 0.2196601942rem + 0.1294498382vw, 0.375rem);
  height: clamp(1.75rem, 1.567961165rem + 0.7766990291vw, 2.5rem);
  background: var(--floor-shop-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-floorGuide__shopGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__shopGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
  }
}
.p-floorGuide__navArea {
  padding: 4rem 0;
  background: var(--color_white);
}
@media screen and (max-width: 991px) {
  .p-floorGuide__navArea {
    padding: 2.5625rem 0 5.0625rem 0;
  }
}
.p-floorGuide__navInner {
  border: 1px solid var(--color-border-box);
  border-top: none;
  border-bottom: none;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-floorGuide__navInner {
    max-width: 95%;
  }
}

.p-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
  color: var(--color_white);
  background: var(--color-key_l);
}
.p-footer--top, .p-footer--flush {
  margin-top: 0;
}
.p-footer__visual {
  height: clamp(15rem, 8.3252427184rem + 28.4789644013vw, 42.5rem);
}
.p-footer__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer__main {
  background: var(--color-key_l);
  position: relative;
}
.p-footer__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 3.75rem 6.8125rem 4rem 3.5rem;
}
@media screen and (max-width: 991px) {
  .p-footer__inner {
    display: block;
    padding-bottom: 3.5625rem;
    margin: 0 auto;
    padding: 3.4375rem 0;
    max-width: 85%;
  }
}
.p-footer__logo {
  width: 13.125rem;
}
@media screen and (max-width: 991px) {
  .p-footer__logo {
    width: 10.25rem;
    margin-bottom: 0.0625rem;
  }
}
.p-footer__logo a {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.7;
  }
}
.p-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-footer__logo p {
  font-size: clamp(0.6875rem, 0.6723300971rem + 0.0647249191vw, 0.75rem);
}
@media screen and (max-width: 991px) {
  .p-footer__nav {
    padding-top: 3rem;
  }
}
.p-footer__navList {
  display: grid;
  grid-template-columns: repeat(2, 11.25rem);
  gap: 1.5625rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .p-footer__navList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.0625rem;
  }
}
.p-footer__navList a {
  color: var(--color_white);
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__navList a:hover {
    opacity: 0.7;
  }
}
.p-footer__pagetop {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.3125rem;
  height: 2.3125rem;
  border: 1px solid var(--color_white);
  border-radius: 0.125rem;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__pagetop:hover {
    background: rgba(255, 255, 255, 0.16);
    opacity: 0.8;
  }
  .p-footer__pagetop:hover .c-arrowBox--pagetop {
    -webkit-transform: translateY(-0.25rem);
            transform: translateY(-0.25rem);
  }
}
@media screen and (max-width: 991px) {
  .p-footer__pagetop {
    top: 1rem;
    right: 1rem;
    bottom: auto;
  }
}
.p-footer__bottom {
  border-top: 1px solid rgba(244, 153, 160, 0.35);
}
.p-footer__bottomInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 2rem 3.5rem;
}
@media screen and (max-width: 991px) {
  .p-footer__bottomInner {
    display: block;
    padding: 1.625rem 1.5rem 2rem;
  }
}
.p-footer__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .p-footer__subNav {
    gap: 0.875rem 1.5rem;
    margin-bottom: 2.25rem;
    max-width: 95%;
  }
}
.p-footer__subNav a {
  color: var(--color-txt-footer);
  font-size: 0.8125rem;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__subNav a:hover {
    color: var(--color_white);
    opacity: 0.85;
  }
}
.p-footer__copy {
  display: block;
  color: var(--color-txt-footer);
  font-family: var(--font-family-en);
  font-size: clamp(0.5625rem, 0.5169902913rem + 0.1941747573vw, 0.75rem);
  font-weight: 300;
}

.p-news {
  padding-bottom: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
}
.p-news__inner {
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-news__inner {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .p-news__inner {
    max-width: 91.4%;
    padding-top: 0.78125rem;
  }
}
.p-news__pagination .c-pagination {
  margin-top: clamp(2.53125rem, 2.1595873786rem + 1.5857605178vw, 4.0625rem);
}

.p-newsDetail {
  padding: 0 0 clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
}
.p-newsDetail__inner {
  margin: 0 auto;
}
.p-newsDetail__content {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__content {
    width: 91.4%;
  }
}
.p-newsDetail__date {
  display: block;
  padding-bottom: clamp(1rem, 0.8938106796rem + 0.4530744337vw, 1.4375rem);
  color: var(--color-txt);
  font-size: clamp(0.8125rem, 0.7669902913rem + 0.1941747573vw, 1rem);
  font-family: var(--font-family-en);
}
.p-newsDetail__title {
  padding-bottom: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-newsDetail__shop {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
.p-newsDetail__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) 0;
  width: 100%;
  max-width: 56.25rem;
  margin: 0 auto;
}
.p-newsDetail__image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 31.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__image img {
    max-height: 18.75rem;
  }
}
.p-newsDetail__body {
  padding: 0 0 clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem) 0;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__body {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.p-newsDetail__body p {
  margin: 0;
}
.p-newsDetail__body p + p {
  padding-top: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
.p-newsDetail__shopInfo {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
  padding: 2rem 0;
  background: var(--color-shop-info-bg);
}
.p-newsDetail__shopInfoInner {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__shopInfoInner {
    width: 90%;
  }
}
.p-newsDetail__shopInfoTitle {
  margin-bottom: 1.5rem;
}
.p-newsDetail__shopBox {
  display: grid;
  grid-template-columns: 13.75rem 1fr 13.75rem;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__shopBox {
    grid-template-columns: 8.75rem 1fr;
    gap: 1rem;
  }
}
.p-newsDetail__shopLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.6875rem;
  height: 8.4375rem;
  background: var(--color_white);
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__shopLogo {
    width: 8.75rem;
    height: 5.375rem;
  }
}
.p-newsDetail__shopLogo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-newsDetail__shopBody {
  -ms-flex-item-align: start;
      align-self: start;
}
.p-newsDetail__shopGenre {
  padding-bottom: 0.25rem;
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
}
.p-newsDetail__shopName {
  padding-bottom: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  line-height: 1.26;
}
.p-newsDetail__shopMeta {
  margin: 0;
  font-size: 0.875rem;
}
.p-newsDetail__shopMeta span {
  color: var(--color-key);
  margin: 0 0.25rem;
}
.p-newsDetail__shopButton {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__shopButton {
    grid-column: 1/-1;
    margin: 0.5rem auto 0;
  }
}
.p-newsDetail__bottom {
  padding: 4rem 0 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__bottom {
    padding: 2.5rem 0 0;
  }
}
.p-newsDetail__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.p-newsDetail__shareText {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-family-en-accent);
}
.p-newsDetail__shareIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 991px) {
  .p-newsDetail__shareIcons {
    gap: 0.625rem;
  }
}
.p-newsDetail__shareButton {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.p-newsDetail__shareButton img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-newsDetail__backButton {
  margin: 0 auto;
}

.p-shopDetail__breadcrumb {
  padding: 1rem 1.5rem 0;
}
.p-shopDetail__inner {
  max-width: 75rem;
  margin: 0 auto;
  padding-top: 3rem;
}
@media screen and (max-width: 1280px) {
  .p-shopDetail__inner {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .p-shopDetail__inner {
    width: 90%;
    max-width: 37.5rem;
    padding-top: 2rem;
  }
}
.p-shopDetail__head {
  display: grid;
  grid-template-columns: 16.25rem 1fr auto;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__head {
    grid-template-columns: 8.75rem 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.p-shopDetail__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15.625rem;
  height: 10rem;
  border: 1px solid var(--color-border-box);
  background: var(--color_white);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__logo {
    width: 8.75rem;
    height: 5.375rem;
  }
}
.p-shopDetail__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  image-rendering: auto;
}
.p-shopDetail__info {
  -ms-flex-item-align: start;
      align-self: start;
}
.p-shopDetail__kana {
  padding-bottom: 0.25rem;
  font-size: clamp(0.75rem, 0.6741504854rem + 0.3236245955vw, 1.0625rem);
}
.p-shopDetail__name {
  padding-bottom: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}
.p-shopDetail__floor {
  margin: 0;
  font-size: clamp(0.75rem, 0.6741504854rem + 0.3236245955vw, 1.0625rem);
}
.p-shopDetail__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.p-shopDetail__share--pc {
  -ms-flex-item-align: end;
      align-self: end;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__share--pc {
    display: none;
  }
}
.p-shopDetail__share--sp {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__share--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 2.5rem;
  }
}
.p-shopDetail__shareText {
  font-size: 0.875rem;
  font-family: var(--font-family-en-accent);
  line-height: 1;
}
.p-shopDetail__shareIcons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.p-shopDetail__shareButton {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.p-shopDetail__shareButton img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-shopDetail__content {
  display: grid;
  padding-bottom: clamp(2.5rem, 2.2572815534rem + 1.0355987055vw, 3.5rem);
  grid-template-columns: 40rem 1fr;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1280px) {
  .p-shopDetail__content {
    grid-template-columns: 30rem 1fr;
    gap: 2.375rem;
  }
}
@media screen and (max-width: 991px) {
  .p-shopDetail__content {
    display: block;
  }
}
.p-shopDetail__content:not(:has(.p-shopDetail__slider)) {
  grid-template-columns: 1fr;
}
.p-shopDetail__content:not(:has(.p-shopDetail__slider)) .p-shopDetail__text {
  grid-column: 1/-1;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__slider {
    width: 100%;
  }
}
.p-shopDetail__sliderSplide {
  position: relative;
  overflow: hidden;
}
.p-shopDetail__sliderSplide.is-single .p-shopDetail__sliderNav {
  display: none;
}
.p-shopDetail__sliderSplide .splide__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-shopDetail__sliderTrack {
  overflow: hidden;
}
.p-shopDetail__sliderList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.p-shopDetail__sliderSlide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--color_white);
}
.p-shopDetail__sliderImage {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-shopDetail__sliderNav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.6875rem;
  height: clamp(0.5625rem, 0.213592233rem + 1.4886731392vw, 2rem);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__sliderNav {
    margin-top: 0.625rem;
  }
}
.p-shopDetail__sliderArrows {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__sliderArrows {
    display: none;
  }
}
.p-shopDetail__sliderArrow {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__sliderArrow {
    display: none;
  }
}
.p-shopDetail__sliderArrow--prev {
  left: 0;
}
.p-shopDetail__sliderArrow--next {
  right: 0;
}
.p-shopDetail__sliderPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  position: static;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}
.p-shopDetail__sliderPagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  list-style: none;
}
.p-shopDetail__sliderPagination li::marker {
  content: "";
}
.p-shopDetail__sliderPagination .splide__pagination__page {
  display: block;
  width: 0.5625rem;
  height: 0.5625rem;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #C7C7C7;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  opacity: 1;
  overflow: hidden;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-shopDetail__sliderPagination .splide__pagination__page.is-active {
  -webkit-transform: none;
          transform: none;
  background: var(--color-key);
}
.p-shopDetail__text {
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__text {
    padding-top: 1.5rem;
  }
}
.p-shopDetail__text p {
  margin: 0;
}
.p-shopDetail__bottomArea {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem) 0;
  background: var(--color-shop-info-bg);
}
.p-shopDetail__bottomAreaInner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32rem;
  gap: 3rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-shopDetail__bottomAreaInner {
    width: 92%;
    grid-template-columns: minmax(0, 1fr) 28.125rem;
    gap: 1.75rem;
  }
}
@media screen and (max-width: 991px) {
  .p-shopDetail__bottomAreaInner {
    display: block;
    max-width: 37.5rem;
    width: 91%;
  }
}
.p-shopDetail__data, .p-shopDetail__news {
  padding: 2rem clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
  background: var(--color_white);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__news {
    margin-top: 1.5rem;
  }
}
.p-shopDetail__dataTitle {
  margin: 0 0 clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__dataTitle {
    text-align: center;
  }
}
.p-shopDetail__dataList {
  margin: 0;
}
.p-shopDetail__dataRow {
  display: grid;
  grid-template-columns: 9.375rem 1fr;
  gap: 1.5rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--color-border-box);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__dataRow {
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    padding: 1.125rem 0;
  }
}
.p-shopDetail__dataRow dt {
  font-weight: 700;
}
.p-shopDetail__dataRow dd {
  margin: 0;
  min-width: 0;
}
.p-shopDetail__dataRow:first-child dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-shopDetail__dataRow:first-child dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__dataRow:first-child dd {
    gap: 0.75rem;
  }
}
.p-shopDetail__reserveButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem) auto 0;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__reserveButton {
    min-width: 0;
    width: 100%;
  }
}
.p-shopDetail__newsList {
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__newsList {
    gap: 1.75rem;
  }
}
.p-shopDetail__newsItem {
  display: grid;
  grid-template-columns: 8.75rem 1fr;
  gap: 1.25rem;
  color: var(--color-txt);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-shopDetail__newsItem:hover .p-shopDetail__newsImage img {
    opacity: 0.75;
  }
  .p-shopDetail__newsItem:hover .p-shopDetail__newsBody p {
    color: var(--color-key_l);
  }
}
@media screen and (max-width: 991px) {
  .p-shopDetail__newsItem {
    grid-template-columns: 8.75rem 1fr;
    gap: 1.5rem;
  }
}
.p-shopDetail__newsImage {
  aspect-ratio: 1/1;
  border: 1px solid var(--color-border-box);
  overflow: hidden;
}
.p-shopDetail__newsImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-shopDetail__newsBody time {
  display: block;
  margin-bottom: 0.4375rem;
  color: var(--color-txt-note);
  font-family: var(--font-family-en);
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__newsBody time {
    margin-bottom: 0.5625rem;
  }
}
.p-shopDetail__newsBody p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__newsBody p {
    font-size: 0.9375rem;
  }
}
.p-shopDetail__recommend {
  padding-top: clamp(2rem, 1.5145631068rem + 2.071197411vw, 4rem);
}
.p-shopDetail__recommendTitle {
  padding-bottom: 1.5rem;
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendTitle {
    text-align: center;
  }
}
.p-shopDetail__recommendList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendList {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.p-shopDetail__recommendItem {
  display: block;
  padding: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  background: var(--color_white);
  color: var(--color-txt);
  text-decoration: none;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .p-shopDetail__recommendItem:hover {
    -webkit-transform: translateY(-0.125rem);
            transform: translateY(-0.125rem);
    -webkit-box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.1);
  }
  .p-shopDetail__recommendItem:hover .p-shopDetail__recommendImage img {
    opacity: 0.75;
  }
  .p-shopDetail__recommendItem:hover .p-shopDetail__recommendName {
    color: var(--color-key_l);
  }
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendItem {
    display: grid;
    grid-template-columns: 8.75rem 1fr;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-shopDetail__recommendImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 12.9375rem;
  margin-bottom: 1.5rem;
  background: var(--color_white);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendImage {
    width: 8.75rem;
    height: 5.375rem;
    margin-bottom: 0;
  }
}
.p-shopDetail__recommendImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-shopDetail__recommendLead {
  margin: 0 0 0.25rem;
  font-size: clamp(0.75rem, 0.7348300971rem + 0.0647249191vw, 0.8125rem);
}
.p-shopDetail__recommendName {
  margin: 0 0 clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  line-height: 1.26;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-shopDetail__recommendMeta {
  margin: 0;
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
  line-height: 1.8285714286;
}
.p-shopDetail__recommendMeta span {
  margin: 0 0.25rem;
  color: var(--color-key);
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendMeta span {
    margin-right: 0.125rem;
    margin-left: 0.125rem;
  }
}
.p-shopDetail__recommendButton {
  padding-top: clamp(2.5rem, 2.1359223301rem + 1.5533980583vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 991px) {
  .p-shopDetail__recommendButton {
    max-width: 20.625rem;
    margin: 0 auto;
  }
}

.p-tenant__fv {
  position: relative;
  width: 100vw;
  min-height: 36.25rem;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 374px) {
  .p-tenant__fv {
    width: 375px;
    margin-inline: calc(50% - 187.5px);
  }
}
@media screen and (max-width: 991px) {
  .p-tenant__fv {
    min-height: 42.5rem;
  }
}
.p-tenant__fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 991px) {
  .p-tenant__fv::before {
    background: rgba(0, 0, 0, 0.45);
  }
}
.p-tenant__fvImage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-tenant__fvImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  .p-tenant__fvImage img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.p-tenant__fvInner {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 75rem;
  color: var(--color_white);
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .p-tenant__fvInner {
    top: 11.25rem;
    left: 50%;
    max-width: 35rem;
    text-align: left;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-tenant__fvTitle {
  padding: 0 0 clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .p-tenant__fvTitle {
    line-height: 1.8;
    text-align: center;
  }
}
.p-tenant__fvText {
  margin: 0;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .p-tenant__fvText {
    line-height: 2;
    max-width: 35rem;
  }
}
.p-tenant__meritList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5625rem;
}
@media screen and (max-width: 1280px) {
  .p-tenant__meritList {
    gap: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .p-tenant__meritList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}
.p-tenant__meritList figure {
  margin: 0;
  aspect-ratio: 360/220;
  overflow: hidden;
}
.p-tenant__meritList figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-entry-content > .p-tenant__fv:first-child {
  margin-top: calc(-1 * clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem));
}
