@charset "UTF-8";

/* ==========================================================================
   Sections
========================================================================== */
#main>section {
  position: relative;
}

.section {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

:root {
  --gap: 18px;
}

.container .row {
  margin-right: calc(var(--gap)*-1);
  margin-left: calc(var(--gap)*-1);
}

.container,
.row>.col,
.row>[class*="col-"] {
  padding-right: var(--gap);
  padding-left: var(--gap);
}

.row {
  list-style-type: none;
}

@media (max-width: 575px) {
  :root {
    --gap: 12px;
  }

  .container {
    max-width: 90.4%;
  }

  .container .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 992px) {
  .container.container_S {
    max-width: calc(720px + var(--gap)*2);
  }

  .container.gap_M .row {
    --gap: 20px;
  }

  .container.gap_L .row {
    --gap: 24px;
  }
}

@media (min-width: 1200px) {
  .container.container_M {
    max-width: calc(1000px + var(--gap)*2);
  }

  .container.gap_M .row {
    --gap: 22px;
  }

  .container.gap_L .row {
    --gap: 32px;
  }
}

@media (min-width: 1366px) {
  .container {
    max-width: calc(1160px + var(--gap)*2);
  }

  .container.container_L {
    max-width: calc(1280px + var(--gap)*2);
  }

  .container.gap_M .row {
    --gap: 24px;
  }

  .container.gap_ML .row {
    --gap: 30px;
  }

  .container.gap_L .row {
    --gap: 40px;
  }

  .container.gap_XL .row {
    --gap: 72px;
  }
}

@media (min-width: 1441px) {
  .container {
    max-width: 1324px;
  }

  .container.container_M {
    max-width: calc(1160px + var(--gap)*2);
  }

  .container.container_L {
    max-width: calc(1324px + var(--gap)*2);
  }
}

.no-gutters {
  --gap: 0 !important;
}

.gy-1 {
  row-gap: .25rem;
}

.gy-2 {
  row-gap: .5rem;
}

.gy-3 {
  row-gap: 1rem;
}

.gy-4 {
  row-gap: 1.5rem;
}

.gy-5 {
  row-gap: 3rem;
}


hr {
  border-top: 1px solid var(--border1);
  margin: 1em 0;
}

@media (max-width: 991px) {
  ._pc {
    display: none !important;
  }
}

@media (min-width: 992px) {
  ._sp {
    display: none !important;
  }
}

/* ==========================================================================
   Layout
========================================================================== */
.over-right {
  margin-right: calc(((100vw - 100%)/2)*-1);
}

.over-left {
  margin-left: calc(((100vw - 100%)/2)*-1);
}

@media (max-width: 991px) {
  .md-full {
    margin-right: calc(((100vw - 100%)/2)*-1);
    margin-left: calc(((100vw - 100%)/2)*-1);
  }
}

@media (max-width: 767px) {
  .sm-full {
    margin-right: calc(((100vw - 100%)/2)*-1);
    margin-left: calc(((100vw - 100%)/2)*-1);
  }
}

@media (max-width: 575px) {
  .sp-full {
    margin-right: calc(((100vw - 100%)/2)*-1);
    margin-left: calc(((100vw - 100%)/2)*-1);
  }
}

/* ==========================================================================
   Links
========================================================================== */
a {
  color: inherit;
  text-decoration: none;
  transition: .3s;
  transition-property: opacity, transform, color, background, border, border-radius;
}

a img {
  transition: .3s;
  transition-property: opacity, transform;
}

.underline {
  text-decoration: underline;
}

a.link {
  color: var(--color1);
  text-decoration: underline;
}

a.link:hover {
  color: var(--color2);
}

.txt-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 500;
  text-decoration: none;
}

.txt-link span {
  text-decoration: underline;
}

.txt-link>svg.icon {
  width: 1.125em;
  height: 1.125em;
}

a.img-link:hover {
  opacity: .75;
}




nav a {
  display: block;
  text-decoration: none;
}

nav ul {
  border-bottom: 0;
  margin: 0;
  font-feature-settings: "palt";
}

nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}

nav ul li a p {
  margin: 0;
}

nav ul li a span {
  display: block;
}

nav ul li a em {
  display: block;
  font-family: var(--font1);
}


nav ul.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

nav ul.menu li {
  width: calc((100% - 1.5rem)/2);
}

nav ul.menu li a {
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
}

nav ul.menu li a .menu-img {
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
}

nav ul.menu li a .menu-img:not(:last-child) {
  margin-bottom: .75rem;
}

nav ul.menu li a .menu-img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color1-l);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: opacity .3s ease-in-out;
  z-index: 6;
}

nav ul.menu li a:hover .menu-img::before {
  opacity: .4;
}

@media (min-width: 576px) {
  nav ul.menu li {
    width: calc((100% - 1.5rem*2)/3);
  }
}

@media (min-width: 768px) {
  nav ul.menu li {
    width: calc((100% - 1.5rem*3)/4);
  }
}

@media (min-width: 992px) {
  nav ul.menu li {
    width: calc((100% - 1.5rem*2)/3);
  }
}

@media (min-width: 1366px) {
  nav ul.menu {
    column-gap: 2.5rem;
  }

  nav ul.menu li {
    width: calc((100% - 2.5rem*2)/3);
  }
}

/* ==========================================================================
   Image
========================================================================== */
picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

.fit-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.mask-img {
  aspect-ratio: 1/1;
  clip-path: url(#mask-img);
  overflow: hidden;
}

.mask-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img._radius {
  border-radius: .75rem;
}

/* ==========================================================================
   Background Image
========================================================================== */
.main-contents {
  position: relative;
}

[class*="illust_line_"] {
  display: block;
  position: absolute;
  z-index: -1;
}

.illust_line_1,
.illust_line_1r {
  width: 80vw;
  height: 100vw;
  background: url(../img/illust/line_1_sp.svg) no-repeat right 0% top 0% / 142%;
  top: 16rem;
  left: 0;
}

.illust_line_1r {
  top: 50rem;
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}

.illust_line_2 {
  width: 50vw;
  height: 120vw;
  background: url(../img/illust/line_2_sp.svg) no-repeat right 0% top 0% / 142%;
  top: -4rem;
  left: 0;
}

.illust_line_3 {
  width: 65vw;
  height: 175vw;
  background: url(../img/illust/line_3_sp.svg) no-repeat left 0% top 0% / 210%;
  top: 20rem;
  right: 0;
}

.illust_line_4 {
  width: 45vw;
  height: 175vw;
  background: url(../img/illust/line_4.svg) no-repeat left 0% top 0% / 142%;
  top: 16rem;
  right: 0;
}

@media (min-width: 576px) {

  .illust_line_1,
  .illust_line_1r {
    width: 60vw;
  }
}


@media (min-width: 768px) {
  .main-contents._nm {
    margin-top: -2vw;
  }

  .illust_line_1,
  .illust_line_1r {
    width: 40vw;
    height: 50vw;
    background-image: url(../img/illust/line_1.svg);
  }

  .illust_line_1r {
    top: 42rem;
  }

  .illust_line_2 {
    width: 26vw;
    height: 65vw;
    background-image: url(../img/illust/line_2.svg);
    background-size: 148%;
    top: -7em;
  }

  .illust_line_3 {
    width: 40vw;
    height: 80vw;
    background-image: url(../img/illust/line_3.svg);
    background-size: 154%;
    top: 28em;
  }

  .illust_line_4 {
    width: 40vw;
    height: 80vw;
    background-size: 138%;
    top: 20rem;
  }
}


@media (max-width: 767px) {
  .blur-box {
    margin: 0 -20px -15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, .8);
    border-radius: .75rem;
  }
}


/* ==========================================================================
   Typography
========================================================================== */
.huge,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
  position: relative;
}

.huge a,
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
}

.huge {
  font-size: 2.538em;
}

h1,
.h1 {
  font-size: 1.615em;
}

h2,
.h2 {
  font-size: 1.615em;
}

h3,
.h3 {
  font-size: 1.385em;
}

h4,
.h4 {
  font-size: 1.231rem;
}

h5,
.h5 {
  font-size: 1em;
}

h6,
.h6 {
  font-size: 1em;
}

@media (min-width: 992px) {
  .huge {
    font-size: 2.625em;
  }

  h1,
  .h1 {
    font-size: 2.188em;
  }

  h2,
  .h2 {
    font-size: 1.75em;
  }

  h3,
  .h3 {
    font-size: 1.5em;
  }

  h4,
  .h4 {
    font-size: 1.25em;
  }

  h5,
  .h5 {
    font-size: 1.125em;
  }
}

.font1,
.en_ttl {
  font-family: var(--font1);
  letter-spacing: 0;
}

.en_ttl {
  font-weight: 900;
}

.mincho {
  font-family: serif;
}

.gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.copy {
  letter-spacing: .16em;
}

.text-large,
.big {
  font-size: 1.25rem;
}

.txt {
  font-size: .875rem;
}

small,
.small {
  font-size: .813em;
}

.xsmall {
  font-size: .75em;
}

sup {
  font-size: .625em;
  vertical-align: top;
}

sub {
  font-size: .625em;
  vertical-align: bottom;
}

.note {
  font-size: .75em;
  line-height: 1.75;
  display: inline-block;
}

i,
em {
  font-style: normal;
}

p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

.fw-400,
.text-normal {
  font-weight: 400 !important;
}

.fw-500,
.text-medium {
  font-weight: 500 !important;
}

.fw-600,
.text-semibold {
  font-weight: 600 !important;
}

.fw-700,
.text-bold {
  font-weight: 700 !important;
}

.text-italic {
  font-style: italic;
}

.text-justify {
  text-align: justify;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

/* ==========================================================================
   Button
========================================================================== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: .875rem;
  font-family: inherit;
  letter-spacing: .2em;
  line-height: 1.2;
  font-weight: 500;
  font-feature-settings: "palt";
  padding: 0;
  width: 20rem;
  max-width: 100%;
  min-height: 3.5rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 1.75rem;
  vertical-align: bottom;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: .3s;
  transition-property: background, color, border;
}

@media (min-width: 1200px) {
  .btn {
    min-height: 3rem;
  }
}


.btn._btn2 {
  font-weight: 700;
  padding: 1.5em 1em;
  border: 0;
  border-radius: 1.5em;
  color: var(--color1);
}

.btn._btn3 {
  padding: 1.5em;
  border: 0;
  border-radius: 2em / 1.5em;
}

.btn._list-btn {
  width: 100%;
  padding: 1em 2em;
  justify-content: flex-start;
  column-gap: 1em;
  text-align: left;
}

.btn._file {
  column-gap: .5em;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 0 1.125em;
  width: auto;
  min-width: 14em;
  min-height: 3.5rem;
  color: var(--d-gray);
  background: var(--l-gray);
  border: 3px solid var(--border1);
  border-radius: .25rem;
}

@media (max-width: 991px) {
  .btn._file {
    border-width: 2px;
  }
}

.btn._w100 {
  width: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--color1-l);
  }
}

.btn:hover {
  border-color: var(--color1);
  animation: pulse 1s;
  box-shadow: 0 0 0 .5em transparent;
}

.btn._btn3:hover {
  color: var(--black);
}


.btn._color {
  background: var(--color1);
  color: var(--white);
  border-color: var(--color1);
}

.btn._color:hover {
  background: var(--color2);
  color: var(--white);
  border-color: var(--color2);
}

.btn._black {
  background: var(--black);
  color: var(--white);
}

.btn._black:hover {
  background: var(--color1);
  color: var(--white);
  border-color: var(--color1);
}

.btn img {
  display: inline-block;
}

.btn>span {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}

.btn>span::before,
.btn>span::after {
  content: '';
  width: .7rem;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(36deg);
  transform-origin: right center;
}

.btn span::after {
  transform: translateY(-50%) rotate(-36deg);
  transform-origin: right center;
}


.btn svg.icon {
  display: inline-block;
  width: 2.5em;
  aspect-ratio: 1/1;
  object-fit: contain;
  position: absolute;
  left: 1em;
}

.btn._file svg.icon {
  width: 1.5em;
  aspect-ratio: 2/3;
  position: static;
}

.btn b {
  font-size: 1.167em;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}

.btn b svg.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
}

.buttons.row {
  --gap: .25em !important;
  row-gap: calc(var(--gap)*2);
}

.link-tree .btn {
  justify-content: flex-start;
  text-align: left;
  font-weight: 700;
  border-width: 2px;
  border-radius: .5rem;
  padding: 0 3em 0 1em;
  width: 100%;
}

.link-tree .btn>span::before,
.link-tree .btn>span::after {
  right: 1rem;
}

.link-tree .btn small {
  display: block;
  letter-spacing: 0;
}

.link-tree .submenu {
  list-style-type: none;
  margin-top: .75rem;
}

.link-tree .submenu li a {
  display: flex;
  align-items: center;
  position: relative;
}

.link-tree .submenu li a::after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  border: 1px solid var(--black);
  background: var(--black);
  position: absolute;
  top: 50%;
  right: .75rem;
  transform: translateY(-50%);
  transition: .2s;
}

.link-tree .submenu li a>span {
  display: block;
  width: 100%;
  padding: .125em 2em .125em 0;
  position: relative;
  z-index: 2;
}

.link-tree .submenu li a>span::before,
.link-tree .submenu li a>span::after {
  content: '';
  width: .5rem;
  height: 1px;
  border-radius: 1px;
  background: var(--white);
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: rotate(36deg);
  transform-origin: right center;
  transition: .2s;
}

.link-tree .submenu li a span::after {
  transform: translateY(-50%) rotate(-36deg);
  transform-origin: right center;
}

.link-tree .submenu li a:hover::after {
  border-color: var(--border2);
  background: var(--white);
}

.link-tree .submenu li a:hover>span::before,
.link-tree .submenu li a:hover>span::after {
  background: var(--border2);
}

@media (min-width: 1200px) {
  .link-tree .btn {
    min-height: 3.5rem;
  }
}


.share-buttons,
.share-buttons ul {
  color: #000;
  list-style-type: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}

.share-buttons .ttl {
  font-weight: 700;
  margin-right: .5em;
}

.share-buttons ul li a {
  display: block;
}

.share-buttons ul li a svg {
  width: 2.5rem;
}

.share-buttons ul li a:hover {
  color: var(--color1);
}





i.arrow-down {
  width: .7em;
  height: .7em;
  position: relative;
}

i.arrow-down::before,
i.arrow-down::after {
  content: '';
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateX(-32%) rotate(45deg);
  transition: background .2s;
}

i.arrow-down::after {
  left: auto;
  right: 0;
  transform: translateX(32%) rotate(-45deg);
}


/* ==========================================================================
   Search
========================================================================== */
.search-form {
  display: flex;
  align-items: center;
  gap: .75rem;
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: var(--white);
  border: 2px solid var(--black);
  border-radius: .75rem;
  outline: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 16px;
  color: inherit;
  width: 100%;
  transition: border 0.2s ease-out;
}

input[type="search"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color1);
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
  height: 3.6rem;
  padding: 0 1.375em;
}

input[type="search"]+button {
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 0;
  outline: 0;
  background: var(--black);
  color: var(--white);
  transition: .2s;
  transition-property: border, background, transform;
}

input[type="search"]+button svg {
  display: inline-block;
  width: min(2em, 60%);
  aspect-ratio: 1/1;
}

input[type="search"]+button:hover {
  background: var(--color1);
}

::placeholder {
  font-size: .846rem;
  letter-spacing: .16em;
}

@media (min-width: 992px) {
  ::placeholder {
    font-size: 1rem;
  }
}

/* ==========================================================================
   svg icon
========================================================================== */
span[class^="icon_"] {
  display: flex;
  align-items: center;
}

span[class^="icon_"]::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: .25em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

span.icon_tel::before {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2018.2%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m1.63%201.1c-1.63%201.16-1.95%204.78-1.34%207.73.48%202.3%201.5%205.38%203.22%208.29%201.62%202.73%203.87%205.18%205.59%206.6%202.21%201.82%205.36%202.98%206.99%201.82.82-.59%202.05-2.19%202.11-2.47%200%200-.72-1.21-.88-1.48l-2.41-4.07c-.18-.3-1.3-.03-1.87.33-.77.48-1.48%201.76-1.48%201.76-.53.33-.97%200-1.89-.46-1.13-.57-2.41-2.35-3.43-3.96-.93-1.67-1.89-3.67-1.9-5.04-.01-1.11-.11-1.69.38-2.08%200%200%201.36-.19%202.07-.76.53-.43%201.22-1.44%201.04-1.74l-2.41-4.09c-.15-.26-.87-1.48-.87-1.48-.26-.06-2.1.51-2.92%201.1z%22%20fill%3D%22%231d100c%22%2F%3E%3C%2Fsvg%3E');
}

/* ==========================================================================
   Badge
========================================================================== */
.badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: .375em;
  text-align: center;
  border-radius: .375em;
  padding: .4em 1em;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  font-size: .875em;
  line-height: 1;
  letter-spacing: .1em;
  white-space: nowrap;
}

.badge._pickup {
  border-radius: .5em;
  border: 0;
  background: var(--color1);
  color: var(--white);
}

._floor .badge,
.ttl .badge {
  background: var(--black);
  color: var(--white);
}

.badge:has(em) {
  padding: .8em .6em;
  border-radius: .5em;
}

.badge em {
  font-size: 118%;
  font-weight: 700;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.badge[class*=bg-] {
  border-color: transparent;
  color: var(--white);
}

.badge._large {
  min-width: 11em;
}

.badge.font1 {
  font-weight: 900;
  letter-spacing: 0;
}

@media (min-width: 992px) {
  .badge._large {
    font-size: 1rem;
  }
}


/* ==========================================================================
   Border
========================================================================== */
.border {
  border: 1px solid var(--border1);
}

.border-y {
  border-top: 1px solid var(--border1);
  border-bottom: 1px solid var(--border1);
}

.border-x {
  border-right: 1px solid var(--border1);
  border-left: 1px solid var(--border1);
}

.border-t {
  border-top: 1px solid var(--border1);
}

.border-r {
  border-right: 1px solid var(--border1);
}

.border-b {
  border-bottom: 1px solid var(--border1);
}

.border-l {
  border-left: 1px solid var(--border1);
}


/* ==========================================================================
   Headline
========================================================================== */
.section__header {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  position: relative;
}

.section__header .ttl {
  display: inline-block;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .16em;
}

.section__header .en_ttl {
  font-weight: 800;
  line-height: 1;
}

.section__header h2.en_ttl {
  font-size: 2.5rem;
}

@media (min-width: 992px) {
  .section__header {
    flex-direction: row;
    align-items: baseline;
    column-gap: 2rem;
  }
}


.content__header {
  margin-bottom: 1.5em;
}

.content__header .ttl {
  line-height: 1.5;
  position: relative;
}

.content__header h3.ttl {}

.content__header h4.ttl {}

.content__header p {
  margin-top: 1rem;
}


.headline {
  display: flex;
  flex-direction: column;
  row-gap: .25em;
  column-gap: 2em;
  line-height: 1.375;
  margin-bottom: 2rem;
}

.headline .en_ttl {
  font-weight: 700;
  display: block;
}

.headline .ttl {
  display: block;
  letter-spacing: .1em;
}

@media (min-width: 992px) {
  .headline {
    flex-direction: row;
    align-items: center;
    margin-bottom: 3rem;
  }
}



.separate-ttl {
  position: relative;
  padding: 0 7.5%;
  text-align: center;
  letter-spacing: .1em;
  color: var(--d-gray);
}

.separate-ttl::before {
  content: '';
  width: 100%;
  height: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
}

.separate-ttl span {
  position: relative;
  padding: 0 7.5%;
  background: var(--white);
}

.bg-l-gray .separate-ttl span {
  background: var(--l-gray);
}

/* ==========================================================================
   Tab
========================================================================== */
.tabs,
.tabs.row {
  font-size: .875em;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-right: -.5em;
  margin-left: -.5em;
  position: relative;
  z-index: 2;
}

.tabs>li,
.tabs.row>li {
  padding-right: .5em;
  padding-left: .5em;
}

.tabs li>span,
.tabs li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7.5%;
  text-align: left;
  font-size: .875rem;
  font-family: inherit;
  letter-spacing: .05em;
  line-height: 1.2;
  font-weight: 900;
  font-feature-settings: "palt";
  padding: 0 1.5rem;
  width: 100%;
  min-width: 6rem;
  height: 4rem;
  color: var(--white);
  background: var(--black);
  border-radius: .75rem .75rem 0 0;
  vertical-align: bottom;
  text-decoration: none;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: color, background, border;
}

.tabs li:hover>span,
.tabs li:hover>a {
  background: var(--color1);
}

.tabs li.active>span,
.tabs li.active>a {
  color: var(--black);
  background: var(--l-gray);
  cursor: default;
  pointer-events: none;
}

.tabs li.active>span,
.tabs li.active>a {
  cursor: auto;
}

.tabs:not(._group) li:not(.active)>a,
.tabs:not(._group) li:not(.active)>span {
  clip-path: inset(0 0 1px 0);
}

.tabs li .icon {
  display: inline-block;
  width: 2em;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.tabs li i {
  display: inline-block;
}

.tab-panels {
  position: relative;
}

.tabs+.tab-panels:not(._no-border) {
  padding: 2.5rem 7.5%;
}

.tabs+.tab-panels.over-right:not(._no-border) {
  padding-right: 0;
}

.tab-select .tab-panel:not(.active) {
  display: none;
}

@media (max-width: 991px) {
  .tab-select .tabs {
    margin: 0 -18px;
  }

  .tab-select .tab-panels {
    background: var(--l-gray);
    margin: -1px calc(50% - 50vw) 0;
  }

  .tab-select+.buttons {
    background: var(--l-gray);
    margin: -1px calc(50% - 50vw) 0;
    padding: .5rem 0 2.5rem;
  }
}

@media (min-width: 992px) {
  .tabs li {
    min-width: 18%;
  }

  .tabs li>span,
  .tabs li>a {
    height: 5rem;
    border: 2px solid transparent;
    border-bottom: 0;
  }

  .tabs li.active>span,
  .tabs li.active>a {
    background: var(--white);
    border-color: var(--border1);
    color: var(--black);
  }

  .tab-select .tabs:not(._group) li:not(.active)>a,
  .tab-select .tabs:not(._group) li:not(.active)>span {
    clip-path: inset(0 0 2px 0);
  }

  .tabs+.tab-panels:not(._no-border) {
    padding: 2.5rem;
    margin-top: -2px;
    border-radius: 0 .75rem .75rem .75rem;
    border: 2px solid var(--border1);
    background: var(--white);
  }

  .tabs+.tab-panels.over-right:not(._no-border) {
    border-right: 0;
    border-radius: 0 0 0 .75rem;
  }
}

@media (min-width: 1200px) {
  .tabs+.tab-panels:not(._no-border) {
    padding: 3.5rem;
  }
}



.tabs.tab-links li>a {
  justify-content: flex-start;
  height: 3rem;
  border-radius: .5rem;
  border: 0;
}

.tabs.tab-links li>a::before,
.tabs.tab-links li>a::after {
  content: '';
  width: .7rem;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(36deg);
  transform-origin: right center;
}

.tabs.tab-links li>a::after {
  transform: translateY(-50%) rotate(-36deg);
  transform-origin: right center;
}

@media (min-width: 992px) {

  .tabs.tab-links li>span,
  .tabs.tab-links li>a {
    justify-content: flex-start;
    padding: 0 2.5rem;
  }

  .tabs.tab-links li>a {
    height: 3.5rem;
  }
}

@media (min-width: 1200px) {

  .tabs.tab-links li>span,
  .tabs.tab-links li>a {
    padding: 0 3.5rem;
  }

  .tabs+.tab-panels:not(._no-border) {
    padding: 3.5rem;
  }
}


.tabs._group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0;
  margin: 2rem auto;
}

.tabs._group li {
  padding: 0;
  flex-basis: 100%;
  max-width: 19em;
}

.tabs._group li>span {
  column-gap: 1em;
  font-size: 1.25em;
  height: 3.25em;
  border-radius: 0;
  border: 2px solid var(--border1);
}

.tabs._group li.active>span {
  background: var(--white);
  color: var(--d-gray);
}

.tabs._group li:not(:first-child)>span {
  border-left: 0;
}

.tabs._group li:first-child>span {
  border-radius: .5em 0 0 .5em;
}

.tabs._group li:last-child>span {
  border-radius: 0 .5em .5em 0;
}

.tabs._group li>span em {
  font-size: 150%;
}



.tabs-head {
  border-bottom: 2px solid var(--border1);
}

.tabs-head .tabs {
  height: 4rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  margin: 0;
}

.tabs-head .tabs li {
  flex-basis: 50%;
}

.tabs-head .tabs li>a,
.tabs-head .tabs li>span {
  height: auto;
  min-height: 3.25rem;
  padding: .5rem 5%;
  white-space: normal;
  font-weight: 500;
  clip-path: inset(0) !important;
  transition-property: color, background, border, padding;
}

.tabs-head .tabs li.active>a,
.tabs-head .tabs li.active>span {
  background: var(--white);
  border: 2px solid var(--border1);
  border-bottom: 0;
  color: var(--d-gray);
  padding: .75rem 4%;
}

.tabs-head .tabs li.active .icon {
  width: 2.5em;
}

.tabs-head .tabs li em {
  transition: font-size .2s;
}

.tabs-head .tabs li.active em {
  font-size: 127.3%;
  font-weight: 700;
}

@media (min-width: 992px) {
  .tabs-head .tabs {
    height: 5rem;
    column-gap: 3%;
  }

  .tabs-head .tabs li {
    flex-basis: 44%;
  }

  .tabs-head .tabs li>a,
  .tabs-head .tabs li>span {
    font-size: 1.25rem;
  }

  .tabs-head .tabs li.active>a,
  .tabs-head .tabs li.active>span {
    font-size: 1.375rem;
  }

  .tabs-head .tabs li.active .icon {
    width: 2.25em;
  }
}

.triggers {
  --gap: .5rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: .75rem;
  list-style-type: none;
}

.triggers li {
  width: calc(50% - .5rem);
}

.trigger {
  display: inline-flex;
  align-items: center;
  column-gap: .5em;
  font-size: .875rem;
  font-family: inherit;
  letter-spacing: .05em;
  line-height: 1.2;
  font-weight: 500;
  font-feature-settings: "palt";
  padding: 0 1.125em;
  width: 100%;
  min-height: 3.5rem;
  background: var(--black);
  border: 2px solid var(--black);
  color: var(--white);
  border-radius: .25rem;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: .3s;
  transition-property: background, color, border;
}

.trigger[data-tab-target]::before,
.trigger[data-tab-target]::after {
  content: '';
  display: block;
  aspect-ratio: 1/1;
  transition: .2s;
}

.trigger[data-tab-target]::before {
  width: 1.5em;
  border-radius: 100%;
  background: var(--black);
  border: .1em solid currentColor;
  opacity: .5;
  position: absolute;
  right: 1.125em;
}

.trigger[data-tab-target]::after {
  width: .5em;
  border-top: .1em solid currentColor;
  border-left: .1em solid currentColor;
  opacity: .5;
  position: absolute;
  right: 1.125em;
  z-index: 3;
  transform: translate(-100%, -15%) rotate(-135deg);
}

.trigger[data-tab-target].active,
.trigger:not([data-tab-target]) {
  background: var(--white);
  border-color: var(--border1);
  color: var(--d-gray);
  cursor: default;
}

.trigger[data-tab-target].active::before {
  background: transparent;
}

div.trigger {
  font-size: 1rem;
  min-height: 4rem;
}

div.trigger em {
  display: inline-block;
  font-size: 125%;
  line-height: 1;
}

div.trigger small {
  font-size: 89%;
}

div.trigger[data-tab-target]::before {
  display: none;
}

div.trigger[data-tab-target]::after {
  right: 5%;
}

span.trigger+p {
  margin-top: 0;
  line-height: 1.75;
}

@media (min-width: 992px) {
  .triggers li {
    width: 100%;
  }

  span.trigger {
    justify-content: flex-start;
    width: auto;
    padding: 0 2em 0 0;
    line-height: 1.25;
    font-size: inherit;
    max-height: initial;
    background: transparent !important;
    color: inherit;
    border: 0;
  }

  span.trigger>span {
    border-bottom: 1px solid currentColor;
    transform: translateY(-10%);
  }

  span.trigger em {
    transition: .2s;
  }

  span.trigger[data-tab-target]::before {
    right: 0;
    opacity: 1;
  }

  span.trigger[data-tab-target]::after {
    color: var(--white);
    right: 0;
    opacity: 1;
    transform: translate(-115%, 0) rotate(135deg);
  }

  span.trigger.active {
    color: var(--d-gray);
  }

  span.trigger.active em {
    font-size: 146%;
  }

  span.trigger[data-tab-target].active::before {
    background: transparent;
    border: 2px solid var(--gray);
    transform: scale(1.15);
  }

  span.trigger[data-tab-target].active::after {
    border-top: 2px solid var(--gray);
    border-left: 2px solid var(--gray);
    opacity: 1;
    transform: translate(-115%, 0) rotate(135deg) scale(1.15);
  }

  .triggers._reverse span.trigger {
    padding: 0 0 0 2em;
  }

  .triggers._reverse span.trigger[data-tab-target]::before {
    left: 0;
  }

  .triggers._reverse span.trigger[data-tab-target]::after {
    left: 0;
    transform: translate(115%, 0) rotate(-45deg);
  }

  .triggers._reverse span.trigger[data-tab-target].active::after {
    transform: translate(115%, 0) rotate(-45deg) scale(1.15);
  }


  div.trigger {
    font-size: 1.5rem;
    min-height: 5rem;
  }
}


/* ==========================================================================
   Responsive iframe
========================================================================== */
.iframeBox {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.iframeBox iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


/* ==========================================================================
   List
========================================================================== */
li[data-label] {
  list-style-type: none;
  padding-left: 2em;
  position: relative;
}

li[data-label]::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
}

li[data-label]:not(:last-child) {
  margin-bottom: .5em;
}


.lists {
  list-style-type: none;
}

.lists .list {
  border-bottom: 1px solid var(--dd-gray);
}

.list a {
  display: flex;
  line-height: 1.6;
  padding: 2em 3em 2em 0;
  position: relative;
}

.list time {
  display: block;
  flex: 0 0 10em;
}

.list .ttl {
  font-weight: 500;
}

.list .resultcont {
  width: calc(100% - 10rem);
}

.list .resultcont .ttl {
  margin-bottom: 0rem;
}

.list .resultcont .url {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.3;
}

.list .resultcont .read {
  font-size: 0.9rem;
  color: var(--d-gray);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 0.5rem;
}

.list strong {
  color: var(--orange);
}

.list a::before,
.list a::after {
  content: '';
  width: .7rem;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: rotate(36deg);
  transform-origin: right center;
  transition: background .2s;
}

.list a::after {
  transform: translateY(-50%) rotate(-36deg);
  transform-origin: right center;
}

.list a:hover::before,
.list a:hover::after {
  background: var(--color1);
}

@media (min-width: 992px) {
  .list time {
    flex: 0 0 10em;
  }
}

#search-result .list time {
  flex: 0 0 6.5em;
  padding-right: 1em;
}

@media (min-width: 992px) {
  #search-result .list time {
    flex: 0 0 11em;
  }
}

/* ==========================================================================
   Card
========================================================================== */
.cards {
  list-style-type: none;
}

.cards.row {
  row-gap: 1.5rem;
}

.card {
  line-height: 1.5;
  position: relative;
}

.card>a:not(.row) {
  display: block;
}

.card .card-header {
  margin-bottom: 1.25em;
}

.card-img {
  background-color: #FFF;
  aspect-ratio: 1/1;
  border-radius: .75rem;
  margin-bottom: .75rem;
  overflow: hidden;
  position: relative;
}

.card-img:has(.bg_blur) {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card-img .bg_blur {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, .3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.card-img._landscape {
  aspect-ratio: 79 / 51;
}

.card-img._border {
  border: 1px solid var(--border2);
}

.card-img._shoplogo {
  aspect-ratio: auto;
  border: 2px solid var(--border1);
  border-radius: .375rem;
}

.card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.card-img:has(.bg_blur) img {
  object-fit: contain;
}

.card-img[data-category]::after {
  content: attr(data-category);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 2em;
  padding: 0 7%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font1);
  font-size: .846em;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.card-img._cat-color--1::after {
  background: var(--cat-color--1);
}

.card-img._cat-color--2::after {
  background: var(--cat-color--2);
}

.card-img._cat-color--3::after {
  background: var(--cat-color--3);
}

.card-img._cat-color--4::after {
  background: var(--cat-color--4);
}

.card-img._cat-color--5::after {
  background: var(--cat-color--5);
}

.card-img._cat-color--6::after {
  background: var(--cat-color--6);
}

.card-img._shop-color--1::after {
  background: var(--shop-color--1);
}

.card-img._shop-color--2::after {
  background: var(--shop-color--2);
}

.card-img._shop-color--3::after {
  background: var(--shop-color--3);
}

.card-img._shop-color--4::after {
  background: var(--shop-color--4);
}

.card-img._shop-color--5::after {
  background: var(--shop-color--5);
}

.card-img._shop-color--6::after {
  background: var(--shop-color--6);
}


.card-img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color1-l);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 6;
}

a:hover .card-img::before {
  opacity: .4;
}

.card-img+time {
  margin-top: .75rem;
}

.card .card-body {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
}

.card .card-body .ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: .75em;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5;
}

.card .card-body .ttl h5 {
  font-weight: 700;
}

.card .card-body .ttl:has(.badge) {
  flex-wrap: nowrap;
}

.card .card-body .ttl+h5 {
  line-height: 1.25;
}

.card .card-body .ttl .badge {
  padding: .25em .75em;
}

.card .card-body .ttl .badge+h5 {
  line-height: 1.25;
}

.card .card-body .ttl .new {
  font-family: var(--font1);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color2);
}

.card .card-body p {
  font-size: .875em;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.375;
  letter-spacing: 0;
}

.card .card-body p.small {
  font-size: .75em;
}

.card .card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: .5em;
}

.card time {
  display: block;
  text-align: right;
  color: var(--black);
  font-family: var(--font1);
  font-size: .75em;
}

@media (max-width: 991px) {
  .card .card-body .ttl:has(.badge) {
    column-gap: .5em;
  }

  .card .card-body .ttl .badge {
    padding: .2em .5em;
  }
}

@media (min-width: 576px) {
  .card time {
    font-size: .813em;
  }
}

@media (min-width: 992px) {
  .cards.row {
    row-gap: 2rem;
  }

  .card-img[data-category]::after {
    font-size: .875em;
  }

  .card-img._shoplogo {
    border-radius: .5rem;
  }
}




.card._horizontal>a {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card._horizontal .card-img {
  flex: 0 0 160px;
  width: 160px;
  margin-bottom: 0;
}

.card._horizontal time,
.card._md-horizontal time,
.card._lg-horizontal time {
  text-align: left;
}

@media (min-width: 768px) {
  .card._md-horizontal>a {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .card._horizontal .card-img,
  .card._md-horizontal .card-img {
    flex: 0 0 320px;
    width: 320px;
    margin-bottom: 0;
  }

  .card._horizontal .card-body,
  .card._md-horizontal .card-body {
    margin: 0;
    border-radius: .75rem;
    padding: 1em;
    background: var(--white);
  }
}

@media (min-width: 992px) {

  .cards.row:has(._horizontal),
  .cards.row:has(._md-horizontal),
  .cards.row:has(._lg-horizontal) {
    row-gap: 3.5rem;
  }

  .card._lg-horizontal>a {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .card._horizontal .card-img,
  .card._md-horizontal .card-img,
  .card._lg-horizontal .card-img {
    flex: 0 0 240px;
    width: 240px;
    margin-bottom: 0;
  }

  .card._lg-horizontal .card-body {
    border-radius: .75rem;
    padding: 1em;
    background: var(--white);
  }
}



/* ==========================================================================
   Hero
========================================================================== */
.hero {
  color: var(--white);
  background: var(--gray);
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.hero picture.bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero picture.bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero picture.bg-img::before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero .container {
  position: relative;
}

.hero .buttons {
  margin: 1.5rem 0 .75rem;
}

@media (min-width: 992px) {
  .hero {
    padding: 2.5rem 0;
  }
}




/* ==========================================================================
   Color
========================================================================== */
.white {
  color: #FFF;
}

.black {
  color: var(--black);
}

.gray {
  color: var(--gray);
}

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

.blue {
  color: var(--blue);
}

.color1 {
  color: var(--color1);
}

.color2 {
  color: var(--color2);
}

.bg-white {
  background-color: #FFF;
}

.bg-l-gray {
  background-color: var(--l-gray);
}

.bg-color1 {
  background-color: var(--color1);
  color: #FFF;
}

@media (max-width: 991px) {
  .bg-sp-op80 {
    background: rgba(255, 255, 255, .8);
  }
}

.of-hidden {
  overflow: hidden;
}


.bg-shop-color--1 {
  background: var(--shop-color--1);
}

.bg-shop-color--2 {
  background: var(--shop-color--2);
}

.bg-shop-color--3 {
  background: var(--shop-color--3);
}

.bg-shop-color--4 {
  background: var(--shop-color--4);
}

.bg-shop-color--5 {
  background: var(--shop-color--5);
}

.bg-shop-color--6::after {
  background: var(--shop-color--6);
}

.bg-floormap-color--1 {
  background: var(--floormap-color--1);
}

.bg-floormap-color--2 {
  background: var(--floormap-color--2);
}

.bg-floormap-color--3 {
  background: var(--floormap-color--3);
}

.bg-floormap-color--4 {
  background: var(--floormap-color--4);
}

.bg-floormap-color--5 {
  background: var(--floormap-color--5);
}

/* ==========================================================================
   outline
========================================================================== */
.outline {
  width: 100%;
  display: table;
  font-weight: 500;
}

.outline dl {
  display: table-row;
}

.outline dl dt {
  font-weight: 700;
  white-space: nowrap;
  display: table-cell;
  padding: .5em 1em .5em .25em;
  border-bottom: 1px solid var(--border2);
}

.outline dl dd {
  display: table-cell;
  width: 80%;
  padding: .5em 0;
  border-bottom: 1px solid var(--border2);
}

.outline dl:first-child dt,
.outline dl:first-child dd {
  border-top: 1px solid var(--border2);
}

.outline dl dd a:not([href*="tel"]) {
  text-decoration: underline;
}


.outline+.badges .badge {
  font-size: .833em;
  flex-basis: calc((100% - 1rem)/3);
  width: calc((100% - 1rem)/3);
  letter-spacing: .04em;
}

@media (max-width: 991px) {
  .outline+.badges {
    gap: .25rem;
  }

  .outline+.badges .badge {
    flex-basis: calc((100% - .5rem)/3);
    width: calc((100% - .5rem)/3);
  }

  .outline+.badges .badge em {
    font-size: 75%;
    letter-spacing: 0;
  }

  .outline+.badges .badge span {
    transform: scale(.8);
  }
}

@media (min-width: 992px) {
  .outline+.badges .badge {
    font-size: .813em;
  }
}

@media (min-width: 1366px) {
  .outline+.badges .badge {
    font-size: .875em;
  }
}

.articleHeader .outline {
  font-size: 1.077em;
  font-weight: 700;
  line-height: 1.8;
}

.articleHeader .outline dl dt {
  padding: .5em 1em .5em .25em;
  color: var(--border2);
  border-bottom: 1px solid var(--border2);
}

.articleHeader .outline dl dd {
  padding: .5em 0;
  border-bottom: 1px solid var(--border2);
}

@media (min-width: 992px) {
  .articleHeader .outline {
    font-size: 1.313em;
  }
}

/* ==========================================================================
   Table
========================================================================== */
.table {
  background: var(--white);
  border: 2px solid var(--border1);
  padding: .75rem;
  line-height: 1.75;
}

.table table {
  width: 100%;
}

.table table tr>* {
  padding: 1em .75em;
  border-right: 2px solid var(--border1);
  vertical-align: middle;
}

.table table tbody tr>* {
  border-top: 2px solid var(--border1);
}

.table table hr {
  margin: .75em 0;
  border-width: 2px;
}

.table table tr>*:first-child {
  padding-left: 0;
}

.table table tr>*:last-child {
  border-right: 0;
  padding-right: 0;
}

.table table thead tr:first-child>* {
  padding-top: 0;
}

.table table tbody tr:last-child>* {
  padding-bottom: .25em;
}

@media (max-width: 991px) {
  .table {
    font-size: .846em;
    letter-spacing: 0;
  }
}


/* ==========================================================================
   Search
========================================================================== */
.search-ttl {
  font-feature-settings: "palt";
  letter-spacing: .08em;
}

@media (min-width: 992px) {
  .main-contents #search .search-form {
    gap: 2em;
  }

  .main-contents #search input[type="search"]+button {
    flex: 0 0 5.5rem;
    width: 5.5rem;
    height: 5.5rem;
  }
}

/* ==========================================================================
   Archive
========================================================================== */
.archive-menu ul {
  list-style-type: none;
  padding-left: 0;
  row-gap: 1rem;
}

.archive-menu ul.sub-menu,
.archive-menu ul.sub-menu li {
  height: 100%;
}

.archive-menu ul li a {
  height: 100%;
  min-height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  text-align: center;
  padding: .5em;
  color: var(--color1);
  background: var(--white);
  border: 2px solid currentColor;
  border-radius: .375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .1em;
  position: relative;
}

.archive-menu ul li a:hover,
.archive-menu ul li.active a {
  color: var(--d-gray);
  border-color: var(--gray);
}

.archive-menu ul.sub-menu li a i {
  display: none;
}

@media (max-width: 767px) {
  .archive-menu ul.sub-menu li a i {
    display: flex;
    align-items: center;
    width: 3em;
    height: .8em;
    position: relative;
  }

  .archive-menu ul.sub-menu li a i::before {
    content: '';
    display: block;
    width: 3em;
    height: 1.5px;
    background: currentColor;
  }

  .archive-menu ul.sub-menu li i::after {
    content: '';
    display: block;
    width: .6em;
    height: .8em;
    background: currentColor;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    right: -1px;
  }
}

@media (min-width: 575px) {
  .archive-menu ul li a {
    min-height: 3.5em;
  }
}

@media (min-width: 992px) {
  .archive-menu ul li a {
    font-size: .875rem;
    letter-spacing: 0.05rem;
  }
}

/* ==========================================================================
   Toc
========================================================================== */
ul.toc {
  display: flex;
  list-style-type: none;
  row-gap: 1.25rem;
}


ul.toc li a {
  justify-content: flex-start;
  text-align: left;
  border-radius: .25rem .75rem .25rem .25rem;
  padding: .75em 7.5%;
  font-size: 1rem;
  font-weight: 500;
}

ul.toc li a:not(.btn)::after {
  content: '';
  display: block;
  aspect-ratio: 1/1;
  width: .75em;
  border-top: .1em solid currentColor;
  border-left: .1em solid currentColor;
  position: absolute;
  right: 5%;
  z-index: 3;
  transform: translate(-50%, -15%) rotate(-135deg);
  transition: .2s;
}

@media (min-width: 992px) {
  ul.toc li a {
    font-size: 1.25rem;
  }
}


ul.toc li .btn {
  font-size: 1rem;
  justify-content: flex-start;
  text-align: left;
  gap: 1em;
  padding: .75em 12.5%;
  background: var(--black);
  border: 3px solid var(--black);
  color: var(--white);
  border-radius: .25rem .75rem .25rem .25rem;
  animation: none;
}

ul.toc li .btn .icon {
  position: static;
  mix-blend-mode: screen;
  transition: mix-blend-mode .2s;
}

ul.toc li .btn:hover,
ul.toc li .btn.current {
  background: var(--l-gray);
  border-color: var(--border1);
  color: var(--d-gray);
}

ul.toc li .btn:hover .icon,
ul.toc li .btn.current .icon {
  mix-blend-mode: normal;
}

ul.toc li .btn>span::before,
ul.toc li .btn>span::after {
  display: none;
}

@media (max-width: 991px) {
  ul.toc li .btn {
    background: var(--l-gray);
    border-width: 2px;
    border-color: var(--border1);
    color: var(--d-gray);
  }

  ul.toc li .btn .icon {
    mix-blend-mode: normal;
  }
}


.main-contents:has(.sticky_nav) {
  padding-bottom: 5rem;
}

.sticky_nav {
  position: fixed;
  right: 0;
  bottom: 0;
}

.sticky_nav ul.toc {
  gap: 0;
}

.sticky_nav ul.toc li .btn {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: 100%;
  min-height: 5.5rem;
  letter-spacing: .1em;
  line-height: 1.75;
  border-bottom: 0;
}

.sticky_nav ul.toc li .btn>span,
.sticky_nav ul.toc li .btn>b {
  display: block;
  white-space: nowrap;
}

.sticky_nav ul.toc li .btn>span>em {
  font-weight: 700;
  font-size: 145%;
  letter-spacing: 0;
  line-height: 1.25;
}

@media (max-width: 991px) {
  .sticky_nav {
    width: 100%;
    padding: 0 4.8%;
  }

  .sticky_nav ul.toc li {
    flex-basis: 100%;
  }

  .sticky_nav ul.toc li+li {
    margin-left: -2px;
  }

  .sticky_nav ul.toc li .btn {
    height: 100%;
    font-size: .846rem;
    padding: .75em .5em;
    border-radius: .75rem .75rem 0 0;
  }

  .sticky_nav ul.toc li .btn>b {
    font-size: inherit;
  }
}

@media (min-width: 992px) {
  .sticky_nav {
    width: 9rem;
  }

  .sticky_nav ul.toc {
    flex-direction: column;
  }

  .sticky_nav ul.toc li .btn {
    font-size: .75rem;
    border-radius: .75rem 0 0 0;
    padding: 1rem .5rem 2.25rem;
    border-color: var(--white);
    border-right: 0;
    gap: .5em;
  }

  .sticky_nav ul.toc li+li {
    margin-top: -1.25rem;
  }

  .sticky_nav ul.toc li:last-child .btn {
    padding-bottom: 1.25rem;
  }

  .sticky_nav ul.toc li .btn:hover,
  .sticky_nav ul.toc li .btn.current {
    border-color: var(--border1);
  }
}


/* ==========================================================================
   Post
========================================================================== */
.articleHeader {
  line-height: 1.5;
  position: relative;
}

.articleHeader .ttl {
  font-weight: 700;
}

.page-thumbnail img {
  min-width: 100%;
}


article .thumbnail {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
}

article .thumbnail picture {
  font-size: 1.375em;
}

article .thumbnail time {
  display: block;
}

@media (min-width: 992px) {
  article [class*="col-"]:has(.thumbnail) {
    position: relative;
  }

  article .thumbnail {
    font-size: 1.313rem;
    position: sticky;
    top: 55px;
    left: 0;
  }
}

@media (min-width: 1200px) {}


.entry-content {
  padding: 1px 0 1rem;
  font-size: 1.077em;
  font-weight: 500;
  line-height: 1.8;
}

.entry-content>* {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.entry-content>*:first-child {
  margin-top: 1.25rem !important;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-size: revert;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 1.5em;
}

.entry-content a {
  color: var(--color1);
  word-break: break-all;
}

.entry-content>figure {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.entry-content figure img:not(:last-child) {
  margin-bottom: 1.25em;
}

.entry-content p+p img {
  margin-top: 1.5em;
}

.entry-content p:empty {
  margin: 0 !important;
  display: none !important;
}

.entry-content p:empty:before {
  content: initial !important;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25em;
}

@media (min-width: 992px) {
  .entry-content {
    font-size: 1.313em;
  }
}

.document {
  font-size: 1.231em;
  letter-spacing: .02em;
}

.document p {
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 1.5em;
}

.document h1,
.document h2,
.document h3,
.document h4,
.document h5,
.document h6 {
  font-size: revert;
  margin-top: 1.5em;
  line-height: 1.5;
}

.document dl {
  margin-top: 1.5em;
}

.document dl dd {
  padding-left: 1.375em;
}

.document dl dd {
  font-size: 1rem;
  padding-left: 2rem;
}

.document dl dd {
  margin-top: .5em;
}

.document ul,
.document ol {
  padding-left: 1.375em;
  font-size: 1rem;
}

.document li {
  margin-top: .5em;
}

.document ol ol {
  list-style-type: none;
  padding-left: 0;
}

.document ol ol li {
  counter-increment: number;
  margin-bottom: 5px;
}

.document ol ol li::before {
  content: "(" counter(number)") ";
}

.document ol.round {
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 1.5em;
}

.document ol.round li {
  position: relative;
}

.document ol.round li::before {
  content: counter(circle-counter);
  counter-increment: circle-counter;
  position: absolute;
  left: -1.125em;
  top: 0;
}

.document ol.round li::after {
  content: '◯';
  position: absolute;
  left: -1.4em;
  top: 0;
  transform: scale(1.1);
  display: inline-block;
}

@media (min-width: 992px) {
  .document {
    font-size: 1.375em;
  }

  .document p,
  .document dl dd,
  .document ul,
  .document ol {
    font-size: .875rem;
  }
}


.faq {
  counter-reset: faq-counter;
  font-size: .875rem;
}

.faq h2,
.faq h3 {
  font-weight: 600;
  margin-top: 1.5em;
  line-height: 1.5;
}

.faq dl {
  margin-top: 1.5em;
  padding-left: 1.5rem;
}

.faq dl dt {
  counter-increment: faq-counter;
  font-size: 1.25em;
}

.faq dl dt::before {
  /*content: "Q"counter(faq-counter);*/
  content: "Q.";
  position: absolute;
  left: 0;
}

.faq dl dd {
  margin-top: .5em;
}


/* ==========================================================================
   Shop meta
========================================================================== */




.shop-meta {
  font-weight: 700;
  line-height: 1.8;
}

.shop-meta header {
  border-bottom: 1px solid var(--border2);
  padding-bottom: 1em;
}

.shop-meta .row {
  align-items: center;
  row-gap: 1em;
}

article>header .shop-meta {
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 1em 0;
}

article>header .shop-meta>.row {
  row-gap: .75em;
}

.shop-logo picture {
  aspect-ratio: 40 / 21;
  border: 1px solid var(--black);
  border-radius: .375rem;
  overflow: hidden;
}

.shop-logo picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: .375rem;
}

.shop-meta .name {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.shop-meta .name em,
.shop-meta .name h1 {
  display: block;
  font-size: 200%;
  font-weight: inherit;
  line-height: 1;
  margin-bottom: .65rem;
}

.shop-meta .name .meta {
  display: flex;
  flex-direction: column;
  row-gap: .65rem;
  column-gap: 1em;
  white-space: nowrap;
}

.shop-meta .name .meta .badge {
  text-align: left;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: normal;
}

.shop-meta .links {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
}

.shop-meta .links .badges {
  font-size: 1.25em;
}

@media (max-width: 575px) {
  .shop-meta .name h1 {
    font-size: 1.385em;
  }

  .shop-meta .name .meta {
    font-size: .769em;
  }

  .shop-meta .name .meta .badge {
    font-size: inherit;
  }
}

@media (min-width: 992px) {
  .thumbnail .shop-logo picture {
    width: 50%;
    margin-left: auto;
  }

  .shop-meta {
    font-size: 1.313em;
  }

  article>header .shop-meta {
    padding: 1em .5em;
  }

  .shop-meta header {
    padding-bottom: 2em;
  }

  .shop-meta .name .meta {
    flex-direction: row;
    justify-content: space-between;
    line-height: 3;

  }


  .shop-detail.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content 1fr max-content;
  }

  .shop-detail .shop-meta {
    max-width: 100%;
  }

  .shop-detail .shop-thumbnail {
    max-width: 100%;
    grid-row: span 2;
    order: -1;
  }

  .shop-detail .shop-info {
    max-width: 100%;

  }
}




@media (min-width: 1200px) {
  .document-page {
    font-size: .875rem;
  }
}

@media (max-width: 575px) {
  .articleFooter .btn {
    width: 100%;
  }
}

.page-footer {
  margin: 3rem 0 0;
  text-align: center;
}

@media (min-width: 992px) {
  .page-footer {
    margin: 7rem 0 0;
  }
}


@media (min-width: 992px) {
  #eventnews-archive:not(:has(.page-footer)) {
    padding-bottom: .5rem;
  }

  #information-archive:not(:has(.page-footer)) {
    padding-bottom: 3rem;
  }
}


/* ==========================================================================
   Pagination - Archive
========================================================================== */
@media (min-width: 992px) {
  .page-footer:has(.pagination) {
    margin-top: 4rem;
  }
}

.pagination {
  text-align: center;
}

.pagination ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: min(2.5vw, 1.25rem);
  white-space: nowrap;
  padding: 0;
}

.pagination li .page-numbers {
  font-size: 1.313rem;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  border: 3px solid transparent;
  text-decoration: none;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  line-height: 1;
  padding-bottom: .1em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pagination li .dots {
  color: var(--black);
  font-size: 1rem;
  letter-spacing: -.3em;
  width: auto;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.pagination li a.page-numbers:hover,
.pagination li a.page-numbers:focus {
  background: var(--color1);
  cursor: default;
}

.pagination li .page-numbers.current {
  background: transparent;
  color: var(--d-gray);
  border-color: var(--gray);
  width: 2em;
  height: 2em;
  font-size: 1.75rem;
}

.pagination li .prev,
.pagination li .next {
  background: transparent !important;
  color: var(--black);
  border: 0 !important;
  position: relative;
}

.pagination li .next {
  text-align: right;
}

.pagination li .prev::before,
.pagination li .prev::after,
.pagination li .next::before,
.pagination li .next::after {
  content: '';
  width: .7rem;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: rotate(36deg);
  transform-origin: right center;
}

.pagination li .prev::after,
.pagination li .next::after {
  transform: translateY(-50%) rotate(-36deg);
  transform-origin: right center;
}

.pagination li .prev {
  transform: scale(-1, 1);
}



/* ==========================================================================
   Slider (splide.js)
========================================================================== */
.slider .splide__list {
  justify-content: flex-start;
}

.slider .splide__slide {
  width: min(240px, 50vw);
}

.splide__arrows {
  width: 8rem;
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem auto;
}

.splide__arrows._top {
  position: absolute;
  bottom: 100%;
  right: 0;
}

.splide__arrow {
  background: var(--white);
  border: 1px solid currentColor;
  position: static;
  opacity: 1;
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  transform: scale(1);
  transition: color .3s;
}

.splide__arrow--prev {
  transform: scaleX(-1);
}

.splide__arrow svg {
  fill: currentColor;
  width: 35%;
  height: 35%;
  object-fit: contain;
  transform: translateX(7.5%);
}

.splide__arrow:hover {
  color: var(--color1);
  opacity: 1 !important;
}

@media (min-width: 768px) {
  .splide__arrows {
    margin-left: auto;
  }
}

@media (min-width: 1441px) {
  .slider .splide__slide {
    width: 260px;
  }
}


/* sp-slider */
@media (max-width: 991px) {
  .sp-slider .splide__slide {
    width: min(240px, 38vw);
  }
}

@media (min-width: 992px) {
  .sp-slider .slide:not(:last-child) {
    margin-bottom: 2rem;
  }

  .sp-slider .card>a {
    display: flex;
    gap: 1rem;
  }

  .sp-slider .card .card-img {
    flex: 0 0 240px;
    margin-bottom: 0;
  }

  .sp-slider .card .card-body {
    border-radius: .75rem;
    padding: 1em;
    background: var(--white);
  }
}

/* pc-slider */
@media (max-width: 991px) {
  .pc-slider .splide__list {
    display: flex !important;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 2rem;
  }

  .pc-slider .slide {
    flex: 0 0 calc((100% - 3rem)/3);
  }

  .pc-slider .card-img[data-category]::after {
    font-size: .692em;
  }
}

@media (max-width: 767px) {
  .pc-slider .slide {
    flex: 0 0 calc((100% - 1.5rem)/2);
  }
}

@media (min-width: 992px) {
  .pc-slider .splide__slide {
    width: min(240px, 50vw);
  }
}


/* ==========================================================================
   modal
========================================================================== */
.modal {
  background: rgba(51, 51, 51, .3);
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.modal-content {
  max-width: min(90vw, 1000px);
  max-height: min(90vh, 1000px);
  width: fit-content;
  height: fit-content;
  background: var(--white);
  border-radius: .75rem;
  padding: 4rem 5% 5%;
  position: absolute;
  inset: 0;
  margin: auto;
  overflow-y: auto;
}

.modal-content .modal-inner {
  width: 100%;
  height: 100%;
}

.modal-content .modal-inner img {
  display: block;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: '';
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ==========================================================================
   View more accordion
========================================================================== */
.acc-box {
  position: relative;
  height: 25em;
  overflow: hidden;
  transition: .4s;
  box-sizing: border-box;
}

.acc-box:before {
  content: "";
  width: 100%;
  height: 10em;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  transition: .4s;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.acc-box.active:before {
  opacity: 0;
  visibility: hidden;
}

.acc-box-close {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}

.acc-box.active .acc-box-close {
  position: static;
}

.acc-box button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  width: 10em;
  height: 3em;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  margin: 1.5rem auto;
  position: relative;
  z-index: 3;
}

.acc-box button::before,
.acc-box button::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 1px;
  background: currentColor;
  order: 3;
  position: absolute;
  right: 0;
}

.acc-box button::after {
  transform: rotate(90deg);
}

.acc-box.active button::after {
  opacity: 0;
}



/* ==========================================================================
   Scroll box
========================================================================== */
.scroll-box {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: .75rem;
  padding: 1.5em;
  height: min(20rem, 75vh);
  overflow-y: auto;
  line-height: 1.75;
}

.scroll-box .document>*:first-child {
  margin-top: 1rem;
}
