@charset "UTF-8";
/* ========== Reset CSS ========== */
/* 全要素にbox-sizing設定 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 基本要素のリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* テーブルのリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平線（hr）のリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: #fff;
  line-height: 1.2;
  background: #44514B;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 0;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

li {
  list-style: none;
}

a,
button,
input[type=submit],
input[type=button],
label,
[role=button] {
  cursor: pointer;
}

picture {
  display: block;
  max-width: 100%;
}

.header {
  height: 9.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  transition: background-color 0.3s, -webkit-backdrop-filter 0.3s;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  transition: background-color 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
}
.header.is-scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  .header {
    height: 5.6rem;
    padding-top: 1.6rem;
    padding-bottom: 8px;
  }
  .header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 100%;
    height: 1px;
    background-color: #818181;
  }
}

.header__left {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 1.6rem;
}
@media screen and (max-width: 767px) {
  .header__left {
    margin-left: 1rem;
  }
}

.header__logo {
  width: clamp(11.4rem, 16vw, 16rem);
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 11.4rem;
    max-width: 90%;
    display: block;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 2.5vw, 3.4rem);
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav a {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: #fff;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.header__nav a:hover {
  color: #818181;
}

.header__open {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__open {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .drawer-icon {
    width: 4rem;
    height: 2.4rem;
    position: fixed;
    top: 1.6rem;
    right: 2rem;
    z-index: 9999;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 12px;
    transform: rotate(45deg);
    transform-origin: center;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
    opacity: 0;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 12px;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .drawer-icon__bar {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #FFF;
    transition: transform 0.3s linear, top 0.3s linear;
  }
  .drawer-icon__bar:nth-of-type(2) {
    top: 12px;
    width: 2.4rem;
  }
  .drawer-icon__bar:nth-of-type(3) {
    top: 24px;
    width: 3rem;
  }
}

.header__icon {
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.header__icon:hover {
  background-color: #38453F;
}
.header__icon svg {
  width: 100%;
  height: 100%;
}

.drawer-content {
  width: 65.6%;
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #38453F;
  z-index: 100;
  padding-top: 13.6rem;
  padding-right: 4rem;
  padding-bottom: 2.4rem;
  padding-left: 4rem;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__menu {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.drawer-content__link {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
  text-align: left;
}

.drawer-content__icon {
  width: 4.6rem;
  height: 4.6rem;
}

.header__nav li.current-menu-item > a {
  color: #808000;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}

.header__sub {
  background-color: #38453F;
}

.breadcrumb {
  font-size: 1.4rem;
  margin-top: 11.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 7.1rem;
    margin-bottom: 3.8rem;
  }
}

.breadcrumb__lists {
  display: flex;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 400;
}
.breadcrumb__list::after {
  content: ">";
  margin-left: 0.5em;
}
.breadcrumb__list:last-child::after {
  content: "";
}

.breadcrumb__link {
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb__link:hover {
  color: #8bc34a;
}
.breadcrumb__link[aria-current=page] {
  color: #555;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}

.section {
  padding-top: 13.9rem;
  padding-bottom: 13.9rem;
  position: relative;
}
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 128rem;
  height: 1px;
  background-color: #818181;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section--no-line {
  padding-top: 13.9rem;
  padding-bottom: 13.9rem;
}
.section--no-line::after {
  display: none;
}

.section__header {
  padding-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section__header {
    padding-bottom: 4.8rem;
  }
}

.section-title--ja {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(3.6rem, 4.17vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-title--ja {
    font-size: 3.6rem;
    letter-spacing: 0.15em;
  }
}

.section-title--en {
  font-family: "Cormorant SC", serif;
  font-size: clamp(4.2rem, 4.17vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .section-title--en {
    font-size: 4.2rem;
    letter-spacing: 0.16em;
  }
}

.inner-std {
  max-width: 128rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 4rem;
  padding-left: 4rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}

.top-lineup__inner {
  position: relative;
  margin-bottom: 4.5rem;
  margin-left: 8rem;
}
@media screen and (max-width: 767px) {
  .top-lineup__inner {
    margin-bottom: 0.7rem;
    margin-left: 0rem;
  }
}

.breadcrumb__inner {
  max-width: 128rem;
  width: 100%;
  margin-left: 10rem;
  padding-right: 4rem;
  padding-left: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

.text-link {
  --underline-extra-left: 0;
  --underline-offset: -9px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  text-decoration: none;
  overflow: visible;
}
.text-link::before {
  content: "";
  position: absolute;
  bottom: var(--underline-offset);
  right: 0;
  width: calc(100% + var(--underline-extra-left));
  height: 1px;
  background-color: #fff;
}
.text-link .arrow-icon {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease;
}
.text-link:hover .arrow-icon {
  transform: translateX(4px);
}

.text-link--centered {
  --underline-extra: 4em;
  --underline-offset: -9px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  text-decoration: none;
  overflow: visible;
}
.text-link--centered::before {
  content: "";
  position: absolute;
  bottom: var(--underline-offset);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + var(--underline-extra));
  height: 1px;
  background-color: #fff;
}

.text-link--right {
  --underline-extra-right: 4em;
  --underline-offset: -9px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  text-decoration: none;
  overflow: visible;
}
.text-link--right::before {
  content: "";
  position: absolute;
  bottom: var(--underline-offset);
  left: 0;
  width: calc(100% + var(--underline-extra-right));
  height: 1px;
  background-color: #fff;
}
.text-link--right .arrow-icon {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.3s ease;
}
.text-link--right:hover .arrow-icon {
  transform: translateX(4px);
}

.img-box {
  flex: 0 1 31.6666666667vw;
  max-width: 456px;
  width: 100%;
}
.img-box img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img-box {
    display: block;
    width: 71.67%;
    margin-inline: auto;
    margin-bottom: -0.4rem;
  }
  .img-box img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.cards-common {
  display: grid;
}

.card-common {
  max-width: 100%;
}

.card-thumb {
  width: 100%;
  border-radius: 3rem;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
  position: relative;
}
.card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.card-thumb-tag {
  background: #38453F;
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  padding: 6px 14px;
  position: absolute;
  right: 3%;
  text-decoration: none;
  top: 0;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.card-title {
  text-align: left;
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-date {
  text-align: right;
  font-size: 1.2rem;
  white-space: nowrap;
}

.pagination-common {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pagination-common .page-numbers {
  display: inline-block;
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #808080;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pagination-common .page-numbers:hover {
  opacity: 0.6;
}
.pagination-common .page-numbers.current {
  background: #38453F;
  border-color: #38453F;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
}
.pagination-common .page-numbers.next,
.pagination-common .page-numbers.prev {
  border: none;
  font-size: 30px;
  background: transparent;
  color: #fff;
  line-height: 40px;
  min-width: initial;
  width: auto;
}
.pagination-common .page-numbers.dots {
  border: none;
  background: transparent;
  color: #aaa;
  pointer-events: none;
  font-size: 20px;
}
.pagination-common .page-numbers:last-child {
  margin-right: 0;
}

.to-top {
  position: fixed;
  bottom: 2rem;
  right: 5%;
  width: 8rem;
  max-width: 100%;
  height: 8rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .to-top {
    width: 5rem;
    height: 5rem;
    right: 1rem;
  }
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background-color: #38453F;
  padding-top: 12rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 8rem;
    padding-bottom: 2.4rem;
  }
}

.footer__inner {
  padding-right: 12rem;
  padding-left: 12rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.footer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .footer__head {
    flex-direction: column;
    margin-bottom: 6rem;
  }
}

.footer__logo-wrapper {
  max-width: 28rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__logo-wrapper {
    max-width: 18rem;
    margin-bottom: 2.6rem;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    gap: 2.4rem;
  }
}

.footer__sns {
  display: flex;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    gap: 8px;
  }
}

.footer__sns-icon {
  width: 3.6rem;
  height: 3.6rem;
}
.footer__sns-icon svg path {
  transition: fill 0.3s;
  fill: #fff;
}
.footer__sns-icon:hover svg path {
  fill: #818181;
}
@media screen and (max-width: 767px) {
  .footer__sns-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 6rem;
  }
}

.footer__bottom-nav {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom-nav {
    flex-direction: column;
    gap: 1.4rem;
  }
}

.footer__bottom-nav-item {
  font-size: 1.4rem;
  transition: color 0.3s;
  text-decoration: underline;
}

.footer__copy {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .footer__logo-area {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__sns {
    margin-top: 1.2rem;
  }
}
.top-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
@supports (height: 100svh) {
  .top-mv {
    height: 100svh;
  }
}

.top-mv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  pointer-events: none;
}

.top-mv__content {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.top-mv__video::-webkit-media-controls,
.top-mv__video::-webkit-media-controls-overlay-play-button,
.top-mv__video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.top-mv__logo {
  position: absolute;
  top: 29.3%;
  left: 18.1%;
  pointer-events: auto;
}
.top-mv__logo img {
  width: 29.4rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-mv__logo {
    top: 17%;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-mv__logo img {
    width: 18.4rem;
  }
}

.top-mv__news {
  position: absolute;
  bottom: 6%;
  left: 5%;
  display: flex;
  display: flex;
  align-items: center;
  color: #fff;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-mv__news {
    bottom: 6%;
    left: 4%;
    gap: 0;
  }
}

.top-mv__news-label {
  text-align: left;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-mv__news-label {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.top-mv__news-en {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .top-mv__news-en {
    font-size: 10px;
  }
}

.top-mv__news-ja {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-mv__news-ja {
    font-size: 10px;
  }
}

.top-mv__news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.top-mv__news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding-left: 3.6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-mv__news-item {
    padding-left: 8px;
  }
}
.top-mv__news-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 6.2rem;
  background-color: #fff;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .top-mv__news-item::before {
    height: 3.9rem;
  }
}

.top-mv__news-date {
  font-family: "Noto Sans JP", "M PLUS 1p", "Kosugi Maru", "Yu Gothic UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {
  .top-mv__news-date {
    font-size: 10px;
    margin-left: 1.7rem;
  }
}

.top-mv__news-title {
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .top-mv__news-title {
    margin-left: 1.7rem;
  }
}

.top-about {
  padding-top: 13rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}

.top-about--soil {
  padding-top: 0rem;
}

.top-about__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__content {
    margin-bottom: 9.9rem;
  }
}

.top-about__head {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-about__head {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.4rem;
  }
}

.top-about__title {
  margin-top: clamp(4rem, 7.29vw, 14rem);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .top-about__title {
    margin-top: 8rem;
    text-align: center;
  }
}

.top-about__foot {
  position: absolute;
  bottom: 11%;
  right: 19%;
}
@media screen and (max-width: 767px) {
  .top-about__foot {
    position: relative;
    right: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: clamp(2.5rem, 6.6vw, 3rem);
  }
}

.top-about__text-link {
  --underline-extra-left: 100%;
}
@media screen and (max-width: 767px) {
  .top-about__text-link {
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .top-about__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.top-about--soil__head {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-about--soil__head {
    flex-direction: column-reverse;
  }
}

.top-about--soil__title {
  margin-top: clamp(4rem, 0.36vw, 4.2rem);
}
@media screen and (max-width: 767px) {
  .top-about--soil__title {
    text-align: center;
  }
}

.top-about--soil__foot {
  bottom: 13%;
  left: 33%;
}
@media screen and (max-width: 767px) {
  .top-about--soil__foot {
    position: relative;
    left: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: clamp(2.5rem, 6.6vw, 3rem);
  }
}

.swiper-wrapper {
  width: 100%;
}

.top-lineup__frame {
  display: flex;
  overflow: hidden;
  position: relative;
}

.top-lineup__left-space {
  flex-shrink: 0;
  width: clamp(2rem, 3vw, 4rem);
  background: transparent;
}
@media screen and (max-width: 767px) {
  .top-lineup__left-space {
    display: none;
  }
}

.top-lineup__swiper {
  flex-grow: 1;
  overflow: visible;
  position: relative;
  padding-left: clamp(2rem, 13.33vw, 12rem);
}

.top-lineup__main {
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .top-lineup__main {
    margin-bottom: 10rem;
  }
}

.top-lineup__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1.6rem;
  position: relative;
}

.top-lineup__title {
  text-align: center;
}

.top-lineup__nav {
  position: absolute;
  right: 5%;
  top: 13%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-lineup__nav {
    right: 0;
    top: 1.4rem;
    transform: none;
  }
}

.swiper-button-prev,
.swiper-button-next {
  all: unset;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  transition: opacity 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.6;
}

.top-lineup__nav-divider {
  display: inline-block;
  font-size: 4.6rem;
}
@media screen and (max-width: 767px) {
  .top-lineup__nav-divider {
    font-size: 2.4rem;
  }
}

.top-lineup__nav .swiper-button-prev,
.top-lineup__nav .swiper-button-next {
  width: 4rem;
  height: 4rem;
  background-color: #ccc;
  mask: url("../../images/arrow.svg") no-repeat center/contain;
  -webkit-mask: url("../../images/arrow.svg") no-repeat center/contain;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-lineup__nav .swiper-button-prev,
.top-lineup__nav .swiper-button-next {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.top-lineup__nav .swiper-button-prev:hover,
.top-lineup__nav .swiper-button-next:hover {
  background-color: #999;
}

.top-lineup__nav .swiper-button-prev {
  transform: rotate(180deg);
}

.top-lineup__swiper {
  overflow: hidden;
  padding-bottom: 2rem;
  padding-inline: 1.6rem;
}

.swiper-wrapper {
  display: flex;
}

.top-lineup__item {
  overflow: hidden;
  position: relative;
  text-align: center;
  width: clamp(280px, 30vw, 436px);
  max-width: 100%;
  padding: 1rem;
  flex-shrink: 0;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .top-lineup__item {
    width: 60vw;
  }
}
.top-lineup__item:hover img {
  transform: scale(1.2);
}

.top-lineup__item-head {
  position: relative;
}

.top-lineup__img {
  position: relative;
  width: 436px;
  aspect-ratio: 1/1;
  padding-bottom: 2.4rem;
}

.top-lineup__img-main {
  width: 100%;
  height: 100%;
  padding-bottom: 2.4rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.top-lineup__img-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.top-lineup__cart {
  position: absolute;
  right: 9%;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  z-index: 1;
}
.top-lineup__cart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: -1;
}
.top-lineup__cart:hover::before {
  background-color: #000;
}

.top-lineup__cart-icon {
  width: 4rem;
  height: 4rem;
}

.to-lineup__item-foot {
  margin-top: 1.2rem;
}

.top-lineup__object {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 2.2rem;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top-lineup__object {
    font-size: 1.6rem;
  }
}

.top-lineup__name {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 2.2rem;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top-lineup__name {
    font-size: 1.6rem;
  }
}

.top-lineup__price {
  font-size: 1.4rem;
  padding-left: 2.2rem;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top-lineup__price {
    font-size: 1.6rem;
  }
}

.top-lineup__bottom {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-lineup__bottom {
    position: relative;
    right: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-lineup__text-link {
  --underline-extra-left: 100%;
}
@media screen and (max-width: 767px) {
  .top-lineup__text-link {
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .top-lineup__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.top-lineup__guide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .top-lineup__guide-content {
    flex-direction: column;
    gap: 3.34rem;
  }
}

@media screen and (max-width: 767px) {
  .top-lineup__guide-img {
    width: 26rem;
  }
}

.top-lineup__guide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 1 24.3055555556vw;
  max-width: 350px;
  width: 100%;
  text-align: left;
}

.top-lineup__guide-link {
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.top-lineup__guide-link:first-child {
  margin-bottom: 3.5rem;
}

.top-lineup__guide-text-link {
  font-size: 2.2rem;
  display: block;
  --underline-extra-left: 3%;
  --underline-offset: -8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.top-lineup__guide-text-link .arrow-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}
.top-lineup__guide-text-link .text-link__label {
  display: inline-block;
  line-height: 1.6;
}

.top-variety {
  padding-bottom: 16.9rem;
}
@media screen and (max-width: 767px) {
  .top-variety {
    padding-bottom: 11rem;
  }
}

.top-variety__content {
  display: flex;
  gap: 6rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-variety__content {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
}

.top-variety__title {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-variety__title {
    text-align: center;
  }
}

.top-variety__info-box {
  position: relative;
  flex: 0 1 49.3055555556vw;
  max-width: 710px;
  width: 100%;
}
.top-variety__img-wrapper {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top-variety__img-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-left: 1.6rem;
    margin-bottom: 2.5rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top-variety__img-wrapper picture {
    display: inline-block;
    min-width: 68.6rem;
    vertical-align: top;
  }
}

.top-variety__img-wrapper img {
  display: block;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-variety__img-wrapper img {
    width: auto;
    min-width: 68.6rem;
  }
}

.top-variety__foot {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  .top-variety__foot {
    position: relative;
    right: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-variety__link {
  --underline-extra-left: 100%;
}
@media screen and (max-width: 767px) {
  .top-variety__link {
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .top-variety__link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.top-company::after {
  display: none;
}

@media screen and (max-width: 767px) {
  .top-company__title {
    letter-spacing: 0em;
    line-height: 1.6;
  }
}

.top-company__wrapper {
  position: relative;
}

.top-company__content {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .top-company__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.4rem;
  }
}

.top-company__img {
  flex: 0 1 31.6666666667vw;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-company__img {
    flex: none;
    width: 66.67%;
    max-width: 16rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }
}
.top-company__img img {
  width: 100%;
  height: auto;
}

.top-company__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-company__text {
    margin-top: 0;
    margin-bottom: 0rem;
  }
}

.top-company__title {
  font-size: clamp(3.1rem, 3.33vw, 4.8rem);
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-company__title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}

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

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

.top-company__lead {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .top-company__lead {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 1.6px;
  }
}

.top-company__foot {
  position: absolute;
  bottom: 10%;
  right: 16%;
}
@media screen and (max-width: 767px) {
  .top-company__foot {
    position: relative;
    right: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.top-company__text-link {
  --underline-extra-left: 100%;
}
@media screen and (max-width: 767px) {
  .top-company__text-link {
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .top-company__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.top-blog {
  padding-top: 0;
  padding-bottom: 20rem;
}
.top-blog::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-blog {
    padding-bottom: 16rem;
  }
}

.top-blog__content {
  background: #38453F;
  border-radius: 30px;
  padding-top: clamp(6rem, 9.58vw, 13.8rem);
  padding-right: clamp(3rem, 6.25vw, 13.8rem);
  padding-bottom: clamp(6rem, 9.01vw, 13rem);
  padding-left: clamp(3rem, 2.78vw, 4rem);
  display: flex;
  gap: clamp(5rem, 3.1vw, 9rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-blog__content {
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;
    padding-right: 5.9rem;
    padding-bottom: 8rem;
    padding-left: 5.9rem;
    gap: 4.8rem;
  }
}

.top-blog__main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-blog__main {
    align-items: center;
  }
}

.top-blog__cards-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: block;
  position: relative;
}

.top-blog__cards {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 5.4rem;
}
@media screen and (max-width: 767px) {
  .top-blog__cards {
    gap: 2.4rem;
    width: 100%;
    justify-items: center;
  }
}

.top-blog__card {
  width: 24rem;
}

.top-blog__foot {
  margin-top: auto;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .top-blog__foot {
    position: relative;
    right: auto;
    margin-inline: auto;
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: clamp(2.5rem, 6.6vw, 3rem);
  }
}

.top-blog__text-link {
  --underline-extra-left: 100%;
}
@media screen and (max-width: 767px) {
  .top-blog__text-link {
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .top-blog__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.top-contact {
  position: relative;
  width: 100%;
  max-width: 100rem;
  margin-inline: auto;
  padding-top: 2rem;
  background-image: url("../../images/contact01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .top-contact {
    background-position: center 80%;
    background-size: 100% auto;
    margin-bottom: 16rem;
  }
}
.top-contact::after {
  display: none;
}

.top-contact__head {
  text-align: center;
  padding-bottom: 6.5rem;
}
@media screen and (max-width: 767px) {
  .top-contact__head {
    padding-bottom: 3.4rem;
  }
}

.top-contact__title {
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .top-contact__title {
    margin-bottom: 2.4rem;
  }
}

a.top-contact__icon {
  display: block;
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  margin-inline: auto;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a.top-contact__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 0;
}
a.top-contact__icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
a.top-contact__icon:hover::before {
  background-color: #818181;
}

.contact-fixed {
  position: fixed;
  bottom: 20%;
  right: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-fixed.is-visible {
  opacity: 1;
  visibility: visible;
}

.contact-fixed__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #38453F;
  padding: 1.2rem 0.6rem;
  border-radius: 0.6rem 0 0 0.6rem;
  text-decoration: none;
  width: auto;
  min-height: 12rem;
  transition: background-color 0.3s ease;
}
.contact-fixed__link:hover {
  background-color: #2e3934;
}
.contact-fixed__link svg {
  width: 4rem;
  height: 4rem;
}

.contact-fixed__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.about-us-mv {
  padding-top: 1.5rem;
  padding-bottom: 2.1rem;
}
.about-us-mv::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-us-mv {
    padding-top: 0rem;
  }
}

.about-us-mv__inner {
  padding-left: clamp(2rem, 2vw, 7rem);
  padding-right: clamp(2rem, 5vw, 7rem);
}
@media screen and (max-width: 767px) {
  .about-us-mv__inner {
    display: block;
    padding-inline: 0rem;
  }
}

.about-us-mv__content {
  position: relative;
  max-width: 130rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 50vh;
  margin: auto;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .about-us-mv__content {
    position: relative;
    height: 54rem;
    max-width: none;
    flex-direction: column;
    gap: 4.2rem;
    overflow: visible;
  }
}

.about-us-mv__img {
  position: absolute;
  width: 40%;
  overflow: hidden;
}
.about-us-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-us-mv__img-main {
  top: 0;
  left: 0;
  aspect-ratio: 695/442;
  width: clamp(30rem, 48vw, 69.5rem);
  max-width: 100%;
  display: flex;
  border-radius: 3rem;
  align-items: flex-start;
  overflow: hidden;
}
.about-us-mv__img-main img {
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .about-us-mv__img-main {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(clamp(-8.5rem, -20vw, 0rem));
    width: 44.5rem;
    aspect-ratio: 445/284;
    border-radius: 3rem;
    overflow: hidden;
  }
}

.about-us-mv__img-sub {
  bottom: 0;
  right: 0;
  transform: translateY(0) translateX(0);
  aspect-ratio: 456/384;
  width: clamp(20rem, 31.7vw, 45.6rem);
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  justify-content: flex-end;
  border-radius: 3rem;
}
.about-us-mv__img-sub img {
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .about-us-mv__img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(2.5rem);
    width: 27rem;
    height: auto;
    aspect-ratio: 270/229;
    border-radius: 3rem;
    overflow: hidden;
  }
}

.about-us__message {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .about-us__message {
    padding-top: 8.1rem;
    padding-bottom: 8.5rem;
  }
}

.about-us__title {
  font-size: clamp(3.5rem, 4vw, 4.8rem);
  text-align: center;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .about-us__title {
    font-size: 3.6rem;
    font-weight: 300;
  }
}

.about-us__message-title {
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 767px) {
  .about-us__message-title {
    margin-bottom: 3.7rem;
  }
}

.about-us-mv_message-lead {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6;
  text-align: center;
}
.about-us-mv_message-lead:not(:last-of-type) {
  margin-bottom: 5.2rem;
}
@media screen and (max-width: 767px) {
  .about-us-mv_message-lead {
    font-size: 1.6rem;
    line-height: 2.18;
  }
}

.about-us__inner {
  padding-right: 7.3rem;
  padding-left: 7.3rem;
}
@media screen and (max-width: 767px) {
  .about-us__inner {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}

.about-us__care-title {
  margin-bottom: 3.4rem;
}

.about-us__care-img {
  margin-bottom: 7rem;
}
.about-us__care-img img {
  margin: auto;
  border-radius: 3.6rem;
}
@media screen and (max-width: 767px) {
  .about-us__care-img {
    margin-bottom: 9.3rem;
  }
}

.about-us__care-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  background: #38453F;
  border-radius: 3rem;
  padding-top: 6.4rem;
  padding-right: clamp(2rem, 4.2vw, 6.2rem);
  padding-bottom: 5.7rem;
  padding-left: clamp(2rem, 4.2vw, 6.2rem);
}
@media screen and (max-width: 767px) {
  .about-us__care-content {
    flex-direction: column;
    padding-top: 4.2rem;
    padding-right: 1.8rem;
    padding-bottom: 4.2rem;
    padding-left: 1.8rem;
  }
}

.about-us__care-content-img-wrapper {
  width: 41%;
}
@media screen and (max-width: 767px) {
  .about-us__care-content-img-wrapper {
    width: 90%;
  }
}

.about-us__care-content-img {
  border-radius: 3.6re;
}

.about-us__care-content-text {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .about-us__care-content-text {
    width: 90%;
  }
}

.about-us__care-content-subtitle {
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  font-weight: 500;
  line-height: 1.78;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .about-us__care-content-subtitle {
    font-size: 3.3rem;
    text-align: center;
    line-height: 1.9;
  }
}

.about-us__care-content-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  margin-bottom: 4.6rem;
}

.about-us__text-link {
  --underline-extra-left: 50%;
}
@media screen and (max-width: 767px) {
  .about-us__text-link {
    left: 50%;
    transform: translateX(-50%);
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .about-us__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.company__mv {
  padding-top: 10.3rem;
  padding-bottom: 3rem;
}
.company__mv::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .company__mv {
    padding-top: 0rem;
    padding-bottom: 8.2rem;
  }
}

.company__mv-img {
  display: flex;
  justify-content: center;
}
.company__mv-img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.company__message {
  padding-top: 3rem;
  padding-bottom: 10.7rem;
}
@media screen and (max-width: 767px) {
  .company__message {
    padding-bottom: 3.5rem;
  }
}

.company__message-title {
  font-size: clamp(3.5rem, 4vw, 4.8rem);
  text-align: center;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0em;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .company__message-title {
    font-size: 3.6rem;
    margin-bottom: 2.9rem;
  }
}

.company_message-lead {
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6;
  text-align: left;
  margin: 0 auto 5.2rem;
  max-width: 60rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company_message-lead {
    width: 80%;
    font-size: 1.6rem;
  }
}

.company__info {
  padding-top: 8rem;
}
.company__info::after {
  display: none;
}

.company__info-title {
  text-align: center;
  margin-bottom: 8.9rem;
}
@media screen and (max-width: 767px) {
  .company__info-title {
    margin-bottom: 3.1rem;
  }
}

.company__table {
  width: 80rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 13.2rem;
  border-collapse: collapse;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .company__table {
    width: 77%;
  }
}

.company__row {
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__row {
    border-bottom: none;
  }
  .company__row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
  }
}

.company__th {
  text-align: left;
  font-weight: bold;
  padding-left: 8rem;
  vertical-align: top;
  width: 25%;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .company__th {
    display: block;
    width: 100%;
    padding-left: 0rem;
  }
}

.company__td {
  padding-left: 7.8rem;
  vertical-align: top;
  width: 75%;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .company__td {
    display: block;
    width: 100%;
    padding-top: 0rem;
    padding-left: 0rem;
  }
}

.grape-content {
  padding-top: 11rem;
  padding-bottom: 8.2rem;
}
@media screen and (max-width: 767px) {
  .grape-content {
    padding-top: 2rem;
    padding-bottom: 5.4rem;
  }
}

.grape-content__wrapper {
  display: flex;
  margin-inline: auto;
  align-items: center;
  gap: clamp(5rem, 7.77vw, 11.2rem);
  width: 97.7rem;
  max-width: 100%;
  margin-inline: auto;
}
.grape-content__wrapper:not(:last-of-type) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .grape-content__wrapper:not(:last-of-type) {
    margin-bottom: 7.3rem;
  }
}
.grape-content__wrapper:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .grape-content__wrapper:nth-of-type(2) {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .grape-content__wrapper {
    flex-direction: column;
  }
}

.grape-content__img {
  width: clamp(23.2rem, 30.2vw, 43.5rem);
  aspect-ratio: 1/1;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .grape-content__img {
    width: 25.7rem;
    margin-inline: auto;
  }
}

.grape-content__text {
  width: clamp(28rem, 35vw, 50rem);
  max-width: 100%;
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .grape-content__text {
    width: 80%;
  }
}

.grape-content__title {
  font-size: clamp(3.5rem, 4vw, 4.8rem);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .grape-content__title {
    font-size: 3.6rem;
    text-align: center;
  }
}

.grape-content__lead {
  font-size: 1.6rem;
  line-height: 2.2;
}

.grape-type {
  padding-top: 7.6rem;
  padding-bottom: 10.4rem;
}

.grape-type__head {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .grape-type__head {
    margin-bottom: 8.5rem;
  }
}

.grape-type__catch {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.1rem;
  letter-spacing: 2px;
  font-size: 1.4rem;
  background: #38453F;
  padding: 8px 30px;
  border-radius: 30px;
  display: inline-block;
}

.grape-type__title {
  font-size: clamp(3.5rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .grape-type__title {
    font-size: 3.6rem;
  }
}

.grape-type__cards {
  width: 112.8rem;
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 300px));
  gap: 6rem 8.2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .grape-type__cards {
    gap: 4rem, 9.1rem;
  }
}

.grape-type__card {
  width: 100%;
  text-align: center;
}

.grape-type__image {
  width: 30rem;
  height: 30rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 8px;
  border-radius: 50%;
  overflow: hidden;
}

.grape-type__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grape-type__name {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 3.17;
}
@media screen and (max-width: 767px) {
  .grape-type__name {
    margin-bottom: 0rem;
  }
}

.grape-type__period {
  font-size: 1.4rem;
  margin-bottom: 1.9rem;
  background: #38453F;
  padding: 8px 30px;
  border-radius: 30px;
  display: inline-block;
}

.grape-type__desc {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
}

.lineup-goods {
  padding-top: 11rem;
  padding-bottom: 8.2rem;
}

.lineup-goods__title {
  text-align: center;
  margin-bottom: 4.7rem;
}

.lineup-goods__items {
  max-width: calc(1089px + 11.6rem);
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 5.8rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .lineup-goods__items {
    grid-template-columns: repeat(auto-fit, minmax(22.6rem, 1fr));
    gap: 1.8rem 2rem;
    justify-items: center;
  }
}

.lineup-goods__item {
  max-width: 363px;
  width: 100%;
  text-align: left;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .lineup-goods__item {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .lineup-goods__item:nth-child(n+7) {
    display: none;
  }
}
.lineup-more {
  display: none;
}
@media screen and (max-width: 767px) {
  .lineup-more {
    display: block;
    text-align: center;
    margin-top: 2rem;
  }
}

.lineup-guide {
  padding-bottom: 0rem;
  margin-bottom: 1.5rem;
}
.lineup-guide::after {
  display: none;
}

.lineup-guide__content {
  margin-bottom: 11.5rem;
}

.lineup-guide__care-content {
  margin-bottom: 16.4rem;
}

.goods-info {
  padding: 6rem 0;
}

.goods-info__content {
  width: 128.4rem;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .goods-info__content {
    flex-direction: column;
  }
}

.goods-info__swiper {
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .goods-info__swiper {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
}

.goods-main-slider {
  position: relative;
  max-width: 65rem;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.goods-main-slider .swiper-slide {
  height: 100%;
}

.goods-main-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.goods-swiper-button-prev,
.goods-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.goods-swiper-button-prev::after,
.goods-swiper-button-next::after {
  font-size: 16px;
}

.goods-swiper-button-prev {
  left: 10px;
}
.goods-swiper-button-prev::after {
  content: "＜";
}

.goods-swiper-button-next {
  right: 10px;
}
.goods-swiper-button-next::after {
  content: "＞";
}

.goods-thumb-slider {
  margin-top: 1.5rem;
}

.goods-thumb-slider .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.goods-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.goods-info__text {
  flex: 0 0 45%;
  max-width: 45%;
}
@media screen and (max-width: 767px) {
  .goods-info__text {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding: 0 1rem;
  }
}

.goods-info__title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.26;
  margin-bottom: 1rem;
}

.goods-info__price {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.77;
  margin-bottom: 2.4rem;
}

.goods-info__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.81;
  letter-spacing: 0.1em;
  margin-bottom: 6.2rem;
}

.goods-info__text-link {
  --underline-extra-left: 50%;
}
@media screen and (max-width: 767px) {
  .goods-info__text-link {
    left: 50%;
    transform: translateX(-50%);
    --underline-extra-left: unset;
    --underline-extra: 4em;
  }
  .goods-info__text-link::before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: calc(100% + var(--underline-extra));
  }
}

.gift-service__head {
  text-align: center;
  margin-bottom: 7rem;
}

.gift-service__subtitle {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.09;
}

.gift-service__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4rem, 6.4vw, 9.2rem);
  padding-left: clamp(4rem, 8.9vw, 10.5rem);
  padding-right: clamp(4rem, 8.9vw, 10.5rem);
  margin-bottom: 10.6rem;
}
@media screen and (max-width: 767px) {
  .gift-service__content {
    flex-direction: column-reverse;
    padding-left: 0rem;
    padding-right: 0rem;
    margin-bottom: 0rem;
  }
}

.gift-service__content-text {
  flex: 0 0 50%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .gift-service__content-text {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
}

.gift-service__content-subtitle {
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  font-weight: 500;
  line-height: 1.78;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .gift-service__content-subtitle {
    text-align: center;
    font-size: 3.6rem;
  }
}

.gift-service__content-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .gift-service__content-lead {
    padding-right: 2.9rem;
    padding-left: 2.9rem;
  }
}

.gift-service__recommendation {
  background: #38453F;
  border-radius: 15px;
  padding-top: 2.8rem;
  padding-right: 4.4rem;
  padding-bottom: 3.7rem;
  padding-left: 4.4rem;
}
@media screen and (max-width: 767px) {
  .gift-service__recommendation {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.gift-service__recommendation-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
}

.gift-service__recommendation-lists {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77;
}

.gift-service__img-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
}
@media screen and (max-width: 767px) {
  .gift-service__img-wrapper {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
}

.gift-service__img {
  width: 55.2rem;
  max-width: 100%;
  margin-inline: auto;
}

.shop-guide {
  margin-left: 6.3rem;
  margin-right: 6.3rem;
  padding-bottom: 12.3rem;
  font-family: "Noto Sans JP", "M PLUS 1p", "Kosugi Maru", "Yu Gothic UI", sans-serif;
}
@media screen and (max-width: 767px) {
  .shop-guide {
    margin-inline: 1rem;
    padding-bottom: 8rem;
  }
}

.shop-guide__title {
  text-align: center;
  margin-bottom: 9.4rem;
  font-weight: 300;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .shop-guide__title {
    margin-bottom: 5rem;
  }
}

.shop-guide__block {
  margin-bottom: 6rem;
}

.shop-guide__heading {
  position: relative;
  font-size: 3rem;
  margin-bottom: 4.7rem;
  padding-left: 6.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.shop-guide__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4.8rem;
  height: 1px;
  transform: translateY(-50%);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .shop-guide__heading {
    margin-bottom: 3rem;
    padding-left: 3rem;
  }
  .shop-guide__heading::before {
    width: 2rem;
  }
}

.shop-guide__step {
  margin-left: 6.3rem;
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 767px) {
  .shop-guide__step {
    margin-left: 0rem;
    margin-bottom: 3rem;
  }
}

.shop-guide__shipping-group:last-of-type {
  margin-bottom: 3.1rem;
}

.shop-guide__step-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.611;
  letter-spacing: 0.1em;
  margin-bottom: 1.7rem;
}

.shop-guide__text {
  font-weight: 400;
  line-height: 1.81;
  letter-spacing: 0.1em;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .shop-guide__text {
    padding-left: 0rem;
  }
}

.shop-guide__payment-box {
  padding-top: 2.2rem;
  padding-right: 3rem;
  padding-bottom: 3.2rem;
  padding-left: 4.1rem;
  background-color: #38453F;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .shop-guide__payment-box {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-bottom: 2rem;
    padding-right: 1rem;
  }
}

.shop-guide__subheading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.61;
  letter-spacing: 0.1em;
  margin-bottom: 1.7rem;
}

.shop-guide__note {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.07;
  letter-spacing: 0.1em;
  padding-left: 1.8rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .shop-guide__note {
    padding-left: 0rem;
  }
}

.shop-guide__cancel {
  margin-bottom: 3rem;
}

.page-blog {
  padding-top: 1rem;
}

.news {
  padding-top: 1rem;
}

.blog__title,
.news__title {
  font-size: clamp(3.5rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.85;
  text-align: center;
  margin-bottom: 10rem;
}

.blog-cards,
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem 3.2rem;
  align-items: start;
  justify-items: center;
  width: calc(100% - 4rem);
  max-width: 128rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .blog-cards,
.news-cards {
    width: 100%;
    gap: 2.4rem;
    justify-items: center;
  }
}

.blog-card,
.news-card {
  width: 100%;
  max-width: 30rem;
}

.topics__button {
  display: flex;
  justify-content: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .topics__button {
    margin-top: 2.4rem;
  }
}

.wp-block-heading {
  font-weight: bold;
  margin: 2rem 0 1.5rem;
  line-height: 1.4;
  color: #fff;
}

.wp-block-heading:is(h1) {
  font-size: 3rem;
  border-bottom: 3px solid #888;
  padding-bottom: 0.5rem;
}

.wp-block-heading:is(h2) {
  font-size: 2.4rem;
  padding-left: 1rem;
}

.wp-block-heading:is(h3) {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 8.4rem 0 2.4rem;
  padding-left: calc(1rem + 5px);
  color: #fff;
}

.wp-block-heading:is(h4) {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 8.2rem 0 1.6rem;
  padding-left: 1rem;
  color: #fff;
}

.wp-block-paragraph {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: #fff;
}

.wp-block-image {
  margin: 2rem 0;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.wp-block-quote {
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  color: #ccc;
  font-style: italic;
  margin: 2rem 0;
}

.wp-block-list {
  padding-left: 2rem;
  margin-bottom: 2rem;
}
.wp-block-list li {
  margin-bottom: 0.6rem;
}

.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.wp-block-table th,
.wp-block-table td {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: left;
}
.wp-block-table th {
  background: #f9f9f9;
}

.wp-block-code {
  background: #f4f4f4;
  font-family: monospace;
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
}

h2.wp-block-heading {
  font-size: 5rem;
}

.editor-styles-wrapper {
  max-width: 90rem;
  margin-inline: auto;
}

.article {
  padding-top: 8rem;
  padding-bottom: 16rem;
}
.article::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .article {
    padding-top: 0;
  }
}

.article__inner {
  width: 90rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .article__inner {
    padding-inline: 0;
  }
}

.article__header {
  margin-bottom: 4rem;
}

.article__label {
  display: inline-block;
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: #38453F;
  padding: 0.4rem 1.6rem;
  text-align: center;
}

.article__title {
  font-size: 3rem;
  line-height: 1.41667;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.article__meta {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}

.article__updated {
  margin-left: 1.8rem;
}

.article__img {
  margin-top: 2rem;
  text-align: center;
  width: 60%;
  margin-inline: auto;
}
.article__img img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .article__img {
    width: 100%;
  }
}

.article__content {
  line-height: 1.8;
  font-size: 1.6rem;
  color: #fff;
}
.article__content h2 {
  border-radius: 3px;
  border-bottom: 6px solid #38453F;
  font-size: 2.6rem;
  font-weight: 600;
  margin: 8rem 0 3.8rem;
  padding-bottom: 1rem;
  position: relative;
}
.article__content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 8.4rem 0 2.4rem;
  border-left: 5px solid #38453F;
}
.article__content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 8.2rem 0 1.6rem;
  padding-left: 1rem;
  border-left: 5px solid #38453F;
}
.article__content h5 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 6rem 0 2.7rem;
}
.article__content h6 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 2em 0 1em;
}
.article__content p {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.article__content strong,
.article__content b {
  font-weight: 600;
}
.article__content img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.article__content ul,
.article__content ol {
  margin: 2rem 0;
  padding-left: 2.5rem;
}
.article__content ul {
  list-style-type: disc;
}
.article__content ol {
  list-style-type: decimal;
}
.article__content li {
  margin: 0.5rem 0;
  line-height: 1.8;
}
.article__content blockquote {
  background: #eee;
  padding: 1em;
  margin: 2rem 0;
  border-left: 4px solid #ccc;
  color: #666;
}
.article__content blockquote > :first-child {
  margin-top: 0;
}
.article__content blockquote > :last-child {
  margin-bottom: 0;
}
.article__content q {
  background: #eee;
  padding: 0.2em;
}
.article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.article__content table th,
.article__content table td {
  border: 1px solid #eee;
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}
.article__content table th {
  background: #f9f9f9;
}
.article__content pre,
.article__content code {
  font-family: monospace;
  font-size: 1.4rem;
  background: #f4f4f4;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
}
.article__content a {
  color: #fff;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.article__content a:hover {
  opacity: 0.7;
}

.article__nav {
  margin: 4rem auto;
  padding: 4rem 0 2rem;
  border-top: 1px solid #ccc;
  text-align: center;
}

.article__nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .article__nav-inner {
    gap: 1rem;
  }
}
.article__nav-inner a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.article__nav-inner a:hover {
  opacity: 0.8;
}

.page__inner {
  padding-top: clamp(6rem, 10vw, 12rem);
  padding-bottom: 8rem;
}

.page__header {
  margin-bottom: 4rem;
}

.page__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.page__date {
  font-size: 1.4rem;
}

.page__content {
  line-height: 2;
  font-size: 1.6rem;
}
.page__content p {
  margin-bottom: 2rem;
}

.contact {
  padding-top: 8rem;
  padding-bottom: 15.3rem;
}

.contact__content {
  text-align: center;
}

.contact__title {
  letter-spacing: 0.2em;
  margin-bottom: 3.1rem;
}

.contact__description {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.94;
  margin-bottom: 8.7rem;
}
@media screen and (max-width: 767px) {
  .contact__description {
    font-size: 1.6rem;
  }
}

.contact__form {
  max-width: 100rem;
  width: 100%;
  padding: 0 2rem;
  margin-inline: auto;
  margin-bottom: 21rem;
}

.contact__list {
  display: grid;
  grid-template-columns: 18rem 1fr;
  row-gap: 3rem;
  -moz-column-gap: 10.3rem;
       column-gap: 10.3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.contact__label {
  width: 18rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact__label {
    width: 100%;
  }
}

.contact__label--top {
  align-self: start;
  padding-top: 1rem;
}

.contact__input {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact__input p {
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact__input {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.contact__input--agreement {
  grid-column: 1/span 2;
  display: flex;
  justify-content: center;
}

.contact__input input,
.contact__input select,
.contact__input textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 2rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}

.contact__input--zip {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__input--zip p {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.contact__input--zip input {
  width: 20rem;
  flex-shrink: 0;
}
.contact__input--zip .contact__zip-button {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  border: none;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.contact__agreement {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 10rem;
}
.contact__agreement label {
  display: flex;
  align-items: center;
}
.contact__agreement input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin-right: 0.8rem;
}
.contact__agreement input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .contact__agreement {
    font-size: 1.4rem;
    margin-bottom: 8rem;
  }
}

.contact__agreement-link {
  text-decoration: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-underline-position: from-font;
  text-underline-offset: 0.2em;
  margin-left: 1.6rem;
}

.contact__submit {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}

.contact__button {
  cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}

.contact__select-wrap {
  width: 40rem;
  max-width: 100%;
  position: relative;
}
.contact__select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 1rem 4.2rem 1rem 1rem;
  border-radius: 2rem;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
}

.contact__select-arrow {
  position: absolute;
  right: 2.8rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #fff;
  font-size: 1.2rem;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.is-visible {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 0.3s ease;
}

.confirm-area {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.confirm-area.is-visible {
  opacity: 1;
  visibility: visible;
  max-height: 1000px;
  pointer-events: auto;
}

.required-label {
  display: inline-block;
  margin-left: 0.8rem;
  padding: 0.2em 0.6em;
  font-size: 1.2rem;
  background-color: #38453F;
  border-radius: 0.2em;
  vertical-align: middle;
  line-height: 1;
}

#back-to-form .arrow-icon {
  transform: scaleX(-1); /* 左向きに反転 */
}

.privacy-policy {
  margin-left: 6.3rem;
  margin-right: 6.3rem;
  padding-bottom: 12.3rem;
  font-family: "Noto Sans JP", "M PLUS 1p", "Kosugi Maru", "Yu Gothic UI", sans-serif;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    margin-inline: 1rem;
    padding-bottom: 8rem;
  }
}

.privacy-policy__title {
  text-align: center;
  margin-bottom: 9.4rem;
  font-weight: 300;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title {
    margin-bottom: 5rem;
  }
}

.privacy-policy__step {
  margin-left: 6.3rem;
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__step {
    margin-left: 0rem;
  }
}

.privacy-policy__heading {
  position: relative;
  font-size: 3rem;
  margin-bottom: 4.7rem;
  padding-left: 6.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.privacy-policy__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4.8rem;
  height: 1px;
  transform: translateY(-50%);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .privacy-policy__heading {
    margin-bottom: 3rem;
    padding-left: 3rem;
  }
  .privacy-policy__heading::before {
    width: 2rem;
  }
}

.privacy-policy__text {
  font-weight: 400;
  line-height: 1.81;
  letter-spacing: 0.1em;
  padding-left: 1.8rem;
}

.privacy-policy__note {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.07;
  letter-spacing: 0.1em;
  padding-left: 1.8rem;
  margin-bottom: 5rem;
}

.privacy-policy__table {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .privacy-policy__table {
    width: 100%;
  }
}

.company__th--privacy {
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .company__th--privacy {
    padding-left: 1rem;
  }
}

.company__td--privacy {
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .company__td--privacy {
    padding-left: 1rem;
  }
}

.page-404 {
  padding: 8rem 0;
  text-align: center;
}
.page-404 .not-found__title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.page-404 .not-found__text {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.page-404 .not-found__btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  transition: background-color 0.3s;
}
.page-404 .not-found__btn:hover {
  background-color: #555;
}
/*# sourceMappingURL=style.css.map */