@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

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

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

.no-image img {
  background: #222;
  -o-object-fit: contain !important;
  object-fit: contain !important;
  padding: 1rem;
}

#footer {
  position: relative;
  color: #fff;
  background: #222;
  padding: 10.5rem 0 5.5rem;
  z-index: 10;
}

#footer .main {
  -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: 3.1rem;
  padding-right: 0.6rem;
}

#footer .logo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 22.5rem;
}

#footer .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .logo a:hover {
  opacity: 0.8;
}

#footer .navigation {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6.2rem;
}

#footer .nav {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#footer .menus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

#footer .menu a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .menu a:hover {
  opacity: 0.8;
}

#footer .sns {
  margin-top: 0.3rem;
}

#footer .sns__title {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #9a9a9a;
}

#footer .sns__lists {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 7.5rem;
  margin-top: 1rem;
}

#footer .sns__list a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .sns__list a:hover {
  opacity: 0.8;
}

#footer .contents {
  border-bottom: 1px solid #707070;
  padding-bottom: 2.5rem;
  margin-top: 7.4rem;
}

#footer .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6.8125rem;
}

#footer .contents__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17.875rem;
  flex: 0 0 17.875rem;
  width: 100%;
  max-width: 17.875rem;
}

#footer .contents__logo a,
#footer .image a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .contents__logo a:hover,
#footer .image a:hover {
  opacity: 0.8;
}

#footer .images {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 2.625rem;
}

#footer .box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 4.6875rem;
}

#footer .lists {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4rem;
}

#footer .list a {
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0.075em;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .list a:hover {
  opacity: 0.8;
}

#footer .copyright {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  line-height: 2.4;
  letter-spacing: 0.05em;
  font-weight: 500;
}

#pc-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 110;
}

#pc-header .frame {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 0.75rem 1.6875rem 0.5rem 2rem;
}

#pc-header .contents__logo {
  width: 100%;
  max-width: 9.8125rem;
}

#pc-header .contents__logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#pc-header .contents__logo a:hover {
  opacity: 0.8;
}

#pc-header .language {
  position: relative;
  display: inline-block;
  top: -0.1875rem;
}

#pc-header .language a {
  display: block;
  padding-bottom: 0.5rem;
}

#pc-header .language img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

#pc-header .language-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 12.5rem;
}

#pc-header .language-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

#pc-header .language-menu a:hover {
  background: #f5f5f5;
}

#pc-header .language:hover .language-menu {
  display: block;
}

#pc-header .body {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -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: 1.25rem;
  padding: 1.375rem 3rem 1.75rem 2.625rem;
}

#pc-header .logo {
  width: 100%;
  max-width: 20.19rem;
}

#pc-header .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#pc-header .logo a:hover {
  opacity: 0.8;
}

#pc-header .logo img {
  transition: 0.3s ease-in-out;
}

#pc-header .contents {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-left: auto;
}

#pc-header .nav {
  margin-top: 0.5rem;
}

#pc-header .menus {
  gap: 1.5rem;
}

#pc-header .menu a {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#pc-header .menu a:hover {
  opacity: 0.8;
}

#pc-header.is-change .menu a {
  color: #fff;
}

.l-inner {
  width: 100%;
  max-width: 1272px;
  margin-inline: auto;
  padding: 0 20px;
}

.l-inner-s {
  width: 100%;
  max-width: 856px;
  margin-inline: auto;
  padding: 0 20px;
}

.l-inner-m {
  width: 100%;
  max-width: 1064px;
  margin-inline: auto;
  padding: 0 20px;
}

.c-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem 2rem;
}

.c-blogs .c-blog:nth-child(3n+2) {
  margin-top: 2rem;
}

.c-blogs .c-blog:nth-child(3n+3) {
  margin-top: 4rem;
}

.c-blogs .c-blog a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-blogs .c-blog a:hover {
  opacity: 0.8;
}

.c-blogs .c-blog__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.c-blogs .c-blog__contents {
  margin-top: 0.875rem;
}

.c-blogs .c-blog__title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-blogs .c-blog__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.c-blogs .c-blog__tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.1875rem 0.25rem 0.3125rem;
}

.c-blogs .c-blog__date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.875rem;
}

.c-btn a {
  position: relative;
  display: inline-block;
  min-width: 12.5rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #333;
  padding-bottom: 0.3125rem;
  text-align: left;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn a:hover {
  opacity: 0.8;
}

.c-btn a::before,
.c-btn a::after {
  content: "";
  position: absolute;
  background: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn a::before {
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.c-btn a::after {
  width: 1.875rem;
  height: 1px;
  bottom: 0.25rem;
  right: 0;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.c-btn a:hover::before {
  left: 0.3125rem;
}

.c-btn a:hover::after {
  right: -0.3125rem;
}

.c-btn--white a {
  color: #fff;
}

.c-btn--white a::before,
.c-btn--white a::after {
  background: #fff;
}

.c-category {
  width: 100%;
  max-width: 25rem;
  margin-top: 5.125rem;
}

.c-category .c-category__title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 400;
  padding-left: 1rem;
}

.c-category .c-category__tabs {
  margin-top: 1.25rem;
}

.c-category .c-category__tab a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-category .c-category__en {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-category .c-category__ja {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.c-category .c-category__tab:nth-of-type(1) a {
  --tab-color: #A2D0CF;
  color: var(--tab-color);
}

.c-category .c-category__tab:nth-of-type(2) a {
  --tab-color: #8CAE94;
  color: var(--tab-color);
}

.c-category .c-category__tab:nth-of-type(3) a {
  --tab-color: #9A8DA8;
  color: var(--tab-color);
}

.c-category .c-category__tab:nth-of-type(4) a {
  --tab-color: #C58473;
  color: var(--tab-color);
}

.c-category .c-category__tab:nth-of-type(5) a {
  --tab-color: #BDA793;
  color: var(--tab-color);
}

.c-category .c-category__tab a:hover,
.c-category .c-category__tab.is-active a {
  color: #fff;
  position: relative;
}

.c-category .c-category__tab a:hover::before,
.c-category .c-category__tab.is-active a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: -100vw;
  height: 100%;
  background: var(--tab-color);
  z-index: -2;
}

.c-faq {
  margin-top: 3.25rem;
}

.c-faq .c-faq__item {
  border-top: 1px solid #222;
  padding: 0.9375rem 0.3125rem 0.8125rem;
  cursor: pointer;
}

.c-faq .c-faq__item:last-of-type {
  border-bottom: 1px solid #222;
}

.c-faq .c-faq__question {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.c-faq .c-faq__question::before,
.c-faq .c-faq__question::after {
  content: "";
  position: absolute;
  background: #333;
}

.c-faq .c-faq__question::before {
  width: 1.25rem;
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.c-faq .c-faq__question::after {
  width: 1px;
  height: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.5625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-faq .c-faq__item.open .c-faq__question::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.c-faq .c-faq__en {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 400;
}

.c-faq .c-faq__title {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  padding-right: 30px;
}

.c-faq .c-faq__answer {
  padding: 0 2.5rem 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-faq .c-faq__item.open .c-faq__answer {
  height: auto;
  padding: 0.75rem 2.5rem 0.4375rem;
  overflow: visible;
}

.c-faq .c-faq__text {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0em;
  font-weight: 400;
}

.c-form .group {
  -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.1875rem;
}

.c-form .group:not(:first-of-type) {
  margin-top: 1.5rem;
}

.c-form .row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.c-form .label {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
}

.c-form .required {
  display: inline-block;
  color: #c58473;
}

.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #efeeee;
  padding: 0.625rem 0.5rem 0.75rem;
}

.c-form input[type=text]::-webkit-input-placeholder,
.c-form input[type=email]::-webkit-input-placeholder,
.c-form input[type=tel]::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  color: #ccc;
}

.c-form input[type=text]::-moz-placeholder,
.c-form input[type=email]::-moz-placeholder,
.c-form input[type=tel]::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: #ccc;
}

.c-form input[type=text]:-ms-input-placeholder,
.c-form input[type=email]:-ms-input-placeholder,
.c-form input[type=tel]:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder {
  color: #ccc;
}

.c-form input[type=text]::-ms-input-placeholder,
.c-form input[type=email]::-ms-input-placeholder,
.c-form input[type=tel]::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder {
  color: #ccc;
}

.c-form input[type=text]::placeholder,
.c-form input[type=email]::placeholder,
.c-form input[type=tel]::placeholder,
.c-form textarea::placeholder {
  color: #ccc;
}

.c-form textarea {
  height: 15rem;
  resize: none;
}

.c-form .agree {
  margin-top: 1.125rem;
}

.c-form .checkbox_label {
  position: relative;
  display: inline-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  cursor: pointer;
}

.c-form .link {
  position: relative;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-form .link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -0.3125rem;
  left: 0;
  background: #333;
}

.c-form .link:hover {
  opacity: 0.8;
}

.c-form .checkbox_label input[type=checkbox] {
  display: none;
}

.c-form .custom_checkbox {
  position: relative;
  top: 0.125rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 1px solid #484848;
  border-radius: 50%;
  margin-right: 0.625rem;
  z-index: 1;
}

.c-form .checkbox_label input[type=checkbox]:checked+.custom_checkbox::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #484848;
  border-radius: 50%;
}

.c-form .btn {
  margin-top: 3.4375rem;
  text-align: center;
}

.c-form .btn button {
  width: 100%;
  max-width: 18rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background: #222;
  border: 1px solid #222;
  padding: 0.6875rem 1.25rem 0.9375rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-form .btn button:hover {
  color: #222;
  background: #fff;
}

.c-form .privacy-note {
  font-size: 16px;
}

/* 動的フォーム用 */
#contact-form .inner {
  position: relative;
}

#contact-form .privacy-note {
  position: absolute;
  bottom: 243px;
  left: 44px;
  text-decoration: underline;
  opacity: 0;
}

#contact-form .privacy-note a {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

#contact-form .privacy-note a:hover {
  opacity: 0.8;
}

.c-layout {
  position: relative;
  padding-top: 12.5rem;
}

.c-layout::before {
  content: "";
  position: absolute;
  width: 4.1875rem;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--layout-before-color, #A2D0CF);
  z-index: -1;
}

.c-layout02 {
  padding-top: 9.6875rem;
}

.c-pagenavi {
  margin-top: 3.75rem;
}

.wp-pagenavi {
  position: relative;
  gap: 1rem;
}

.wp-pagenavi .pagenavi-center {
  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: 1rem;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid #a9aaaa;
  padding: 0.25rem 0.4375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.wp-pagenavi .page:hover {
  opacity: 0.7;
}

.wp-pagenavi .current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .prevpostslink {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  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: 1.875rem;
  margin-left: auto;
  border: 1px solid #a9aaaa;
  background: #fff;
  padding: 0.25rem 0.4375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.wp-pagenavi .prevpostslink {
  left: 0;
  right: auto;
}

.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .prevpostslink:hover {
  opacity: 0.7;
}

.wp-pagenavi .nextpostslink img,
.wp-pagenavi .prevpostslink img {
  width: 0.6875rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem 2rem;
}

.c-shops .c-shop a {
  position: relative;
  display: block;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-shop a:hover {
  opacity: 0.8;
}

.c-shops .c-shop__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.c-shops .c-shop__contents {
  padding-right: 2.5rem;
  margin-top: 1.125rem;
}

.c-shops .c-shop__title {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 400;
}

.c-shops .c-shop__row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.c-shops .c-shop__texts {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.025em;
  font-weight: 400;
}

.c-shops .c-shop__text {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-shops .c-shop__text span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-shops .c-shop__hour {
  margin-top: -0.25rem;
}

.c-shops .c-shop__number {
  position: absolute;
  bottom: 0;
  right: 0;
  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;
  width: 2rem;
  height: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  background: #333;
  padding: 0.125rem 0.125rem 0.125rem 0.15rem;
}

.c-title02 {
  padding-left: 5.5rem;
}

.c-title02 .c-title02__en {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}

.c-title02 .c-title02__en span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1428571429;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.c-title02--small .c-title02__en span {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

.c-title03 .c-title03__en {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.c-title03 .c-title03__ja {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 1.125rem;
}

.c-title04 .c-title04__en {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.c-title04 .c-title04__ja {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 1.25rem;
}

.c-title04 .c-title04__ja--big {
  font-size: 1.5rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 500;
}

#access-contents {
  padding: 0 0 4.6875rem;
}

#access-contents .body {
  border-top: 1px solid #A0A0A0;
  padding-top: 4rem;
  margin-top: 6.125rem;
}

#access-contents .title {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 700;
}

#access-contents .text {
  line-height: 1.69;
  margin-top: 2.25rem;
}

#access-contents .map {
  position: relative;
  width: 100%;
  aspect-ratio: 1024/682;
  margin-top: 5rem;
}

#access-contents .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access-contents .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2.5rem;
  margin-top: 2rem;
}

#access-contents .texts {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32rem;
  flex: 0 0 32rem;
}

#access-contents .name {
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
}

#access-contents .address {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 0.125rem;
}

#access-contents .btn {
  position: relative;
  top: -0.375rem;
}

#access-contents .btn a {
  letter-spacing: 0;
}

#access-car .body {
  border-top: 1px solid #A0A0A0;
  padding: 5rem 0 7.5rem;
}

#access-car .title {
  font-size: 1.5rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}

#access-car .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9375rem;
  margin-top: 5.5rem;
}

#access-car .item img {
  -o-object-fit: contain;
  object-fit: contain;
}

#access-train {
  padding: 0 0 10rem;
}

#access-train .body {
  border-top: 1px solid #A0A0A0;
  padding: 5rem 0 0;
}

#access-train .title {
  font-size: 1.5rem;
  line-height: 1.125;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}

#access-train .media {
  -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: 5.625rem;
  margin-top: 5.3125rem;
}

#access-train .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20rem;
  flex: 0 0 20rem;
}

#access-train .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#access-train .texts {
  max-width: 503px;
  margin-left: auto;
}

#access-train .sub-title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0em;
  font-weight: 500;
}

#access-train .text {
  margin-top: 1.25rem;
}

#access-train .note {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 1.25rem;
}

#access-train .box {
  margin-top: 7.5rem;
}

#access-train .box a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7.5rem;
  border: 1px solid #707070;
  padding: 4.1875rem 6.5rem 3.625rem 7.1875rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#access-train .box a:hover {
  color: #fff;
  background: #222;
  border: 1px solid #222;
}

#access-train .box__logo {
  width: 100%;
  max-width: 17.8125rem;
}

#access-train .box__logo img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#access-train .box a:hover .box__logo img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#access-train .box__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  min-width: 25rem;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}

#contact-contents {
  padding: 0 0 3rem;
}

#contact-contents .body {
  margin-top: 1.875rem;
}

#contact-contents .text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0em;
  font-weight: 400;
}

#contact-form {
  padding: 2.8125rem 0 7.5rem;
}

#page-news-detail {
  padding-top: 8.125rem;
}

#page-news-detail::before {
  background: var(--layout-before-color, #8CAE94);
}

#news-detail-fv .inner {
  max-width: 1060px;
  padding: 0 20px 0 4.1875rem;
}

#news-detail-fv .body {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#news-detail-fv .c-title02 {
  padding-left: 0;
}

#news-detail-fv .c-title02__en span:nth-child(2) {
  padding-left: 2.25rem;
}

#news-detail-fv .c-title02__en span:nth-child(3) {
  padding-left: 0.875rem;
}

#news-detail-contents {
  margin-top: 7.5rem;
}

#news-detail-contents .inner {
  max-width: 1000px;
  padding-left: calc(4.1875rem + 20px);
}

#news-detail-contents .title {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 400;
  padding-right: 5rem;
}

#news-detail-contents .tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

#news-detail-contents .tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.1875rem 0.25rem 0.3125rem;
}

#news-detail-contents .date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.875rem;
}

#news-detail-contents .image {
  margin-top: 2.5rem;
}

#news-detail-contents .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

#news-detail-contents .contents {
  width: 100%;
  max-width: 816px;
  padding-bottom: 8.75rem;
  margin-top: 2.5rem;
}

#news-detail-contents .box {
  margin-top: 3.75rem;
}

#news-detail-contents .contents h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 2.5rem;
}

#news-detail-contents .contents p {
  margin-top: 2.5rem;
}

#news-detail-contents .contents .caption {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 0.5rem;
  text-align: right;
}

#news-detail-contents .box {
  color: #fff;
  background: #8CAE94;
  padding: 1.875rem 2rem;
}

#news-detail-contents .box p {
  margin-top: 0;
}

#news-detail-navigation .inner {
  max-width: 1131px;
  padding-left: calc(4.1875rem + 20px);
}

#news-detail-navigation .navigation {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 2.5rem 0 8.9375rem;
}

#news-detail-navigation .navigation__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1rem;
}

#news-detail-navigation .navigation__tag a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.375rem 0.5rem 0.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#news-detail-navigation .navigation__tag a:hover {
  opacity: 0.8;
}

#news-detail-navigation .navigation__links {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 5.375rem;
}

#news-detail-navigation .navigation__link.is-hidden {
  min-width: 9.25rem;
  visibility: hidden;
  pointer-events: none;
}

#news-detail-navigation .navigation__link a {
  min-width: 9.25rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.625rem;
  border: 1px solid #a9aaaa;
  padding: 0.3125rem 0.6875rem 0.4375rem 0.5625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#news-detail-navigation .navigation__link a:hover {
  opacity: 0.8;
}

#news-detail-navigation .navigation__link-text {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}

#news-detail-navigation .navigation__link-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#news-detail-navigation .navigation__link-arrow img {
  width: 0.6875rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#news-detail-navigation .navigation__link--normal a {
  min-width: auto;
  border: none;
  border-bottom: 1px solid #707070;
  padding: 0;
  padding-bottom: 0.1875rem;
}

#news-detail-connection {
  padding: 6.25rem 0;
}

#news-detail-connection .inner {
  max-width: 1131px;
  padding-left: calc(4.1875rem + 20px);
}

#news-detail-connection .c-blogs {
  margin-top: 3.125rem;
}

#news-detail-connection .c-blogs .c-blog:nth-child(3n+2),
#news-detail-connection .c-blogs .c-blog:nth-child(3n+3) {
  margin-top: 0;
}

#news-head {
  overflow: hidden;
}

#news-head .inner {
  max-width: 1366px;
  padding-left: 4.1875rem;
  padding-right: 0;
}

#news-head .c-title02__en span:nth-child(2) {
  padding-left: 5.625rem;
}

#news-head .c-title02__en span:nth-child(3) {
  padding-left: 2.1875rem;
}

#news-head .body {
  -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: 14rem;
}

#news-head .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25rem;
  flex: 0 0 25rem;
}

#news-head .topics {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 52.6%;
  margin-right: calc(52.6% - 50vw);
  margin-top: 0.9375rem;
  overflow: hidden;
}

#news-head .topics__title {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-decoration: underline;
}

#news-head .swiper-container {
  position: relative;
  margin-top: 1.5625rem;
}

#news-head .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#news-head .swiper-slide {
  height: auto;
}

#news-head .slide-item {
  height: 100%;
}

#news-head .slide-item a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#news-head .slide-item a:hover {
  opacity: 0.8;
}

#news-head .slide-item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/420;
}

#news-head .slide-item__contents {
  margin-top: 1rem;
}

#news-head .slide-item__title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#news-head .slide-item__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

#news-head .slide-item__tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.1875rem 0.25rem 0.3125rem;
}

#news-head .slide-item__date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.875rem;
}

#news-contents {
  padding: 5.5rem 0 6.5625rem;
}

#news-contents .inner {
  max-width: 1128px;
  padding-left: calc(4rem + 20px);
}

#news-contents .box,
#tag-search-contents .box {
  border-top: 1px solid #707070;
  padding-top: 2.25rem;
  margin-top: 5rem;
}

#news-contents .box__title,
#tag-search-contents .box__title {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #333;
}

#news-contents .box__tags,
#tag-search-contents .box__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

#news-contents .box__tag a,
#tag-search-contents .box__tag a {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.375rem 0.5rem 0.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#news-contents .box__tag a:hover,
#tag-search-contents .box__tag a:hover {
  opacity: 0.8;
}

#page-tag-search {
  padding-top: 10rem;
}

#tag-search-contents {
  padding: 0 0 6.5625rem;
}

#tag-search-contents .inner {
  max-width: 1128px;
  padding-left: calc(4rem + 20px);
}

#tag-search-contents .head {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}

#tag-search-contents .c-title02 {
  padding-left: 0;
}

#tag-search-contents .description {
  font-size: 1.25rem;
  padding-bottom: 0.3125rem;
}

#tag-search-contents .c-blogs {
  margin-top: 5.5rem;
}

#privacy-contents {
  padding: 0 0 7.75rem;
  overflow: hidden;
}

#privacy-contents .body {
  margin-top: 6.5625rem;
}

#privacy-contents .block {
  border-top: 1px solid #a0a0a0;
  padding: 4rem 0 3.75rem;
}

#privacy-contents .block:last-of-type {
  padding: 4rem 0 0;
}

#privacy-contents .block__inner {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
}

#privacy-contents .texts {
  width: calc(100% - 19.4375rem);
  margin-left: auto;
}

#privacy-contents .title {
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 700;
}

#privacy-contents .text {
  line-height: 1.69;
  margin-top: 2.875rem;
}

#privacy-contents .items {
  margin-top: 2.375rem;
}

#privacy-contents .item {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.9375rem;
}

#privacy-contents .item:not(:first-of-type) {
  margin-top: 2.25rem;
}

#privacy-contents .item__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.5625rem;
  flex: 0 0 16.5625rem;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0em;
  font-weight: 500;
}

#privacy-contents .item__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding-left: 1.9375rem;
}

#privacy-contents .item__list {
  position: relative;
}

#privacy-contents .item__list:not(:first-of-type) {
  margin-top: 1.25rem;
}

#privacy-contents .item__list-number {
  position: absolute;
  width: 1rem;
  height: 1.5rem;
  top: 0;
  left: -1.9375rem;
}

#privacy-contents .item__list-text--mt20 {
  margin-top: 1.25rem;
}

#privacy-contents .item__list-text--mt38 {
  margin-top: 2.375rem;
}

#privacy-contents .table-wrap {
  margin-top: 2.375rem;
}

#privacy-contents .table {
  border-collapse: collapse;
  width: 100%;
}

#privacy-contents .th,
#privacy-contents .td {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
  border: 1px solid #707070;
  text-align: left;
}

#privacy-contents .th {
  padding: 0.875rem 0.3125rem;
  border-left: none;
}

#privacy-contents .td {
  padding: 0.875rem;
}

#privacy-contents .td:last-of-type {
  border-right: none;
}

#privacy-contents .table-wrap01 .th {
  min-width: 17.25rem;
}

#privacy-contents .table-wrap01 .td {
  padding: 0.875rem 0.625rem 0.875rem 2.1875rem;
}

#privacy-contents .table-wrap02 {
  width: calc(100% + 20px + max(0px, (100vw - 1064px) / 2));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#privacy-contents .table-wrap02 .th {
  max-width: 11.5625rem;
  min-width: 11.5625rem;
  padding: 0.875rem 1.25rem 0.875rem 0.625rem;
}

#privacy-contents .table-wrap02 .td {
  max-width: 17.5rem;
  min-width: 17.5rem;
}

#privacy-contents .table-wrap02 .tr:first-of-type .th {
  padding: 1.625rem 1.25rem 1.625rem 0.625rem;
}

#privacy-contents .table-wrap02 .tr:first-of-type .td {
  padding: 1.625rem 0.875rem;
}

#page-shop-detail {
  padding-top: 8.125rem;
}

#shop-detail-fv .inner {
  max-width: 1220px;
  padding: 0 20px 0 4.1875rem;
}

#shop-detail-fv .body {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#shop-detail-fv .c-title02 {
  padding-left: 0;
}

#shop-detail-fv .c-title02__en span:nth-child(2) {
  padding-left: 1.5rem;
}

#shop-detail-contents {
  padding: 7rem 0 3.75rem;
}

#shop-detail-contents .inner {
  max-width: 1131px;
  padding-left: calc(4.1875rem + 20px);
  padding-right: 20px;
}

#shop-detail-contents .row {
  gap: 6.5rem;
}

#shop-detail-contents .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.5rem;
  flex: 0 0 32.5rem;
}

#shop-detail-contents .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

#shop-detail-contents .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 2.25rem;
}

#shop-detail-contents .head {
  border-bottom: 1px solid #707070;
  padding-bottom: 1.875rem;
}

#shop-detail-contents .title {
  font-size: 1.5rem;
  line-height: 1.1666666667;
  letter-spacing: 0.025em;
  font-weight: 400;
}

#shop-detail-contents .sub-title {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.625rem;
}

#shop-detail-contents .box {
  border-bottom: 1px solid #707070;
  padding-bottom: 1.25rem;
  margin-top: 1.25rem;
}

#shop-detail-contents .box__detail,
#shop-detail-contents .box__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#shop-detail-contents .box__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#shop-detail-contents .box__value {
  white-space: pre-line;
}

#shop-detail-contents .box__tel {
  gap: 0.5rem;
  margin-top: 0.3125rem;
}

#shop-detail-contents .text {
  margin-top: 1.875rem;
}

#shop-detail-menu {
  padding: 4rem 0 2.75rem;
}

#shop-detail-menu .inner {
  max-width: 1131px;
  padding-left: calc(4.1875rem + 20px);
  padding-right: 20px;
}

#shop-detail-menu .c-title03__en {
  font-size: 2rem;
  letter-spacing: 0.08em;
}

#shop-detail-menu .no-article,
#shop-detail-news .no-article {
  margin-top: 4rem;
  text-align: center;
}

#shop-detail-menu .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.9375rem;
}

#shop-detail-menu .item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

#shop-detail-menu .item__title {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 1.125rem;
}

#shop-detail-menu .item__text {
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.9375rem;
}

#shop-detail-menu .box {
  color: #fff;
  background: var(--layout-before-color, #A2D0CF);
  padding: 1.5625rem 0 2.1875rem;
  margin-top: 5rem;
}

#shop-detail-menu .box__head {
  border-bottom: 1px solid var(--layout-before-color-border, #c4e1e0);
  padding: 0 2.5rem 2.25rem;
  text-align: center;
}

#shop-detail-menu .box__title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
}

#shop-detail-menu .box__sub-title {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-top: 0.5rem;
}

#shop-detail-menu .dl-container {
  border-bottom: 1px solid var(--layout-before-color-border, #c4e1e0);
  padding: 1.875rem 2.5rem;
}

#shop-detail-menu .dl-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2.5rem;
}

#shop-detail-menu .dl {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
}

#shop-detail-menu .dt {
  min-width: 5rem;
}

#shop-detail-menu .dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#shop-detail-menu .list:not(:first-of-type) {
  margin-top: 0.75rem;
}

#shop-detail-menu .links {
  gap: 2.5rem;
  margin-top: 1.875rem;
}

#shop-detail-menu .link a {
  gap: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#shop-detail-menu .link a:hover {
  opacity: 0.8;
}

#shop-detail-menu .link__text {
  color: #fff;
}

#shop-detail-menu .link__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#shop-detail-menu .link__icon img {
  width: 0.75rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#shop-detail-news {
  padding: 3rem 0 12.8125rem;
}

#shop-detail-news .inner {
  max-width: 1131px;
  padding-left: calc(4.1875rem + 20px);
  padding-right: 20px;
}

#shop-detail-news .c-blogs {
  margin-top: 3.75rem;
}

#shop-detail-news .c-blogs .c-blog:nth-child(3n+2),
#shop-detail-news .c-blogs .c-blog:nth-child(3n+3) {
  margin-top: 0;
}

#shop-contents {
  padding: 0 0 12.5rem;
}

#shop-contents .inner {
  max-width: 1366px;
  padding: 0 20px 0 4.1875rem;
}

#shop-contents .c-title02__en span:nth-child(2) {
  padding-left: 3.125rem;
}

#shop-contents .row {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5.5rem;
}

#shop-contents .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25rem;
  flex: 0 0 25rem;
}

#shop-contents .c-title02 {
  padding-left: 2.5rem;
}

#shop-contents .body {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 42rem;
  flex: 0 0 42rem;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-top: 0.3125rem;
}

#shop-contents .c-shops {
  margin-top: 4.625rem;
}

#terms-contents {
  padding: 0 0 10.25rem;
}

#terms-contents .body {
  margin-top: 10.5rem;
}

#terms-contents .block:not(:first-of-type) {
  margin-top: 3.9375rem;
}

#terms-contents .row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5625rem;
}

#terms-contents .title {
  position: relative;
  max-width: 18.75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 18.75rem;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0em;
  font-weight: 700;
  padding-right: 2.5rem;
}

#terms-contents .title::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 1px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #333;
}

#terms-contents .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#terms-contents .text {
  line-height: 1.69;
  margin-top: 4.25rem;
}

#terms-contents .items {
  margin-top: 2.5rem;
}

#terms-contents .item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5625rem;
}

#terms-contents .item:not(:first-of-type) {
  margin-top: 2.8125rem;
}

#terms-contents .item__title {
  max-width: 18.75rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18.75rem;
  flex: 0 0 18.75rem;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0em;
  font-weight: 500;
}

#terms-contents .item__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#terms-contents .units {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.8125rem;
}

#terms-contents .unit {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 0.9375rem 1.25rem;
}

#terms-contents .unit__title {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}

#terms-contents .lists {
  margin-top: 1.75rem;
}

#terms-contents .list {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}

#top-concept {
  position: relative;
  background-image: url("../images/top/concept-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 11.4375rem 0 0;
  overflow: hidden;
}

#top-concept::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}

#top-concept .inner {
  max-width: 1406px;
  margin-inline: auto;
  padding: 0 20px;
}

#top-concept .wrap {
  max-width: 1160px;
}

#top-concept .contents {
  position: relative;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
}

#top-concept .text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: #fff;
}

#top-concept .btn {
  margin-top: 3.5rem;
}

#top-concept .en {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 9rem;
  line-height: 0.6944444444;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: clamp(75px, 9.9vw, 143px);
  color: #fff;
  margin-top: 5rem;
  text-align: center;
}

#top-fv {
  position: fixed;
  width: 100vw;
  height: calc(100vh - 3.75rem);
  top: 3.75rem;
  left: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: -2;
}

#top-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/fv-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

#top-fv .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

#top-fv .swiper {
  height: 100%;
}

#top-fv .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#top-fv .swiper-slide {
  height: auto;
}

#top-fv .slide-item {
  height: 100%;
}

#top-fv .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#top-fv-title {
  position: relative;
  height: 100vh;
  z-index: -1;
}

#top-fv-title .inner {
  position: relative;
  max-width: 1366px;
  margin-inline: auto;
  height: 100%;
  padding: 0 20px;
  z-index: 1;
}

#top-fv-title .en {
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0.9375rem;
}

#top-fv-title .en span {
  font-family: "Inter", sans-serif;
  font-size: 15rem;
  line-height: 0.75;
  letter-spacing: 0.083em;
  font-weight: 400;
  font-size: clamp(120px, 17.5vw, 240px);
  color: #fff;
  padding-right: 0.3125rem;
}

#top-fv-title .en span.small {
  font-family: "Inter", sans-serif;
  font-size: 6.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: clamp(50px, 18vw, 100px);
  padding-right: 1.875rem;
}

#top-news {
  position: relative;
  background: rgba(245, 245, 245, 0.9);
  padding: 7.5rem 0 7.1875rem;
  overflow: hidden;
}

#top-news .body {
  -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: 6.75rem;
}

#top-news .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 12.8125rem;
  flex: 0 0 12.8125rem;
  margin-top: 2.5rem;
}

#top-news .c-title02 {
  padding-left: 0;
}

#top-news .c-title02__en span {
  font-size: 3rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
}

#top-news .c-title02__en span:nth-child(2) {
  padding-left: 4.6875rem;
}

#top-news .c-title02__en span:nth-child(3) {
  padding-left: 1.875rem;
}

#top-news .btn {
  margin-top: 11.5625rem;
}

#top-news .topics {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 45%;
  margin-right: calc(45% - 50vw);
}

#top-news .swiper-container {
  position: relative;
}

#top-news .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#top-news .swiper-slide {
  height: auto;
}

#top-news .slide-item {
  height: 100%;
}

#top-news .slide-item a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top-news .slide-item a:hover {
  opacity: 0.8;
}

#top-news .slide-item__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 400/420;
}

#top-news .slide-item__contents {
  margin-top: 1rem;
}

#top-news .slide-item__title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#top-news .slide-item__tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

#top-news .slide-item__tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  color: #fff;
  background: #a9aaaa;
  padding: 0.1875rem 0.25rem 0.3125rem;
}

#top-news .slide-item__date {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.875rem;
}

#top-open {
  position: relative;
}

#top-open .head {
  background-image: url("../images/top/open-head-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 17.6875rem 0 12.5rem;
}

#top-open .c-title02 {
  padding-left: 0;
}

#top-open .c-title02__en span {
  font-size: 3rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
}

#top-open .c-title02__en span:nth-child(2) {
  padding-left: 2.8125rem;
}

#top-open .title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 400;
  color: #fff;
  margin-top: 2.625rem;
}

#top-open .box {
  background-image: url("../images/top/open-box-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 22.75rem 0 19.75rem;
}

#top-open .box__text {
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.09em;
  font-weight: 400;
  line-height: 1.33;
  color: #fff;
  text-align: center;
}

#top-shop {
  position: relative;
}

#top-shop .head {
  background-image: url("../images/top/shop-head-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16.875rem 0 20.5rem;
}

#top-shop .c-title02 {
  padding-left: 0;
}

#top-shop .c-title02__en span {
  font-size: 3rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
}

#top-shop .c-title02__en span:nth-child(2) {
  padding-left: 2.8125rem;
}

#top-shop .body {
  background: rgba(245, 245, 245, 0.9);
  padding: 4.0625rem 0 13.75rem;
}

#top-shop .text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.7777777778;
  letter-spacing: 0em;
  font-weight: 400;
}

#top-shop .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 2rem;
  margin-top: 3.75rem;
}

#top-shop .item a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top-shop .item a:hover {
  opacity: 0.8;
}

#top-shop .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

#top-shop .title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.025em;
  font-weight: 400;
  margin-top: 0.9375rem;
}

#top-shop .btn {
  padding-right: 3.96875rem;
  margin-top: -4.71875rem;
  text-align: right;
}

#top-topics {
  position: fixed;
  width: 100vw;
  height: calc(100vh - 3.75rem);
  bottom: 0;
  left: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0.625rem 2.1875rem 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 0;
}

#top-topics.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#top-topics .inner {
  position: relative;
  max-width: 1406px;
  margin-inline: auto;
}

#top-topics .body {
  width: 100%;
  max-width: 31.5625rem;
  margin-left: auto;
}

#top-topics .body a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.5rem;
  background: #222;
  color: #fff;
  border: 1px solid #707070;
  padding: 2.25rem 1rem 2.4375rem 1.8125rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top-topics .body a:hover {
  color: #333;
  background: #fff;
}

#top-topics .head {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 1.5625rem;
}

#top-topics .title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 500;
}

#top-topics .date {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  letter-spacing: 0.075em;
  font-weight: 500;
}

#top-topics .text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.u-target {
  opacity: 0;
  -webkit-transform: translateY(3.125rem);
  transform: translateY(3.125rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.u-target.SlideUp {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-flex {
  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;
}

.u-br {
  display: inline-block;
}

.u-display {
  display: none;
}

@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }

  body {
    font-size: 4.27vw;
  }

  .drawer .icon {
    position: fixed;
    width: 24px;
    height: 12px;
    top: 54px;
    right: 2.13vw;
    cursor: pointer;
    z-index: 250;
  }

  .drawer .icon-bars {
    position: relative;
    width: 24px;
    height: 12px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
  }

  .drawer .icon-bar1,
  .drawer .icon-bar2,
  .drawer .icon-bar3 {
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 1px;
    background: #333;
    top: 0;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  .drawer .icon-bar1 {
    top: 0;
  }

  .drawer .icon-bar2 {
    width: 20px;
    top: 6px;
  }

  .drawer .icon-bar3 {
    width: 16px;
    top: 12px;
  }

  #sp-header.is-open .drawer .icon-bar1,
  #sp-header.is-open .drawer .icon-bar2,
  #sp-header.is-open .drawer .icon-bar3 {
    background: #fff;
  }

  .drawer .icon.is-open .icon-bar1 {
    width: 24px;
    top: calc(50% - 1px);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }

  .drawer .icon.is-open .icon-bar2 {
    display: none;
  }

  .drawer .icon.is-open .icon-bar3 {
    width: 24px;
    top: calc(50% - 1px);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }

  .drawer .icon.is-open {
    z-index: 251;
  }

  .drawer .contents {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background: rgba(0, 0, 0, 0.9);
    padding: 0 5.34vw 16vw;
    padding-top: calc(40px + 32vw);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: scroll;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    z-index: 250;
  }

  .drawer .contents.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .drawer .nav {
    width: 100%;
  }

  .drawer .menu:not(:first-of-type) {
    margin-top: 6.67vw;
  }

  .drawer .menu a {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 5.33vw;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }

  .drawer .sns {
    margin-top: 11.2vw;
  }

  .drawer .sns__title {
    font-family: "Inter", sans-serif;
    font-size: 3.2vw;
    line-height: 1.25;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: #9a9a9a;
  }

  .drawer .sns__lists {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 16vw;
    margin-top: 2.13vw;
  }

  .drawer .sns__list a {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 4.27vw;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: #fff;
  }

  .drawer .box {
    width: 100%;
    border-top: 1px solid #707070;
    padding-top: 12.53vw;
    margin-top: 20vw;
  }

  .drawer .lists {
    width: 100%;
    -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: 1.07vw;
  }

  .drawer .list a {
    font-size: 3.73vw;
    line-height: 1.6428571429;
    letter-spacing: 0.075em;
    font-weight: 500;
    color: #fff;
  }

  .drawer .copyright {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 2.4vw;
    line-height: 2.4;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #fff;
    margin-top: 10vw;
  }

  #sp-header.is-change .drawer .icon-bar1,
  #sp-header.is-change .drawer .icon-bar2,
  #sp-header.is-change .drawer .icon-bar3 {
    background: #fff;
  }

  #footer {
    padding: 19.2vw 0 10.67vw;
  }

  #footer .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 13.33vw;
    padding-right: 0;
  }

  #footer .logo {
    width: 100%;
    max-width: 52vw;
  }

  #footer .logo a:hover {
    opacity: 1;
  }

  #footer .navigation {
    display: block;
    width: 100%;
  }

  #footer .nav {
    -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: 10.67vw;
  }

  #footer .menus {
    gap: 6.67vw;
  }

  #footer .menu a {
    font-size: 5.33vw;
  }

  #footer .menu a:hover {
    opacity: 1;
  }

  #footer .sns {
    margin-top: 11.2vw;
  }

  #footer .sns__title {
    font-size: 3.2vw;
    line-height: 1.25;
    text-align: left;
  }

  #footer .sns__lists {
    gap: 16vw;
    margin-top: 2.13vw;
  }

  #footer .sns__list a {
    font-size: 4.27vw;
  }

  #footer .sns__list a:hover {
    opacity: 1;
  }

  #footer .contents {
    width: 100%;
    max-width: 80vw;
    margin-inline: auto;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 17.07vw;
  }

  #footer .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.87vw;
  }

  #footer .contents__logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 53.07vw;
    margin-right: 8vw;
  }

  #footer .contents__logo a:hover,
  #footer .image a:hover {
    opacity: 1;
  }

  #footer .images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 7.73vw;
  }

  #footer .image {
    width: calc(48% - 3.87vw);
  }

  #footer .image:nth-child(1) {
    width: 100%;
    max-width: 48vw;
    padding-bottom: 5.33vw;
  }

  #footer .image:nth-child(2),
  #footer .image:nth-child(3) {
    padding-bottom: 8vw;
  }

  #footer .image img {
    max-height: 12.53vw;
    -o-object-fit: contain;
    object-fit: contain;
  }

  #footer .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8.53vw;
    border-top: 1px solid #707070;
    margin-top: 12.53vw;
    padding-top: 9.33vw;
  }

  #footer .lists {
    width: 100%;
    -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: 1.07vw;
  }

  #footer .list a {
    font-size: 3.73vw;
  }

  #footer .list a:hover {
    opacity: 1;
  }

  #footer .copyright {
    width: 100%;
    font-size: 2.4vw;
  }

  #sp-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }

  #sp-header .frame {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 0 3.73vw 0 2.93vw;
    padding-top: 10px;
    padding-bottom: 6px;
    z-index: 300;
  }

  #sp-header .language {
    position: relative;
    top: -3px;
  }

  #sp-header .language a {
    position: relative;
  }

  #sp-header .language a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
  }

  #sp-header .language img {
    width: 16px;
    height: 16px;
    -o-object-fit: contain;
    object-fit: contain;
  }

  #sp-header .language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 150px;
  }

  #sp-header .language-menu a {
    display: block;
    font-size: 14px;
    color: #333;
    padding: 5px 10px;
    text-decoration: none;
    white-space: nowrap;
  }

  #sp-header .language-menu a:hover {
    background: #fff;
  }

  #sp-header .language:hover .language-menu {
    display: block;
  }

  #sp-header .body {
    padding: 0 2.13vw 0 3.2vw;
    padding-top: 16px;
  }

  #sp-header .logo,
  #sp-header .logo02 {
    position: relative;
    width: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #sp-header .logo {
    max-width: 147px;
  }

  #sp-header .logo02 {
    max-width: 94px;
  }

  .l-inner,
  .l-inner-s,
  .l-inner-m {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  .c-blogs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 4.8vw;
  }

  .c-blogs .c-blog:nth-child(3n+2),
  .c-blogs .c-blog:nth-child(3n+3) {
    margin-top: 0;
  }

  .c-blogs .c-blog:nth-child(n+3) {
    margin-top: -1.87vw;
  }

  .c-blogs .c-blog:nth-child(2n) {
    margin-top: 8vw;
  }

  .c-blogs .c-blog a:hover {
    opacity: 1;
  }

  .c-blogs .c-blog__contents {
    margin-top: 2.93vw;
  }

  .c-blogs .c-blog__title {
    font-size: 3.73vw;
    -webkit-line-clamp: 3;
  }

  .c-blogs .c-blog__tags {
    gap: 2.13vw;
    margin-top: 2.67vw;
  }

  .c-blogs .c-blog__tag {
    font-size: 2.4vw;
    padding: 0.67vw 1.07vw 0.93vw;
  }

  .c-blogs .c-blog__date {
    font-size: 2.93vw;
    margin-top: 3.2vw;
  }

  .c-btn a {
    min-width: 42.67vw;
    font-size: 4.27vw;
    padding-bottom: 0.8vw;
  }

  .c-btn a:hover {
    opacity: 1;
  }

  .c-btn a::after {
    width: 8vw;
    bottom: 1.07vw;
  }

  .c-btn a:hover::before {
    left: 0;
  }

  .c-btn a:hover::after {
    right: 0;
  }

  .c-btn--white a {
    color: #fff;
  }

  .c-btn--white a::before,
  .c-btn--white a::after {
    background: #fff;
  }

  .c-category {
    width: 100%;
    max-width: 100%;
    margin-top: 12vw;
  }

  .c-category .c-category__title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 400;
    font-size: 3.2vw;
    line-height: 1.16;
    padding-left: 0;
  }

  .c-category__select {
    position: relative;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.025em;
    font-weight: 500;
    font-size: 4.27vw;
    color: #fff;
    background: #A2D0CF;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='17.414'%20height='10.121'%20viewBox='0%200%2017.414%2010.121'%3e%3cpath%20id='パス_222'%20data-name='パス%20222'%20d='M4867.984,1150.961l8,8,8-8'%20transform='translate(-4867.277%20-1150.254)'%20fill='none'%20stroke='%23707070'%20stroke-width='2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 3.28vw center;
    background-size: 5.33vw 5.33vw;
    padding: 2.13vw 3.28vw 2.13vw 4.27vw;
    margin-top: 2.93vw;
    cursor: pointer;
  }

  .c-category__select:focus {
    outline: none;
  }

  .c-category__select[data-selected-category=all] {
    background-color: #A2D0CF;
  }

  .c-category__select[data-selected-category=category-omika-terrace] {
    background-color: #8CAE94;
  }

  .c-category__select[data-selected-category=category-shop-restaurant] {
    background-color: #9A8DA8;
  }

  .c-category__select[data-selected-category=category-spa] {
    background-color: #C58473;
  }

  .c-category__select[data-selected-category=category-hotel] {
    background-color: #BDA793;
  }

  .c-category__select[data-selected-category=category-restaurant] {
    background-color: #8CAE94;
  }

  .c-category__select[data-selected-category=category-cafe-sweets] {
    background-color: #9A8DA8;
  }

  .c-category__select[data-selected-category=category-shop-takeout] {
    background-color: #C58473;
  }

  .c-category__select[data-selected-category=category-service] {
    background-color: #BDA793;
  }

  .c-faq {
    margin-top: 6.4vw;
  }

  .c-faq .c-faq__item {
    padding: 2.93vw 1.33vw 2.93vw 0.27vw;
  }

  .c-faq .c-faq__question {
    gap: 2.13vw;
  }

  .c-faq .c-faq__question::before,
  .c-faq .c-faq__question::after {
    top: 3.73vw;
  }

  .c-faq .c-faq__question::before {
    width: 4.27vw;
  }

  .c-faq .c-faq__question::after {
    height: 4.27vw;
    right: 1.87vw;
  }

  .c-faq .c-faq__en {
    font-size: 5.33vw;
  }

  .c-faq .c-faq__title {
    font-size: 4.27vw;
    padding-right: 8vw;
  }

  .c-faq .c-faq__answer {
    padding: 0 0 0 6.67vw;
  }

  .c-faq .c-faq__item.open .c-faq__answer {
    padding: 2.93vw 0 0.8vw 6.67vw;
  }

  .c-faq .c-faq__text {
    font-size: 3.73vw;
    line-height: 1.71;
  }

  .c-form .group {
    gap: 0.8vw;
  }

  .c-form .group:not(:first-of-type) {
    margin-top: 6.4vw;
  }

  .c-form .row {
    gap: 2.13vw;
  }

  .c-form .label {
    font-size: 4.27vw;
  }

  .c-form .required {
    font-size: 4.27vw;
  }

  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form textarea {
    padding: 2.67vw 2.13vw 3.2vw;
  }

  .c-form textarea {
    height: 64vw;
  }

  .c-form .agree {
    margin-top: 1.87vw;
  }

  .c-form .checkbox_label {
    font-size: 3.73vw;
  }

  .c-form .link::before {
    bottom: -1.33vw;
  }

  .c-form .link:hover {
    opacity: 1;
  }

  .c-form .custom_checkbox {
    top: 0.53vw;
    width: 4.27vw;
    height: 4.27vw;
    margin-right: 2.13vw;
  }

  .c-form .checkbox_label input[type=checkbox]:checked+.custom_checkbox::after {
    width: 2.13vw;
    height: 2.13vw;
  }

  .c-form .btn {
    margin-top: 13.87vw;
  }

  .c-form .btn button {
    max-width: 76.8vw;
    font-size: 4.27vw;
    padding: 2.93vw 5.33vw 4vw;
  }

  .c-form .btn button:hover {
    color: #fff;
    background: #222;
  }

  /* 動的フォーム用 */
  #contact-form .inner {
    position: relative;
  }

  #contact-form .privacy-note {
    position: absolute;
    bottom: auto;
    left: min(78px, 11.3vw);
    font-size: 3.73vw;
    text-decoration: underline;
    opacity: 0;
  }

  #contact-form .privacy-note a {
    font-size: 3.73vw;
  }

  #contact-form .privacy-note a:hover {
    opacity: 1;
  }

  .c-layout {
    padding-top: calc(58px + 15.47vw);
  }

  .c-layout::before {
    display: none;
  }

  .c-layout02 {
    padding-top: calc(58px + 11.2vw);
  }

  .c-pagenavi {
    margin-top: 8.53vw;
  }

  .wp-pagenavi {
    gap: 4.27vw;
  }

  .wp-pagenavi .pagenavi-center {
    gap: 4.27vw;
  }

  .wp-pagenavi .page,
  .wp-pagenavi .current {
    font-size: 5.33vw;
    padding: 1.07vw 1.87vw;
  }

  .wp-pagenavi .page:hover {
    opacity: 1;
  }

  .wp-pagenavi .nextpostslink {
    min-height: 8vw;
    padding: 1.07vw 1.87vw;
  }

  .wp-pagenavi .nextpostslink:hover {
    opacity: 1;
  }

  .wp-pagenavi .nextpostslink img {
    width: 2.93vw;
  }

  .c-shops {
    grid-template-columns: 1fr;
    gap: 10.67vw;
  }

  .c-shop a:hover {
    opacity: 1;
  }

  .c-shops .c-shop__contents {
    padding-right: 9vw;
    margin-top: 4.27vw;
  }

  .c-shops .c-shop__title {
    font-size: 5.33vw;
  }

  .c-shops .c-shop__row {
    gap: 5.33vw;
    margin-top: 1.33vw;
  }

  .c-shops .c-shop__texts {
    font-size: 3.73vw;
  }

  .c-shops .c-shop__hour {
    margin-top: -1.07vw;
  }

  .c-shops .c-shop__number {
    width: 8.53vw;
    height: 8.53vw;
    font-size: 5.33vw;
    padding: 0.8vw 0.53vw 0.53vw;
  }

  .c-title02 {
    padding-left: 0;
  }

  .c-title02 .c-title02__en span {
    font-size: 6.4vw;
    line-height: 1.33;
    letter-spacing: 0.05em;
  }

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

  .c-title03 .c-title03__en {
    font-size: 6.4vw;
    letter-spacing: 0.08em;
  }

  .c-title03 .c-title03__ja {
    font-size: 3.73vw;
    margin-top: 2.13vw;
  }

  .c-title04 .c-title04__en {
    font-size: 6.4vw;
    line-height: 1.33;
  }

  .c-title04 .c-title04__ja {
    font-size: 3.73vw;
    line-height: 1.21;
    margin-top: 5.87vw;
  }

  #access-contents {
    padding: 0 0 20.53vw;
  }

  #access-contents .body {
    padding-top: 14.67vw;
    margin-top: 13.33vw;
  }

  #access-contents .title {
    font-size: 4.8vw;
  }

  #access-contents .text {
    line-height: 1.75;
    padding-right: 0.53vw;
    margin-top: 8vw;
  }

  #access-contents .map {
    aspect-ratio: 334/223;
    margin-top: 8vw;
  }

  #access-contents .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.33vw;
    margin-top: 5.33vw;
  }

  #access-contents .texts {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #access-contents .name {
    font-size: 4.27vw;
    line-height: 1.75;
  }

  #access-contents .address {
    font-size: 4vw;
    line-height: 1.87;
    margin-top: 1.6vw;
  }

  #access-contents .btn {
    width: 100%;
    top: 0;
    text-align: center;
  }

  #access-contents .btn a {
    min-width: 50.67vw;
    letter-spacing: 0.05em;
  }

  #access-car .body {
    padding: 12.8vw 0 21.33vw;
  }

  #access-car .title {
    font-size: 5.33vw;
    line-height: 1.35;
  }

  #access-car .items {
    grid-template-columns: 1fr;
    gap: 12.8vw;
    padding: 0vw 1.87vw;
    margin-top: 10.67vw;
  }

  #access-train {
    padding: 0 0 21.33vw;
  }

  #access-train .body {
    padding: 12.8vw 0 0;
  }

  #access-train .title {
    font-size: 5.33vw;
    line-height: 1.35;
  }

  #access-train .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12.8vw;
    margin-top: 10.67vw;
  }

  #access-train .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding: 0vw 1.87vw;
  }

  #access-train .texts {
    max-width: 100%;
  }

  #access-train .sub-title {
    font-size: 4.8vw;
  }

  #access-train .text {
    margin-top: 5.33vw;
  }

  #access-train .note {
    font-size: 3.73vw;
    line-height: 1.71;
    margin-top: 5.33vw;
  }

  #access-train .box {
    margin-top: 21.33vw;
  }

  #access-train .box a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.13vw;
    padding: 9.6vw 12vw 7.47vw;
  }

  #access-train .box a:hover {
    color: #222;
    background: #fff;
    border: 1px solid #707070;
  }

  #access-train .box__logo {
    max-width: 60.53vw;
    margin-right: 2.67vw;
  }

  #access-train .box a:hover .box__logo img {
    -webkit-filter: none;
    filter: none;
  }

  #access-train .box__text {
    min-width: 100%;
    font-size: 4.27vw;
    line-height: 1.69;
  }

  #contact-contents {
    padding: 0 0 8.53vw;
  }

  #contact-contents .body {
    margin-top: 8.53vw;
  }

  #contact-contents .text {
    font-size: 4vw;
    line-height: 1.73;
  }

  #contact-form {
    padding: 8.53vw 0 26.67vw;
  }

  #page-news-detail {
    padding-top: calc(58px + 13.87vw);
  }

  #news-detail-fv {
    display: none;
  }

  #news-detail-contents {
    margin-top: 0;
  }

  #news-detail-contents .inner {
    max-width: 100%;
    padding-left: 5.33vw;
  }

  #news-detail-contents .title {
    font-size: 4.8vw;
    line-height: 1.56;
    padding-right: 0;
  }

  #news-detail-contents .tags {
    gap: 2.13vw;
    margin-top: 3.73vw;
  }

  #news-detail-contents .tag {
    font-size: 3.2vw;
    padding: 0.8vw 1.07vw 1.07vw;
  }

  #news-detail-contents .date {
    font-size: 3.2vw;
    margin-top: 3.73vw;
  }

  #news-detail-contents .image {
    margin-top: 4.27vw;
  }

  #news-detail-contents .contents {
    max-width: 100%;
    padding-bottom: 14.93vw;
    margin-top: 4.27vw;
  }

  #news-detail-contents .contents h2 {
    font-size: 5.33vw;
    margin-top: 16vw;
  }

  #news-detail-contents .contents p {
    margin-top: 10.67vw;
  }

  #news-detail-contents .contents .caption {
    font-size: 3.2vw;
    margin-top: 2.13vw;
  }

  #news-detail-contents .box {
    padding: 3.73vw 4.27vw;
    margin-top: 16vw;
  }

  #news-detail-contents .box p {
    margin-top: 0;
  }

  #news-detail-navigation .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #news-detail-navigation .navigation {
    padding: 8vw 0 20.8vw;
  }

  #news-detail-navigation .navigation__tags {
    gap: 2.13vw;
  }

  #news-detail-navigation .navigation__tag a {
    font-size: 3.73vw;
    padding: 1.33vw 2.13vw 1.87vw;
  }

  #news-detail-navigation .navigation__tag a:hover {
    opacity: 1;
  }

  #news-detail-navigation .navigation__links {
    margin-top: 14.67vw;
  }

  #news-detail-navigation .navigation__link.is-hidden {
    min-width: auto;
  }

  #news-detail-navigation .navigation__link a {
    min-width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    padding: 3.33vw 2.13vw;
  }

  #news-detail-navigation .navigation__link a:hover {
    opacity: 1;
  }

  #news-detail-navigation .navigation__link-text {
    display: none;
  }

  #news-detail-navigation .navigation__link-arrow img {
    width: 2.93vw;
  }

  #news-detail-navigation .navigation__link--normal a {
    font-size: 4.27vw;
    padding-bottom: 0.8vw;
  }

  #news-detail-connection {
    padding: 10.67vw 0 32vw;
    overflow: hidden;
  }

  #news-detail-connection .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #news-detail-connection .swiper-container {
    position: relative;
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 10.13vw;
  }

  #news-detail-connection .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }

  #news-detail-connection .swiper-slide {
    height: auto;
  }

  #news-detail-connection .c-blog {
    height: 100%;
  }

  #news-head .inner {
    max-width: 100%;
    padding: 0;
    padding-left: 5.33vw;
  }

  #news-head .c-title02__en span:nth-child(2) {
    padding-left: 9.6vw;
  }

  #news-head .c-title02__en span:nth-child(3) {
    padding-left: 3.73vw;
  }

  #news-head .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  #news-head .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding-right: 5.33vw;
  }

  #news-head .c-category {
    padding-right: 5.33vw;
    margin-top: 4.8vw;
  }

  #news-head .topics {
    position: relative;
    top: -6.4vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-right: 0;
  }

  #news-head .topics__title {
    font-size: 4.27vw;
    padding: 0 4vw 0 5.33vw;
    text-align: right;
  }

  #news-head .swiper-container {
    margin-top: 4.53vw;
  }

  #news-head .slide-item a:hover {
    opacity: 1;
  }

  #news-head .slide-item__image img {
    aspect-ratio: 1/1;
  }

  #news-head .slide-item__contents {
    margin-top: 4.27vw;
  }

  #news-head .slide-item__tags {
    font-size: 4.8vw;
    -webkit-line-clamp: 2;
  }

  #news-head .slide-item__tags {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  #news-head .slide-item__tag {
    font-size: 2.4vw;
    padding: 0.67vw 1.07vw 0.93vw;
  }

  #news-head .slide-item__date {
    font-size: 2.93vw;
    margin-top: 3.73vw;
  }

  #news-contents {
    padding: 14.4vw 0 18.4vw;
  }

  #news-contents .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #news-contents .box,
  #tag-search-contents .box {
    padding-top: 9.33vw;
    margin-top: 9.6vw;
  }

  #news-contents .box__title,
  #tag-search-contents .box__title {
    font-size: 3.73vw;
  }

  #news-contents .box__tags,
  #tag-search-contents .box__tags {
    gap: 2.13vw 2.13vw;
    margin-top: 7.47vw;
  }

  #news-contents .box__tag a,
  #tag-search-contents .box__tag a {
    font-size: 3.73vw;
    padding: 1.33vw 2.13vw 1.87vw;
  }

  #news-contents .box__tag a:hover,
  #tag-search-contents .box__tag a:hover {
    opacity: 1;
  }

  #page-tag-search {
    padding-top: calc(58px + 15.47vw);
  }

  #tag-search-contents {
    padding: 0 0 18.4vw;
  }

  #tag-search-contents .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #tag-search-contents .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.56vw;
  }

  #tag-search-contents .description {
    font-size: 4.27vw;
    padding-bottom: 0;
  }

  #tag-search-contents .c-blogs {
    margin-top: 14.4vw;
  }

  #privacy-contents {
    padding: 0 0 26.13vw;
  }

  #privacy-contents .body {
    margin-top: 13.87vw;
  }

  #privacy-contents .block {
    padding: 12.8vw 0;
  }

  #privacy-contents .block:last-of-type {
    padding: 12.8vw 0 0;
  }

  #privacy-contents .texts {
    width: 100%;
  }

  #privacy-contents .title {
    font-size: 4.8vw;
    line-height: 1.67;
  }

  #privacy-contents .text {
    line-height: 1.75;
    word-break: break-all;
    margin-top: 6.93vw;
  }

  #privacy-contents .items {
    margin-top: 9.6vw;
  }

  #privacy-contents .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7.47vw;
  }

  #privacy-contents .item:not(:first-of-type) {
    margin-top: 7.47vw;
  }

  #privacy-contents .item__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    font-size: 4.27vw;
    line-height: 1.75;
  }

  #privacy-contents .item__contents {
    padding-left: 0;
  }

  #privacy-contents .item--pl .item__contents {
    padding-left: 5.87vw;
  }

  #privacy-contents .item__list:not(:first-of-type) {
    margin-top: 5.33vw;
  }

  #privacy-contents .item__list-number {
    width: 4.27vw;
    height: 6.4vw;
    left: -5.87vw;
  }

  #privacy-contents .item__list-text--mt24 {
    margin-top: 6.4vw;
  }

  #privacy-contents .item__list-text--mt40 {
    margin-top: 10.67vw;
  }

  #privacy-contents .table-wrap {
    margin-top: 10.67vw;
    width: 100%;
    width: 88.53vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #privacy-contents .table {
    width: 100%;
  }

  #privacy-contents .th,
  #privacy-contents .td {
    font-size: 4vw;
  }

  #privacy-contents .th {
    padding: 3.73vw 1.33vw;
  }

  #privacy-contents .td {
    padding: 3.73vw;
  }

  #privacy-contents .table-wrap01 table {
    width: 152.8vw;
  }

  #privacy-contents .table-wrap01 .th {
    max-width: 64vw;
    min-width: 64vw;
  }

  #privacy-contents .table-wrap01 .td {
    padding: 3.73vw 2.67vw 3.73vw 4vw;
  }

  #privacy-contents .table-wrap02 {
    width: 100%;
    width: 88.53vw;
  }

  #privacy-contents .table-wrap02 table {
    width: 343.47vw;
  }

  #privacy-contents .table-wrap02 .th {
    max-width: 48vw;
    min-width: 48vw;
    padding: 3.73vw 2.67vw 3.73vw 4vw;
  }

  #privacy-contents .table-wrap02 .td {
    max-width: 74.67vw;
    min-width: 74.67vw;
  }

  #privacy-contents .table-wrap02 .tr:first-of-type .th {
    padding: 6.93vw 2.67vw 6.93vw 4vw;
  }

  #privacy-contents .table-wrap02 .tr:first-of-type .td {
    padding: 6.93vw 3.73vw;
  }

  #page-shop-detail {
    padding-top: calc(58px + 13.87vw);
  }

  #shop-detail-fv {
    display: none;
  }

  #shop-detail-contents {
    padding: 0 0 8.53vw;
  }

  #shop-detail-contents .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #shop-detail-contents .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  #shop-detail-contents .head {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }

  #shop-detail-contents .title {
    font-size: 5.33vw;
    line-height: 1.4;
  }

  #shop-detail-contents .sub-title {
    font-size: 4.27vw;
    margin-top: 2.13vw;
  }

  #shop-detail-contents .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-top: 3.2vw;
  }

  #shop-detail-contents .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-top: 12.8vw;
  }

  #shop-detail-contents .box {
    border-top: 1px solid #707070;
    padding: 4.27vw 0 4.8vw;
    margin-top: 0;
  }

  #shop-detail-contents .box__tel {
    gap: 1vw;
    margin-top: 1.6vw;
  }

  #shop-detail-contents .text {
    margin-top: 10.67vw;
  }

  #shop-detail-menu {
    padding: 8.53vw 0 6.27vw;
    overflow: hidden;
  }

  #shop-detail-menu .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #shop-detail-menu .c-title03__en {
    font-size: 6.4vw;
    letter-spacing: 0.08em;
  }

  #shop-detail-menu .no-article,
  #shop-detail-news .no-article {
    margin-top: 6vw;
  }

  #shop-detail-menu .swiper-container {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 10.13vw;
  }

  #shop-detail-menu .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }

  #shop-detail-menu .swiper-slide {
    height: auto;
  }

  #shop-detail-menu .item {
    height: 100%;
  }

  #shop-detail-menu .item__title {
    font-size: 3.73vw;
    line-height: 1.57;
    margin-top: 3.2vw;
  }

  #shop-detail-menu .item__text {
    font-size: 3.73vw;
    line-height: 1.57;
    margin-top: 2.67vw;
  }

  #shop-detail-menu .box {
    padding: 4.53vw 0 6.4vw;
    margin-top: 16.53vw;
  }

  #shop-detail-menu .box__head {
    padding: 0.53vw 4.53vw 4.8vw;
  }

  #shop-detail-menu .box__title {
    font-size: 6.4vw;
    letter-spacing: 0.08em;
  }

  #shop-detail-menu .box__sub-title {
    font-size: 3.73vw;
    margin-top: 2.67vw;
  }

  #shop-detail-menu .dl-container {
    border-bottom: none;
    padding: 4.8vw 0 0;
  }

  #shop-detail-menu .dl-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #shop-detail-menu .dl-wrap:not(:first-of-type) {
    margin-top: 1.0625rem;
  }

  #shop-detail-menu .dl-box {
    width: 100%;
  }

  #shop-detail-menu .dl {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--layout-before-color-border, #c4e1e0);
    padding: 4vw 4.27vw;
  }

  #shop-detail-menu .dl-box .dl {
    width: 100%;
  }

  #shop-detail-menu .dl:first-of-type {
    padding: 0 4.27vw 4vw;
  }

  #shop-detail-menu .dl-box .dl:first-of-type {
    padding: 4vw 4.27vw;
  }

  #shop-detail-menu .dl-box .dl:not(:first-of-type) {
    margin-top: 0;
  }

  #shop-detail-menu .dt {
    min-width: 100%;
    line-height: 1.2;
  }

  #shop-detail-menu .dd {
    width: 100%;
    padding-left: 4.27vw;
  }

  #shop-detail-menu .list:not(:first-of-type) {
    margin-top: 0;
  }

  #shop-detail-menu .links {
    gap: 10.67vw;
    margin-top: 5.33vw;
  }

  #shop-detail-menu .link a {
    gap: 1.28vw;
  }

  #shop-detail-menu .link a:hover {
    opacity: 1;
  }

  #shop-detail-menu .link__icon img {
    width: 3.2vw;
  }

  #shop-detail-news {
    padding: 6.27vw 0 24vw;
    overflow: hidden;
  }

  #shop-detail-news .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #shop-detail-news .swiper-container {
    position: relative;
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 10.67vw;
  }

  #shop-detail-news .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }

  #shop-detail-news .swiper-slide {
    height: auto;
  }

  #shop-detail-news .c-blog {
    height: 100%;
  }

  #shop-contents {
    padding: 0 0 25.6vw;
  }

  #shop-contents .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #shop-contents .c-title02 {
    padding-left: 0;
  }

  #shop-contents .c-title02__en span:nth-child(2) {
    padding-left: 6.4vw;
  }

  #shop-contents .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8vw;
  }

  #shop-contents .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }

  #shop-contents .body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }

  #shop-contents .c-category {
    margin-top: 12.8vw;
  }

  #shop-contents .c-shops {
    margin-top: 14.93vw;
  }

  #terms-contents {
    padding: 0 0 32vw 0;
  }

  #terms-contents .body {
    margin-top: 19.2vw;
  }

  #terms-contents .block:not(:first-of-type) {
    margin-top: 9.6vw;
  }

  #terms-contents .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7.47vw;
  }

  #terms-contents .title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 100%;
    font-size: 4.8vw;
    line-height: 1.67;
    padding-right: 0;
  }

  #terms-contents .title::before {
    display: none;
  }

  #terms-contents .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #terms-contents .text {
    line-height: 1.75;
    word-break: break-all;
    margin-top: 0;
  }

  #terms-contents .items {
    margin-top: 6.4vw;
  }

  #terms-contents .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.73vw;
  }

  #terms-contents .item:not(:first-of-type) {
    margin-top: 7.47vw;
  }

  #terms-contents .item__title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 100%;
    font-size: 4.27vw;
    line-height: 1.75;
  }

  #terms-contents .units {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 7.47vw;
  }

  #terms-contents .unit {
    padding: 2.67vw 5.33vw 4.8vw;
  }

  #terms-contents .unit:first-of-type {
    border-bottom: none;
  }

  #terms-contents .unit__title {
    font-size: 4vw;
  }

  #terms-contents .lists {
    margin-top: 3.2vw;
  }

  #terms-contents .list {
    font-size: 4vw;
  }

  #top-concept {
    background-image: url("../images/top/concept-bg-sp.webp");
    padding: 47.47vw 0 0;
  }

  #top-concept .inner {
    max-width: 100%;
    padding: 0 5.33vw;
  }

  #top-concept .wrap {
    max-width: 100%;
  }

  #top-concept .contents {
    max-width: 100%;
  }

  #top-concept .text {
    font-size: 4.27vw;
  }

  #top-concept .btn {
    margin-top: 2.8125rem;
  }

  #top-concept .en {
    font-size: 19.2vw;
    line-height: 0.8;
    letter-spacing: 0.06em;
    margin-top: 18.13vw;
  }

  #top-fv {
    height: 100svh;
    height: calc(100svh - 40px);
    top: 40px;
    overflow: hidden;
  }

  #top-fv-title {
    height: 100svh;
  }

  #top-fv-title .inner {
    padding: 0 2.13vw;
  }

  #top-fv-title .en {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    gap: 0.8vw;
  }

  #top-fv-title .en span {
    font-size: 33.07vw;
    font-size: 18.13vw;
    line-height: 0.8;
    letter-spacing: 0.06em;
    padding-right: 0;
    text-align: right;
  }

  #top-fv-title .en span.small {
    font-family: "Inter", sans-serif;
    font-size: 6.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: 10.13vw;
    padding-right: 1.33vw;
  }

  #top-news {
    padding: 16.53vw 0 22.4vw;
  }

  #top-news .inner {
    padding: 0 0 0 5.33vw;
  }

  #top-news .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  #top-news .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-top: 0;
    padding-right: 5.33vw;
  }

  #top-news .c-title02 {
    padding-left: 2.13vw;
    text-align: center;
  }

  #top-news .c-title02__en span {
    font-size: 8.53vw;
    line-height: 1.13;
  }

  #top-news .c-title02__en span:nth-child(2) {
    padding-left: 13.33vw;
  }

  #top-news .c-title02__en span:nth-child(3) {
    padding-left: 4.8vw;
  }

  #top-news .btn {
    width: 100%;
    padding-right: 5.33vw;
    margin-top: 13.33vw;
    text-align: center;
  }

  #top-news .topics {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-right: 0;
    margin-top: 10.67vw;
  }

  #top-news .swiper-container {
    position: relative;
  }

  #top-news .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }

  #top-news .swiper-slide {
    height: auto;
  }

  #top-news .slide-item {
    height: 100%;
  }

  #top-news .slide-item a {
    display: block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  #top-news .slide-item a:hover {
    opacity: 0.8;
  }

  #top-news .slide-item__image img {
    aspect-ratio: 1/1;
  }

  #top-news .slide-item__contents {
    margin-top: 1rem;
  }

  #top-news .slide-item__title {
    font-size: 4.8vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  #top-news .slide-item__tags {
    gap: 2.13vw;
    margin-top: 4.27vw;
  }

  #top-news .slide-item__tag {
    font-size: 2.4vw;
    padding: 0.67vw 1.07vw 0.93vw;
  }

  #top-news .slide-item__date {
    font-size: 2.93vw;
    margin-top: 3.73vw;
  }

  #top-open .head {
    background-image: url("../images/top/open-head-bg-sp.webp");
    padding: 80vw 0 23.47vw;
    text-align: center;
  }

  #top-open .c-title02 {
    text-align: center;
  }

  #top-open .c-title02__en span {
    font-size: 8.53vw;
    line-height: 1.25;
    letter-spacing: 0.08em;
  }

  #top-open .c-title02__en span:nth-child(2) {
    padding-left: 8vw;
  }

  #top-open .title {
    display: inline-block;
    font-size: 6.4vw;
    line-height: 1.33;
    margin-top: 39.47vw;
    text-align: left;
  }

  #top-open .box {
    background-image: url("../images/top/open-box-bg-sp.webp");
    padding: 83.47vw 0;
  }

  #top-open .box__text {
    font-size: 6.4vw;
    line-height: 1.33;
    letter-spacing: 0.07em;
  }

  #top-shop .head {
    background-image: url("../images/top/shop-head-bg-sp.webp");
    padding: 81.33vw 0;
  }

  #top-shop .c-title02 {
    text-align: center;
  }

  #top-shop .c-title02__en span {
    font-size: 8.53vw;
    letter-spacing: 0.08em;
    line-height: 1.13;
  }

  #top-shop .c-title02__en span:nth-child(2) {
    padding-left: 8vw;
  }

  #top-shop .body {
    padding: 9.33vw 1.87vw 41.07vw;
  }

  #top-shop .text {
    font-size: 4.27vw;
    line-height: 1.75;
  }

  #top-shop .items {
    grid-template-columns: 1fr;
    gap: 8.53vw;
    margin-top: 10.13vw;
  }

  #top-shop .item a:hover {
    opacity: 1;
  }

  #top-shop .title {
    font-size: 4.8vw;
    margin-top: 2.67vw;
  }

  #top-shop .btn {
    padding-right: 0;
    margin-top: 30.67vw;
    text-align: center;
  }

  #top-topics {
    height: 100svh;
    padding: 0 11.2vw 4.27vw;
  }

  #top-topics .inner {
    max-width: 100%;
    padding: 0;
  }

  #top-topics .body {
    max-width: 100%;
  }

  #top-topics .body a {
    -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: 1.07vw;
    padding: 4.27vw 6.4vw;
  }

  #top-topics .body a:hover {
    color: #fff;
    background: #222;
  }

  #top-topics .head {
    gap: 6.4vw;
  }

  #top-topics .title {
    font-size: 3.2vw;
  }

  #top-topics .date {
    position: relative;
    top: 0.27vw;
    font-size: 2.93vw;
  }

  #top-topics .text {
    font-size: 3.73vw;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.0533333333vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}