@charset "UTF-8";
br.sp {
  display: none;
}
@media (max-width: 450px) {
  br.sp {
    display: block;
  }
}
br.pc {
  display: block;
}
@media (max-width: 450px) {
  br.pc {
    display: none;
  }
}

html, body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  overflow-x: hidden; /* 横スクロールを無効にする */
  line-height: 1.8;
  font-size: 16px;
  color: #333333;
  background: #fff;
}

a {
  transition: all 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}

[id] {
  scroll-margin-top: 80px;
}

.header {
  padding-top: 48px;
  padding-left: 48px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 450px) {
  .header {
    padding-top: 20px;
    padding-left: 20px;
  }
}

.header-logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 1000px) {
  .header-logo img {
    width: 170px;
  }
}
@media (max-width: 450px) {
  .header-logo img {
    width: 34.6666666667vw;
  }
}

.footer {
  padding-top: 140px;
  padding-bottom: 140px;
  background: #121212;
  color: #fff;
  position: relative;
  z-index: 100;
}
@media (max-width: 1200px) {
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1000px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 48px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 403px;
  height: auto;
  aspect-ratio: 403/186;
  background: url("../../img/footer/deco.svg") no-repeat center center/contain;
  z-index: 1;
}
@media (max-width: 1000px) {
  .footer::after {
    right: 0;
  }
}
@media (max-width: 450px) {
  .footer::after {
    right: -42px;
    bottom: 340px;
  }
}

.footer-content {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .footer-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 52px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-info p {
  font-size: 14px;
  letter-spacing: 0.14em;
}
.footer-info p:nth-of-type(3) {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-nav {
  writing-mode: vertical-rl;
}

.footer-nav-ist {
  display: flex;
  gap: 26px;
  flex-direction: column;
}
.footer-nav-ist li a {
  letter-spacing: 0.06em;
}

.footer-copyright {
  margin-top: 17px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 450px) {
  .footer-copyright {
    margin-top: 38px;
  }
}

@media (max-width: 1400px) {
  .right-space {
    padding-right: 100px !important;
  }
}
@media (max-width: 1000px) {
  .right-space {
    padding-right: 20px !important;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  writing-mode: vertical-rl; /* 右→左へ縦に流れる */
  display: flex;
  gap: 30px;
  flex: 0 0 80px;
  z-index: 10;
  height: 100vh;
}
@media (max-width: 1000px) {
  .site-nav {
    display: none;
  }
}

.site-nav-cta {
  background: #8C7400;
  width: 80px;
  height: 220px;
  transition: all 0.3s ease;
  padding: 5px;
}
.site-nav-cta:hover {
  opacity: 1;
  background: #333;
}

.site-nav-cta-border {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #B0971E;
  border-radius: 2px;
  gap: 10px;
  transition: all 0.3s ease;
}
.site-nav-cta-border:hover {
  border: 1px solid #62615A;
  transition: all 0.3s ease;
}
.site-nav-cta-border img {
  width: 18.33px;
  height: auto;
}
.site-nav-cta-border span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav-list li {
  width: 100%;
}
.site-nav-list li a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.08em;
  width: 100%;
  display: flex;
  align-items: center;
}
.site-nav-list li a:hover {
  opacity: 1;
}
.site-nav-list li a:hover::before, .site-nav-list li a:focus-visible::before {
  transform: scaleY(1);
}
.site-nav-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4px;
  width: 2px;
  height: 100%;
  background: #333;
  transform: scaleY(0);
  transform-origin: top right;
  transition: transform 0.3s ease;
  z-index: 2;
  will-change: transform;
}

.common-title-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 450px) {
  .common-title-wrap {
    align-items: start;
  }
  .common-title-wrap.news-title-wrap {
    align-items: center;
  }
}

.common-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .common-title {
    position: relative;
    width: fit-content;
    font-size: 30px;
  }
  .common-title::after {
    content: "";
    position: absolute;
    width: 52px;
    right: -25px;
    top: 0;
    height: auto;
    aspect-ratio: 116.19/132;
    background: url("../../img/common/common-title/flower.svg") no-repeat center center/contain;
    z-index: -1;
  }
}
@media (max-width: 450px) {
  .common-title {
    font-size: min(7.4666666667vw, 28px);
  }
}

.common-title-en {
  font-size: 18px;
  font-family: "Crimson Text", serif;
  color: #8C7400;
  margin-top: -3px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (max-width: 450px) {
  .common-title-en {
    font-size: min(4.2666666667vw, 16px);
    margin-left: 6px;
  }
}

.common-title-2-wrap {
  display: flex;
  flex-direction: column-reverse;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 1000px) {
  .common-title-2-wrap {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    flex-direction: column;
  }
}

.common-title-2 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.15em;
  height: fit-content;
  position: relative;
  z-index: 4;
}
@media (max-width: 1000px) {
  .common-title-2 {
    letter-spacing: 0.02em;
  }
}
.common-title-2::after {
  content: "";
  position: absolute;
  width: 116.19px;
  height: auto;
  aspect-ratio: 116.19/132;
  background: url("../../img/common/common-title/flower.svg") no-repeat center center/contain;
  left: 0;
  bottom: -170px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .common-title-2::after {
    width: 80px;
    bottom: -88px;
  }
}
@media (max-width: 1000px) {
  .common-title-2::after {
    left: initial;
    bottom: initial;
    width: 52px;
    right: -25px;
    top: 0;
  }
}
@media (max-width: 1000px) {
  .common-title-2 {
    font-size: 32px;
    width: fit-content;
  }
}
@media (max-width: 450px) {
  .common-title-2 {
    font-size: min(7.4666666667vw, 28px);
  }
}

.common-title-2-en {
  font-size: 18px;
  font-weight: 600;
  font-family: "Crimson Text", serif;
  color: #8C7400;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .common-title-2-en {
    margin-left: 6px;
  }
}
@media (max-width: 450px) {
  .common-title-2-en {
    font-size: min(4.2666666667vw, 16px);
    margin-top: 7px;
  }
}

.common-btn {
  text-align: right;
}
.common-btn.common-btn-about {
  max-width: min(75vw, 1080px);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 450px) {
  .common-btn.common-btn-about {
    max-width: none;
  }
}
.common-btn a {
  position: relative;
  transition: all 0.3s ease;
  width: 180px;
}
.common-btn a:hover {
  opacity: 1;
}
.common-btn a:hover::before {
  transform: scale(1, 1);
}
.common-btn a:hover span::after {
  right: 0;
}
.common-btn a::before {
  background-color: #333;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1000px) {
  .common-btn a::before {
    display: none;
  }
}
.common-btn a::after {
  background-color: #ccc;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 1000px) {
  .common-btn a::after {
    background-color: #333;
    height: 1px;
  }
}
.common-btn a span {
  position: relative;
  font-weight: 600;
  width: 100%;
  text-align: left;
  display: block;
}
@media (max-width: 330px) {
  .common-btn a span {
    font-size: 4.8484848485vw;
  }
}
.common-btn a span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 24px;
  background: url("../../img/common/common-btn/arrow.svg") no-repeat center center/contain;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (max-width: 1000px) {
  .common-btn a span::after {
    right: 0;
  }
}

.audience {
  padding-top: 130px;
  padding-bottom: 167px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/bg/bg.png") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .audience {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .audience {
    padding-top: 56px;
    padding-bottom: 66px;
  }
}

.audience-title::after {
  display: none;
}
@media (max-width: 700px) {
  .audience-title::after {
    display: block;
  }
}

.audience-list {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 60px;
}
@media (max-width: 1000px) {
  .audience-list {
    margin-top: 50px;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .audience-list {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}
@media (max-width: 450px) {
  .audience-list {
    margin-top: 25px;
    gap: 48px;
  }
}

.audience-item figure img {
  width: 320px;
  height: auto;
}
@media (max-width: 450px) {
  .audience-item figure img {
    width: 270px;
  }
}
.audience-item figure figcaption {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 450px) {
  .audience-item figure figcaption {
    font-size: 5.3333333333vw, 20px;
    margin-top: 3px;
  }
}
.audience-item figure figcaption::after {
  content: "";
  position: absolute;
  width: 244px;
  height: auto;
  aspect-ratio: 244/22;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  background: url("../../../img/common/audience/deco.svg") no-repeat center center/contain;
}

.voice {
  padding-top: 140px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/voice/bg.webp") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .voice {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .voice {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 0 !important;
    padding-left: 0;
  }
}

.voice-top {
  max-width: 1260px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 158px;
  margin-left: -20px;
}
@media (min-width: 1441px) {
  .voice-top {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .voice-top {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 450px) {
  .voice-top {
    gap: 30px;
  }
}

.voice-title-wrap {
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .voice-title-wrap {
    margin-top: 0;
    padding-left: 20px;
  }
}

.voice-img img {
  width: 1000px;
  height: auto;
  border-radius: 0 8px 8px 0;
}
@media (min-width: 1441px) {
  .voice-img img {
    border-radius: 8px;
  }
}
@media (max-width: 1000px) {
  .voice-img img {
    border-radius: 8px;
  }
}
@media (max-width: 450px) {
  .voice-img img {
    border-radius: 0;
  }
}

.voice-list {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 800px) {
  .voice-list {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-top: 50px;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .voice-list {
    margin-top: 21px;
    gap: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.voice-item {
  background: #fff;
  padding: 40px;
  padding-bottom: 55px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 0px rgba(0, 0, 0, 0.04); /* 輪郭をうっすら */
  position: relative;
  border-radius: 4px;
}
@media (max-width: 1000px) {
  .voice-item {
    padding: 30px;
  }
}
@media (max-width: 450px) {
  .voice-item {
    padding: 30px 20px;
  }
}
.voice-item::after {
  content: "";
  position: absolute;
  width: 48px;
  height: auto;
  aspect-ratio: 48/36;
  background: url("../../img/common/voice/deco.svg") no-repeat center center/contain;
  top: 40px;
  right: 40px;
}
@media (max-width: 1000px) {
  .voice-item::after {
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 450px) {
  .voice-item::after {
    top: 48px;
    right: 20px;
  }
}
.voice-item dt figure {
  display: flex;
  align-items: center;
  gap: 20px;
}
.voice-item dt figure img {
  width: 72px;
  height: auto;
}
.voice-item dt figure figcaption {
  font-size: 18px;
  font-weight: 600;
}
.voice-item dd {
  margin-top: 20px;
}
.voice-item dd blockquote p {
  line-height: 1.8;
}
@media (max-width: 450px) {
  .voice-item dd blockquote p {
    font-size: 15px;
  }
}

.products {
  padding-top: 133px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/bg/bg.png") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .products {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .products {
    padding-top: 55px;
    padding-bottom: 60px;
  }
  .products.contact-cta-products {
    padding-top: 120px;
  }
}

.products-list {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 51px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 1000px) {
  .products-list {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
@media (max-width: 1000px) {
  .products-list {
    margin-top: 40px;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .products-list {
    margin-top: 26px;
    gap: 19px;
  }
}
.products-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products-img img {
  border-radius: 10px 10px 0 0;
  display: block;
  width: 100%;
  height: auto;
}

.products-body {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1000px) {
  .products-body {
    padding: 30px;
  }
}
@media (max-width: 450px) {
  .products-body {
    padding: 30px 20px;
  }
}
.products-body h3 {
  font-size: 26px;
  font-weight: 600;
}
.products-body h3 span {
  font-size: 18px;
}
@media (max-width: 450px) {
  .products-body h3 {
    font-size: 22px;
  }
}
.products-body p {
  margin-top: 11px;
  margin-bottom: 54px;
  font-size: 17px;
}
@media (max-width: 1000px) {
  .products-body p {
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .products-body p {
    font-size: 15px;
    margin-bottom: 19px;
  }
}

.products-link {
  margin-top: auto;
}
.products-link a {
  width: 100%;
  background: #000;
  color: #fff;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 450px) {
  .products-link a {
    height: 60px;
    line-height: 60px;
  }
}
.products-link a:hover {
  opacity: 1;
  transition: all 0.3s ease;
  background: #8C7400;
}
.products-link a span {
  position: relative;
  font-size: 18px;
}
@media (max-width: 450px) {
  .products-link a span {
    font-size: 17px;
  }
}
.products-link a span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("../../img/common/products/arrow-white.svg") no-repeat center center/contain;
  top: 54%;
  transform: translateY(-50%);
  right: -20px;
}
.products-link.products-link-mitsukuroume {
  display: flex;
  gap: 19px;
  position: relative;
}
@media (max-width: 450px) {
  .products-link.products-link-mitsukuroume {
    gap: 16px;
  }
}
@media (max-width: 1100px) {
  .products-link.products-link-mitsukuroume {
    flex-direction: column;
  }
}
.products-link.products-link-mitsukuroume p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  top: -55px;
}
@media (max-width: 1000px) {
  .products-link.products-link-mitsukuroume p {
    position: relative;
    width: fit-content;
    top: 0;
    margin: 0;
  }
}
.products-link.products-link-mitsukuroume p::after {
  content: "";
  position: absolute;
  width: 12.97px;
  height: auto;
  aspect-ratio: 12.97/7.13;
  background: url("../../img/common/products/arrow-bottom.svg") no-repeat center center/contain;
  top: 54%;
  transform: translateY(-50%);
  right: -15px;
}
.products-link.products-link-mitsukuroume a span {
  padding-right: 22px;
}
.products-link.products-link-mitsukuroume a span::after {
  right: 0;
}
.products-link.products-link-mitsukuroume a:nth-of-type(2) {
  background: #fff;
  color: #121212;
  border: 1px solid #121212;
}
.products-link.products-link-mitsukuroume a:nth-of-type(2) span::after {
  background: url("../../img/common/products/arrow-black.svg") no-repeat center center/contain;
}

.cta {
  padding-top: 140px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/cta/bg.webp") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cta-content {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  border-radius: 8px;
  padding-top: 91px;
  padding-bottom: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 0px rgba(0, 0, 0, 0.04); /* 輪郭をうっすら */
  position: relative;
}
@media (max-width: 1000px) {
  .cta-content {
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 600px;
  }
}
@media (max-width: 450px) {
  .cta-content {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 45px;
    padding-bottom: 48px;
  }
}
.cta-content::before {
  content: "";
  position: absolute;
  width: 175px;
  height: auto;
  aspect-ratio: 175/172;
  background: url("../../img/common/cta/deco.svg") no-repeat center center/contain;
  top: 0;
  right: 0;
}
@media (max-width: 1000px) {
  .cta-content::before {
    width: 100px;
  }
}
@media (max-width: 450px) {
  .cta-content::before {
    width: 71px;
  }
}
.cta-content::after {
  content: "";
  position: absolute;
  width: 174px;
  height: auto;
  aspect-ratio: 174/131;
  background: url("../../img/common/cta/kuroume.svg") no-repeat center center/contain;
  left: -60px;
  bottom: -60px;
}
@media (max-width: 1300px) {
  .cta-content::after {
    left: 0;
  }
}
@media (max-width: 1000px) {
  .cta-content::after {
    width: 100px;
  }
}
@media (max-width: 450px) {
  .cta-content::after {
    width: 82px;
    bottom: -33px;
  }
}

@media (max-width: 450px) {
  .cta-title-wrap {
    align-items: center;
  }
  .cta-title-wrap .common-title-en {
    margin-left: 0;
  }
}

@media (max-width: 450px) {
  .cta-title::after {
    display: none;
  }
}

.cta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 53px;
  gap: 40px;
  max-width: 840px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .cta-list {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .cta-list {
    margin-top: 25px;
    gap: 16px;
  }
}
.cta-list li:nth-of-type(1) a {
  background: #8C7400;
  font-family: "Noto Serif", serif;
}
.cta-list li:nth-of-type(1) a:hover {
  opacity: 1;
  transition: all 0.3s ease;
  background: #121212;
}
.cta-list li:nth-of-type(1) a:hover > span {
  border: 1px solid #62615A;
}
.cta-list li:nth-of-type(1) a > span {
  font-size: 32px;
  border: 1px solid #B0971E;
  gap: 12px;
}
@media (max-width: 1000px) {
  .cta-list li:nth-of-type(1) a > span {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .cta-list li:nth-of-type(1) a > span {
    font-size: min(6.9333333333vw, 26px);
    gap: 5px;
  }
}
.cta-list li:nth-of-type(2) a {
  background: #121212;
}
.cta-list li:nth-of-type(2) a:hover {
  opacity: 1;
  transition: all 0.3s ease;
  background: #8C7400;
}
.cta-list li:nth-of-type(2) a:hover > span {
  border: 1px solid #B0971E;
}
.cta-list li:nth-of-type(2) a > span {
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #62615A;
  gap: 12px;
}
@media (max-width: 450px) {
  .cta-list li:nth-of-type(2) a > span {
    font-size: min(4.5333333333vw, 17px);
  }
}
.cta-list li a {
  height: 80px;
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 450px) {
  .cta-list li a {
    height: 70px;
  }
}
.cta-list li a > span {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.lower-top {
  text-align: center;
  padding-top: 124px;
  padding-bottom: 132px;
  background: url("../../img/common/lower-top/bg.webp") no-repeat center center/cover;
  letter-spacing: 0.06em;
}
@media (max-width: 1000px) {
  .lower-top {
    padding-bottom: 100px;
    padding-top: 200px;
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .lower-top {
    padding-top: 160px;
    padding-bottom: 62px;
  }
}
@media (max-width: 450px) {
  .lower-top.lower-top-company {
    padding-bottom: 84px;
  }
}
.lower-top h1 {
  font-size: 40px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 1000px) {
  .lower-top h1 {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .lower-top h1 {
    font-size: 32px;
  }
}
.lower-top h1::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: #C2BFB0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
}
@media (max-width: 450px) {
  .lower-top h1::after {
    bottom: -12px;
  }
}
.lower-top p {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .lower-top p {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .lower-top p {
    font-size: 16px;
    margin-top: 30px;
    line-height: 1.5;
  }
}

.common-top {
  display: flex;
  gap: 138px;
  padding-right: 20px;
  margin-bottom: -55px;
  background: url("../../img/common/common-top/bg.webp") no-repeat center center/cover;
}
@media (min-width: 1441px) {
  .common-top {
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .common-top {
    flex-direction: column;
    gap: 60px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    margin-bottom: -132px;
    padding-right: 0 !important;
  }
}
@media (max-width: 450px) {
  .common-top {
    gap: 40px;
    margin-bottom: -107px;
  }
}
.common-top .common-title-2-wrap {
  margin-left: 20px;
  margin-top: 60px;
}
.common-top .common-title-2-wrap .common-title-2 {
  letter-spacing: 0.18em;
}
@media (max-width: 1000px) {
  .common-top .common-title-2-wrap .common-title-2 {
    letter-spacing: 0.02em;
  }
}
@media (max-width: 1000px) {
  .common-top .common-title-2-wrap {
    margin-top: 0;
  }
}

.common-img {
  position: relative;
  z-index: 2;
}
.common-img img {
  width: 1000px;
  height: auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .common-img img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
}

.js-fade-in {
  /*追加*/
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(50px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

.drawer-open {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  display: none;
}
@media (max-width: 1000px) {
  .drawer-open {
    display: block;
  }
}
.drawer-open img {
  display: block;
  width: 90px;
  height: auto;
}
@media (max-width: 450px) {
  .drawer-open img {
    width: 72px;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  transform: translateY(-100%);
  pointer-events: none;
  z-index: 101;
  transition: all 0.5s ease;
  background: #fff;
}
.drawer.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.drawer-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background: url("../../img/drawer/bg.webp") no-repeat center center/cover;
}

.drawer-content {
  padding: 20px;
  padding-bottom: 40px;
}

.drawer-close {
  position: absolute;
  top: 0;
  right: 0;
}
.drawer-close img {
  width: 90px;
  height: auto;
}
@media (max-width: 450px) {
  .drawer-close img {
    width: 72px;
  }
}

.drawer-logo img {
  width: 130px;
  height: auto;
  aspect-ratio: 130/92;
}

.drawer-list {
  margin-top: 30px;
  max-width: 600px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.drawer-list li a {
  font-size: 20px;
  position: relative;
  display: block;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E1DFD6;
}
@media (max-width: 450px) {
  .drawer-list li a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.drawer-list li a::after {
  content: "";
  position: absolute;
  width: 9px;
  height: auto;
  aspect-ratio: 9/16;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url("../../img/drawer/arrow.svg") no-repeat center center/contain;
}

.drawer-cta {
  margin-top: 40px;
  display: block;
  height: 70px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #8C7400;
  border-radius: 4px;
  padding: 5px;
  transition: all 0.3s ease;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.drawer-cta:hover {
  opacity: 1;
  transition: all 0.3s ease;
  background: #121212;
  color: #fff;
}
.drawer-cta:hover > span {
  border: 1px solid #62615A;
}
.drawer-cta > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  height: 100%;
  width: 100%;
  border: 1px solid #B0971E;
  border-radius: 2px;
}
/* 画面スクロール固定用（JSで付与） */
.body--lock {
  height: 100%;
  overflow: hidden;
}

.fv {
  position: relative;
  display: flex;
  justify-content: start;
  padding-top: 216px;
  padding-left: 20px;
  gap: clamp(20px, 8.2638888889vw, 119px);
  gap: 30px;
  padding-bottom: 136px;
  padding-left: 100px;
}
@media (min-width: 1441px) {
  .fv {
    max-width: 1440px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1280px) {
  .fv {
    gap: 0;
  }
}
@media (max-width: 1000px) {
  .fv {
    flex-direction: column-reverse;
    align-items: center;
    margin-right: 0;
    padding-bottom: 90px;
    padding-left: 0;
  }
}
@media (max-width: 450px) {
  .fv {
    padding-top: 143px;
    padding-bottom: 60px;
  }
}

.fv-text {
  margin-top: clamp(100px, 11.3194444444vw, 163px);
}
@media (max-width: 1000px) {
  .fv-text {
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 450px) {
  .fv-text {
    margin-left: 20px;
    margin-top: 2px;
  }
}
.fv-text h1 {
  letter-spacing: 0.06em;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1360px) {
  .fv-text h1 {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .fv-text h1 {
    font-size: min(8.5333333333vw, 32px);
  }
}
.fv-text p {
  margin-top: 32px;
  font-size: 20px;
}
@media (max-width: 450px) {
  .fv-text p {
    margin-top: 20px;
    font-size: 16px;
    font-size: min(4.2666666667vw, 16px);
  }
}

.fv-img {
  max-width: clamp(300px, 43.75vw, 630px);
  width: 100%;
}
@media (max-width: 450px) {
  .fv-img {
    margin-left: auto;
    margin-right: 20px;
  }
}
@media (max-width: 1000px) {
  .fv-img {
    position: relative;
    width: 100%;
    text-align: center;
    max-width: none;
  }
}
@media (max-width: 450px) {
  .fv-img {
    text-align: right;
  }
}
.fv-img img {
  height: auto;
  width: 100%;
}
@media (max-width: 1000px) {
  .fv-img img {
    width: 400px;
  }
}
@media (max-width: 450px) {
  .fv-img img {
    max-width: 80vw;
    margin-right: 20px;
  }
}

.fv-scroll-pc {
  position: absolute;
  bottom: 203px;
  left: 42px;
  writing-mode: vertical-rl;
}
@media (max-width: 1000px) {
  .fv-scroll-pc {
    display: none;
  }
}
.fv-scroll-pc::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -200px;
  content: "";
  height: 176px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
.fv-scroll-pc::after {
  background-color: #ccc;
  bottom: -200px;
  content: "";
  height: 176px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

.fv-scroll-tab {
  display: none;
  position: absolute;
  top: 100px;
  left: 48px;
  writing-mode: vertical-rl;
}
@media (max-width: 1000px) {
  .fv-scroll-tab {
    display: block;
  }
}
@media (max-width: 600px) {
  .fv-scroll-tab {
    left: 20px;
  }
}
@media (max-width: 450px) {
  .fv-scroll-tab {
    font-size: min(3.7333333333vw, 14px);
    top: min(18.6666666667vw, 70px);
    left: 15px;
    top: 53px;
  }
}
.fv-scroll-tab::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media (max-width: 450px) {
  .fv-scroll-tab::before {
    height: min(21.3333333333vw, 80px);
    bottom: -87px;
    bottom: -23.2vw;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.news {
  background: url("../../../img/page/top/news/bg.webp") no-repeat center center/cover;
  padding-top: 85px;
  padding-bottom: 100px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1000px) {
  .news {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .news {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

.news-title {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .news-title {
    max-width: 600px;
  }
}
.news-title::before {
  content: "";
  position: absolute;
  width: 41%;
  height: 1px;
  top: 58%;
  background: #C2BFB0;
  right: 2px;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .news-title::before {
    width: 34%;
    top: 57%;
  }
}
@media (max-width: 450px) {
  .news-title::before {
    width: 30%;
    top: 45%;
  }
}
@media (max-width: 350px) {
  .news-title::before {
    top: 47%;
  }
}
@media (max-width: 320px) {
  .news-title::before {
    top: 42%;
  }
}
@media (max-width: 300px) {
  .news-title::before {
    top: 38%;
  }
}
@media (max-width: 280px) {
  .news-title::before {
    top: 34%;
  }
}
@media (max-width: 260px) {
  .news-title::before {
    top: 30%;
  }
}
@media (max-width: 240px) {
  .news-title::before {
    top: 26%;
  }
}
@media (max-width: 220px) {
  .news-title::before {
    top: 22%;
  }
}
@media (max-width: 200px) {
  .news-title::before {
    top: 18%;
  }
}
.news-title::after {
  content: "";
  position: absolute;
  width: 41%;
  height: 1px;
  top: 59%;
  background: #C2BFB0;
  left: 2px;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .news-title::after {
    width: 34%;
    top: 57%;
  }
}
@media (max-width: 450px) {
  .news-title::after {
    width: 30%;
    top: 45%;
  }
}
@media (max-width: 350px) {
  .news-title::after {
    top: 47%;
  }
}
@media (max-width: 320px) {
  .news-title::after {
    top: 42%;
  }
}
@media (max-width: 300px) {
  .news-title::after {
    top: 38%;
  }
}
@media (max-width: 280px) {
  .news-title::after {
    top: 34%;
  }
}
@media (max-width: 260px) {
  .news-title::after {
    top: 30%;
  }
}
@media (max-width: 240px) {
  .news-title::after {
    top: 26%;
  }
}
@media (max-width: 220px) {
  .news-title::after {
    top: 22%;
  }
}
@media (max-width: 200px) {
  .news-title::after {
    top: 18%;
  }
}

.news-card {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #C2BFB0;
  border-top: none;
  border-radius: 4px;
  margin-top: -50px;
}
@media (max-width: 1000px) {
  .news-card {
    max-width: 600px;
  }
}

.news-content {
  padding: 60px;
  padding-top: 100px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: row-reverse;
  gap: 48px;
}
@media (max-width: 1000px) {
  .news-content {
    padding: 30px;
    padding-top: 80px;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .news-content {
    padding: 20px;
    padding-top: 64px;
    gap: 10px;
  }
}

.news-img {
  flex: 0 0 280px;
}
@media (max-width: 1000px) {
  .news-img {
    flex: initial;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .news-img img {
    max-width: 400px;
    width: 100%;
  }
}

.news-card-body h3 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .news-card-body h3 {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .news-card-body h3 {
    font-size: 18px;
  }
}
.news-card-body p {
  margin-top: 8px;
}
@media (max-width: 450px) {
  .news-card-body p {
    font-size: 14px;
    margin-top: 11px;
  }
}
.news-card-body time {
  font-size: 18px;
  font-family: "Crimson Text", serif;
  color: #8C7400;
  display: block;
  margin-top: 5px;
}
@media (max-width: 1000px) {
  .news-card-body time {
    font-size: 16px;
    display: block;
    text-align: right;
  }
}
@media (max-width: 450px) {
  .news-card-body time {
    font-size: 14px;
    margin-top: 2px;
  }
}

.about {
  padding-top: 180px;
  padding-bottom: 81px;
}
@media (max-width: 1000px) {
  .about {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .about {
    padding-top: 60px;
    padding-bottom: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.about-title-wrap {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  flex-direction: column-reverse;
}
@media (max-width: 500px) {
  .about-title-wrap {
    margin-left: 34px;
  }
}

.about-title {
  letter-spacing: 0.15em;
}
.about-title::after {
  display: none;
}
@media (max-width: 450px) {
  .about-title {
    font-size: min(8vw, 30px);
    letter-spacing: 0.1em;
  }
}

.about-content {
  max-width: fit-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 75px;
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .about-content {
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 33px;
  }
}
.about-content::before {
  content: "";
  position: absolute;
  width: 244px;
  height: auto;
  aspect-ratio: 244/179;
  background: url("../../../img/page/top/about/aoume.svg") no-repeat center center/contain;
  top: -240px;
  right: -300px;
}
@media (max-width: 1300px) {
  .about-content::before {
    width: 200px;
    right: -160px;
  }
}
@media (max-width: 1100px) {
  .about-content::before {
    width: 150px;
    right: 0;
    top: -150px;
  }
}
@media (max-width: 500px) {
  .about-content::before {
    width: 100px;
    top: -40px;
  }
}
@media (max-width: 330px) {
  .about-content::before {
    width: 80px;
  }
}
@media (max-width: 270px) {
  .about-content::before {
    width: 60px;
  }
}
.about-content::after {
  content: "";
  position: absolute;
  width: 200px;
  height: auto;
  aspect-ratio: 200/151;
  background: url("../../../img/page/top/about/kuroume.svg") no-repeat center center/contain;
  bottom: -100px;
  left: -355px;
}
@media (max-width: 1300px) {
  .about-content::after {
    width: 180px;
    left: -240px;
  }
}
@media (max-width: 1100px) {
  .about-content::after {
    width: 130px;
    left: 10px;
    bottom: -85px;
  }
}
@media (max-width: 500px) {
  .about-content::after {
    width: 82px;
    left: 0;
    bottom: -90px;
  }
}
@media (max-width: 330px) {
  .about-content::after {
    width: 60px;
  }
}
@media (max-width: 270px) {
  .about-content::after {
    width: 40px;
  }
}

.about-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.2em;
  font-feature-settings: "vpal";
}
@media (max-width: 500px) {
  .about-text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    line-height: 1.8;
    font-size: 15px;
    letter-spacing: 0.02em;
  }
  .about-text br {
    display: none;
  }
  .about-text br.is-sp {
    display: block;
  }
}

.company {
  padding-top: 88px;
  padding-bottom: 150px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1000px) {
  .company {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .company {
    padding-top: 49px;
    padding-bottom: 69px;
    padding-left: 0;
    padding-right: 0 !important;
  }
}

@media (min-width: 1441px) {
  .company-content {
    max-width: 1260px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .company-content {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 450px) {
  .company-content {
    max-width: none;
  }
}

.company-top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 158px;
  margin-left: -20px;
}
@media (min-width: 1441px) {
  .company-top {
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  .company-top {
    margin-left: 0;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 450px) {
  .company-top {
    gap: 25px;
  }
}

.company-title-wrap {
  margin-top: 68px;
}
@media (max-width: 1000px) {
  .company-title-wrap {
    margin-top: 0;
  }
}
@media (max-width: 450px) {
  .company-title-wrap {
    padding-left: 20px;
  }
}

.company-img img {
  width: 1000px;
  height: auto;
}
@media (min-width: 1441px) {
  .company-img img {
    border-radius: 8px;
  }
}
@media (max-width: 1000px) {
  .company-img img {
    width: 100%;
    border-radius: 8px;
  }
}
@media (max-width: 450px) {
  .company-img img {
    border-radius: 0;
  }
}

.company-bottom {
  margin-top: 74px;
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1000px) {
  .company-bottom {
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .company-bottom {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 21px;
    gap: 16px;
  }
}

.company-lead {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  flex: 0 0 fit-content;
}
@media (max-width: 1000px) {
  .company-lead {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .company-lead {
    font-size: min(6.4vw, 24px);
    letter-spacing: 0.02em;
  }
}

.company-text {
  margin-top: 5px;
  max-width: 600px;
}
.company-text .common-btn {
  margin-top: 49px;
}
@media (max-width: 450px) {
  .company-text .common-btn {
    margin-top: 30px;
  }
}
@media (max-width: 450px) {
  .company-text p {
    font-size: 15px;
  }
}

.faq {
  padding-top: 146px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: 35px;
}
@media (max-width: 1000px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.faq-content {
  max-width: 1040px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 113px;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .faq-content {
    flex-direction: column;
    max-width: 600px;
    gap: 60px;
  }
}
@media (max-width: 450px) {
  .faq-content {
    gap: 31px;
  }
}

.faq-title-wrap {
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .faq-title-wrap {
    margin-top: 0;
  }
}

.faq-list {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (max-width: 1000px) {
  .faq-list {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .faq-list {
    gap: 31px;
  }
}

.faq-row {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 450px) {
  .faq-row {
    gap: 23px;
  }
}
.faq-row dt {
  padding-left: 74px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 450px) {
  .faq-row dt {
    font-size: 17px;
    padding-left: 71px;
  }
}
.faq-row dt::before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  background: url("../../../img/page/top/faq/q.svg") no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
@media (max-width: 450px) {
  .faq-row dt::before {
    top: -6px;
    transform: initial;
  }
}
.faq-row dd {
  padding: 18px;
  padding-right: 22px;
  line-height: 1.5;
  padding-left: 69px;
  background: #F7F6F3;
  position: relative;
  font-size: 18px;
  border-radius: 4px;
}
@media (max-width: 450px) {
  .faq-row dd {
    padding-left: 72px;
    font-size: 15px;
  }
}
.faq-row dd::before {
  content: "";
  position: absolute;
  width: 39px;
  height: 39px;
  background: url("../../../img/page/top/faq/a.svg") no-repeat center center/contain;
  left: 20px;
  top: 20px;
}

.deco-img {
  height: 400px;
}
@media (max-width: 1000px) {
  .deco-img {
    height: 300px;
  }
}
@media (max-width: 700px) {
  .deco-img {
    height: 250px;
  }
}
@media (max-width: 450px) {
  .deco-img {
    height: 180px;
  }
}
.deco-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 1920px) {
  .deco-img img {
    height: 500px;
  }
}

.citrate {
  padding-top: 188px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/bg/bg.png") no-repeat center center/cover;
}
@media (max-width: 450px) {
  .citrate {
    padding-top: 135px;
    padding-bottom: 52px;
  }
}

.citrate-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .citrate-title {
    font-size: 25px;
  }
}
@media (max-width: 450px) {
  .citrate-title {
    font-size: clamp(20px, 5.8666666667vw, 22px);
    text-align: left;
  }
}

.citrate-text {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 700px) {
  .citrate-text br.pc {
    display: none;
  }
}
@media (max-width: 700px) {
  .citrate-text {
    text-align: left;
  }
}
@media (max-width: 450px) {
  .citrate-text {
    margin-top: 25px;
    text-align: left;
  }
}

.citrate-graph {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 600px) {
  .citrate-graph {
    max-width: 335px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 450px) {
  .citrate-graph {
    margin-top: 30px;
  }
}
.citrate-graph img {
  width: 1080px;
  height: auto;
}
@media (max-width: 600px) {
  .citrate-graph img {
    width: 100%;
  }
}

.citrate-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nutrients {
  padding-top: 159px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../../img/page/about/features/nutrients/bg.webp") no-repeat center center/cover;
  position: relative;
}
@media (max-width: 1000px) {
  .nutrients {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .nutrients {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.nutrients::before {
  content: "";
  position: absolute;
  width: 256px;
  height: auto;
  aspect-ratio: 256/229;
  background: url("../../../img/page/about/features/nutrients/kuroume.svg") no-repeat center center/contain;
  top: -77px;
  left: 50%;
  transform: translateX(calc(-50% - 419px));
}
@media (max-width: 1100px) {
  .nutrients::before {
    transform: translateX(calc(-50% - 390px));
  }
}
@media (max-width: 1000px) {
  .nutrients::before {
    width: 130px;
    transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .nutrients::before {
    width: 99px;
    transform: translateX(-50%);
    top: -32px;
  }
}
.nutrients::after {
  content: "";
  position: absolute;
  width: 164.3px;
  height: auto;
  aspect-ratio: 164.3/127.22;
  bottom: -62.22px;
  background: url("../../../img/page/about/features/nutrients/aoume.svg") no-repeat center center/contain;
  left: 50%;
  transform: translateX(calc(-50% + 522px));
}
@media (max-width: 1400px) {
  .nutrients::after {
    transform: translateX(calc(-50% + 325px));
  }
}
@media (max-width: 1000px) {
  .nutrients::after {
    transform: translateX(calc(-50% + 150px));
    width: 120px;
  }
}
@media (max-width: 450px) {
  .nutrients::after {
    width: 104.61px;
    transform: translateX(calc(-50% + 120px));
    bottom: -40px;
  }
}

.nutrients-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 1000px) {
  .nutrients-title {
    font-size: 25px;
  }
}
@media (max-width: 450px) {
  .nutrients-title {
    font-size: clamp(20px, 5.8666666667vw, 22px);
    text-align: left;
  }
}

.nutrients-text {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 700px) {
  .nutrients-text br.pc {
    display: none;
  }
}
@media (max-width: 700px) {
  .nutrients-text {
    text-align: left;
  }
}
@media (max-width: 450px) {
  .nutrients-text {
    margin-top: 25px;
    text-align: left;
  }
}

.nutrients-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 700px) {
  .nutrients-content {
    max-width: 500px;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
}
@media (max-width: 450px) {
  .nutrients-content {
    margin-top: 32px;
    gap: 20px;
  }
}

.nutrients-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 0px rgba(0, 0, 0, 0.04); /* 輪郭をうっすら */
  padding: 12px;
  padding-bottom: 0;
  border-radius: 8px;
}
.nutrients-card:nth-of-type(1) .nutrients-card-title {
  background: #62615A;
}
.nutrients-card:nth-of-type(2) .nutrients-card-title {
  background: #B0971E;
}
.nutrients-card:nth-of-type(1) .nutrients-row:nth-of-type(1) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-1.svg") no-repeat center center/contain;
}
.nutrients-card:nth-of-type(1) .nutrients-row:nth-of-type(2) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-2.svg") no-repeat center center/contain;
}
.nutrients-card:nth-of-type(1) .nutrients-row:nth-of-type(3) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-3.svg") no-repeat center center/contain;
}
.nutrients-card:nth-of-type(2) .nutrients-row:nth-of-type(1) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-4.svg") no-repeat center center/contain;
}
.nutrients-card:nth-of-type(2) .nutrients-row:nth-of-type(2) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-5.svg") no-repeat center center/contain;
}
.nutrients-card:nth-of-type(2) .nutrients-row:nth-of-type(3) dt::before {
  background: url("../../../img/page/about/features/nutrients/icon-6.svg") no-repeat center center/contain;
}

.nutrients-card-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  height: 68px;
  line-height: 68px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 1000px) {
  .nutrients-card-title {
    font-size: 22px;
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 450px) {
  .nutrients-card-title {
    font-size: 20px;
    height: 56px;
    line-height: 56px;
  }
}

.nutrients-row {
  padding-top: 29px;
  padding-bottom: 29px;
}
.nutrients-row:nth-of-type(3) {
  padding-top: 20px;
}
@media (max-width: 450px) {
  .nutrients-row:nth-of-type(3) {
    padding-top: 19px;
    padding-bottom: 25px;
  }
}
@media (max-width: 1000px) {
  .nutrients-row {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .nutrients-row {
    padding-top: 19px;
    padding-bottom: 11px;
  }
}
.nutrients-row:not(:first-of-type) {
  border-top: 1px solid #E1DFD6;
}
.nutrients-row dt {
  padding-left: 58px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1em;
}
@media (max-width: 450px) {
  .nutrients-row dt {
    padding-left: 49px;
    font-size: 18px;
  }
}
.nutrients-row dt::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 450px) {
  .nutrients-row dt::before {
    left: 9px;
  }
}
.nutrients-row dd {
  padding-left: 58px;
  margin-top: 5px;
  line-height: 1.5;
}
@media (max-width: 450px) {
  .nutrients-row dd {
    padding-left: 49px;
    font-size: 15px;
  }
}

.nutrients-note {
  margin-top: 40px;
  text-align: center;
  color: #62615A;
  font-size: 12px;
}
@media (max-width: 660px) {
  .nutrients-note {
    text-align: left;
  }
}

.process {
  padding-top: 131px;
  padding-bottom: 135px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../img/common/bg/bg.png") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .process {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .process {
    padding-top: 55px;
    padding-bottom: 57px;
  }
}

.process-list {
  margin-top: 54px;
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 53px;
}
@media (max-width: 770px) {
  .process-list {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 80px;
    margin-top: 40px;
  }
}
@media (max-width: 450px) {
  .process-list {
    margin-top: 27px;
    gap: 76px;
  }
}

.process-item {
  position: relative;
}
.process-item:nth-of-type(1)::after {
  display: none;
}
.process-item::after {
  content: "";
  position: absolute;
  background: url("../../../img/page/about/process/arrow.svg") no-repeat center center/contain;
  width: 48px;
  height: auto;
  aspect-ratio: 48/8;
  top: 43%;
  transform: translateY(-50%);
  left: -50px;
}
@media (max-width: 770px) {
  .process-item::after {
    top: initial;
    left: 52%;
    top: -45px;
    transform: translateX(-50%) rotate(90deg);
  }
}
.process-item figure img {
  width: 260px;
  height: auto;
}
@media (max-width: 450px) {
  .process-item figure img {
    width: 280px;
  }
}
.process-item figure figcaption {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 450px) {
  .process-item figure figcaption {
    margin-top: 5px;
  }
}

.craft {
  padding-top: 140px;
  padding-bottom: 147px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1000px) {
  .craft {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .craft {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 0 !important;
    padding-left: 0;
  }
}

.craft-top {
  max-width: 1260px;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 158px;
  margin-left: -20px;
}
@media (min-width: 1441px) {
  .craft-top {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .craft-top {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 450px) {
  .craft-top {
    gap: 25px;
  }
}

.craft-title-wrap {
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .craft-title-wrap {
    margin-top: 0;
    padding-left: 20px;
  }
}

.craft-img img {
  width: 1000px;
  height: auto;
  display: block;
  border-radius: 0 8px 8px 0;
}
@media (min-width: 1441px) {
  .craft-img img {
    border-radius: 8px;
  }
}
@media (max-width: 1000px) {
  .craft-img img {
    border-radius: 8px;
  }
}
@media (max-width: 450px) {
  .craft-img img {
    border-radius: 0;
  }
}

.craft-title {
  margin-top: 76px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.06em;
}
@media (max-width: 1000px) {
  .craft-title {
    font-size: 25px;
    margin-top: 60px;
  }
}
@media (max-width: 450px) {
  .craft-title {
    font-size: clamp(20px, 5.8666666667vw, 22px);
    text-align: left;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 37px;
  }
}

.craft-text {
  margin-top: 40px;
  text-align: center;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  .craft-text br {
    display: none;
  }
}
@media (max-width: 450px) {
  .craft-text br {
    display: block;
  }
}
@media (max-width: 750px) {
  .craft-text {
    text-align: left;
  }
}
@media (max-width: 450px) {
  .craft-text {
    margin-top: 21px;
    text-align: left;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 450px) {
  .craft-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.craft-list {
  background: #F9F7F5;
  max-width: 1150px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 35px;
  text-align: center;
  margin-top: 80px;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .craft-list {
    max-width: 600px;
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .craft-list {
    padding: 48px 10px 58px;
    margin-top: 32px;
  }
}
.craft-list p {
  font-size: 20px;
  color: #fff;
  background: #62615A;
  display: inline-block;
  text-align: center;
  max-width: 343px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 999px;
}
@media (max-width: 450px) {
  .craft-list p {
    max-width: 295px;
    height: 50px;
    line-height: 50px;
    font-size: clamp(16px, 4.8vw, 18px);
  }
}
.craft-list ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  gap: 90px;
  max-width: 990px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 700px) {
  .craft-list ol {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 40px;
  }
}
@media (max-width: 450px) {
  .craft-list ol {
    gap: 27.5px;
  }
}
.craft-list ol li {
  max-width: 270px;
  position: relative;
}
@media (max-width: 700px) {
  .craft-list ol li {
    max-width: 260px;
  }
}
@media (max-width: 450px) {
  .craft-list ol li {
    max-width: 240px;
  }
}
.craft-list ol li:nth-of-type(1)::after {
  display: none;
}
.craft-list ol li:after {
  content: "";
  position: absolute;
  width: 42px;
  height: auto;
  aspect-ratio: 42/42;
  background: url("../../../img/page/about/craft/arrow.svg") no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: -75px;
}
@media (max-width: 700px) {
  .craft-list ol li:after {
    top: initial;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    top: -40px;
  }
}
@media (max-width: 450px) {
  .craft-list ol li:after {
    width: 25px;
    top: -26px;
  }
}
.craft-list ol li img {
  width: 100%;
  height: auto;
  display: block;
}

.eat {
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../../img/page/about/eat/bg.webp") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .eat {
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .eat {
    padding-right: 0 !important;
    padding-left: 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 450px) {
  .eat-title-wrap {
    margin-left: 20px;
  }
}

.eat-img {
  margin-top: 42px;
}
@media (max-width: 450px) {
  .eat-img {
    margin-top: 17px;
  }
}
.eat-img img {
  max-width: 1080px;
  display: block;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .eat-img img {
    max-width: 600px;
  }
}
@media (max-width: 450px) {
  .eat-img img {
    border-radius: 0;
  }
}

.eat-text {
  margin-top: 48px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 670px) {
  .eat-text {
    text-align: left;
  }
}
@media (max-width: 450px) {
  .eat-text {
    margin-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 670px) {
  .eat-text br {
    display: none;
  }
}

.about-us .common-title-2-wrap-company {
  margin-top: 48px;
}

.about-us-content {
  padding-top: 155px;
  padding-bottom: 140px;
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  background: #fff;
}
@media (max-width: 1000px) {
  .about-us-content {
    padding-bottom: 110px;
  }
}
@media (max-width: 450px) {
  .about-us-content {
    padding-top: 106px;
    padding-bottom: 60px;
  }
}
.about-us-content::after {
  content: "";
  position: absolute;
  width: 615px;
  height: auto;
  aspect-ratio: 615/386;
  background: url("../../../img/page/comapny/about-us/deco.svg") no-repeat center center/contain;
  right: 0;
  bottom: 82px;
}
@media (max-width: 1000px) {
  .about-us-content::after {
    background: url("../../../img/page/comapny/about-us/deco-sp.svg") no-repeat center center/contain;
    height: auto;
    aspect-ratio: 179/112.35;
    width: 400px;
  }
}
@media (max-width: 450px) {
  .about-us-content::after {
    width: 179px;
    bottom: 0;
  }
}

.about-us-text {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 40px;
  flex-direction: column;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .about-us-text {
    margin-top: 40px;
    max-width: 600px;
  }
}
@media (max-width: 450px) {
  .about-us-text {
    font-size: 16px;
    margin-top: 30px;
    gap: 30px;
  }
}
.about-us-text p {
  line-height: 2.3;
}
@media (max-width: 1000px) {
  .about-us-text p {
    line-height: 1.8;
  }
}
@media (max-width: 1000px) {
  .about-us-text p span {
    display: none;
  }
}
@media (max-width: 1000px) {
  .about-us-text p br {
    display: none;
  }
  .about-us-text p:nth-of-type(1) br {
    display: block;
  }
  .about-us-text p:nth-of-type(5) br {
    display: block;
  }
}
.about-us-text p.about-us-text-sp {
  display: none;
}
@media (max-width: 1000px) {
  .about-us-text p.about-us-text-sp {
    display: block;
  }
}

.message {
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 140px;
}
@media (max-width: 1000px) {
  .message {
    padding-right: 0 !important;
    padding-left: 0;
    padding-bottom: 0;
  }
}

.message-content {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: url("../../img/common/bg/bg.png") no-repeat center center/cover;
  padding: 70px 20px;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .message-content {
    border-radius: 0;
  }
}
@media (max-width: 450px) {
  .message-content {
    padding: 56px 20px;
    padding-bottom: 50px;
  }
}

.message-info {
  max-width: 920px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 41px;
  display: flex;
  gap: 59px;
}
@media (max-width: 1000px) {
  .message-info {
    margin-top: 40px;
    gap: 30px;
    flex-direction: column-reverse;
    text-align: center;
    max-width: 600px;
  }
}
@media (max-width: 450px) {
  .message-info {
    margin-top: 30px;
    gap: 22px;
  }
}

.message-text {
  flex: 1 1 auto;
}
@media (max-width: 1000px) {
  .message-text {
    text-align: left;
  }
}
.message-text p {
  line-height: 2;
}
@media (max-width: 450px) {
  .message-text p {
    line-height: 1.8;
  }
}

.message-img {
  flex: 0 0 374px;
}
@media (max-width: 1000px) {
  .message-img {
    flex: initial;
    text-align: center;
  }
}
.message-img > img {
  width: 374px;
  height: auto;
  border-radius: 4px;
  display: block;
}
@media (max-width: 1000px) {
  .message-img > img {
    width: 335px;
    display: inline-block;
  }
}
@media (max-width: 450px) {
  .message-img > img {
    width: 100%;
  }
}
.message-img figcaption {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 1000px) {
  .message-img figcaption {
    display: none;
  }
}
.message-img figcaption span {
  font-size: 14px;
  margin-right: 8px;
}
.message-img figcaption ruby {
  margin-top: 8px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media (max-width: 450px) {
  .message-img figcaption ruby {
    margin-top: 10px;
  }
}
.message-img figcaption ruby rt {
  font-size: 12px;
  font-weight: 600;
  font-weight: 600;
}
.message-img figcaption ruby img {
  width: 107px;
  height: auto;
  display: block;
  padding-top: 3px;
}

.message-name-tab {
  margin-top: 30px;
  display: none;
  text-align: right;
}
@media (max-width: 1000px) {
  .message-name-tab {
    display: block;
  }
}
.message-name-tab span {
  font-size: 14px;
  margin-right: 5px;
  display: block;
  margin-bottom: 6px;
}
.message-name-tab ruby {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: fit-content;
  margin-left: auto;
}
.message-name-tab ruby rt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.message-name-tab ruby img {
  width: 107px;
  height: auto;
  display: block;
}

.overview {
  padding-top: 140px;
  padding-bottom: 146px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../../img/page/comapny/overview/bg.webp") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .overview {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .overview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.common-title-2-wrap-overview {
  margin-top: 68px;
}
@media (max-width: 1000px) {
  .common-title-2-wrap-overview {
    margin-top: 0;
  }
}

.overview-content {
  display: grid;
  grid-template-areas: "list map title";
  gap: 60px;
  max-width: 1035px;
  width: 100%;
  margin-left: 166px;
}
@media (min-width: 1441px) {
  .overview-content {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1350px) {
  .overview-content {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .overview-content {
    max-width: 600px;
    grid-template-columns: 1fr; /* 1列 */
    grid-template-areas: "title" "list" "map";
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .overview-content {
    gap: 26px;
  }
}

/* 3要素をエリアに割当 */
.overview-list {
  grid-area: list;
}

.overview-map {
  grid-area: map;
}

.overview-title {
  grid-area: title;
}

.overview-list {
  max-width: 431px;
  width: 100%;
}
@media (max-width: 1000px) {
  .overview-list {
    max-width: none;
  }
}

.overview-row {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E1DFD6;
  line-height: 1.5;
}
@media (max-width: 450px) {
  .overview-row {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.overview-row:nth-of-type(1) {
  padding-top: 0;
}
.overview-row:nth-of-type(3) {
  align-items: start;
}
@media (max-width: 1000px) {
  .overview-row:nth-of-type(3) {
    align-items: center;
  }
}
.overview-row dt {
  flex: 0 0 122px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .overview-row dt {
    flex: 0 0 100px;
  }
}
@media (max-width: 450px) {
  .overview-row dt {
    flex: 0 0 85px;
    font-size: 16px;
  }
}
.overview-row dd {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 450px) {
  .overview-row dd {
    font-size: 16px;
  }
}

.overview-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 422/588;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-width: 1000px) {
  .overview-map iframe {
    aspect-ratio: initial;
    height: 300px;
  }
}
@media (max-width: 450px) {
  .overview-map iframe {
    height: 216px;
  }
}

.tel {
  padding-top: 140px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../../img/page/contact/tel/bg.webp") no-repeat center center/cover;
}
@media (max-width: 1000px) {
  .tel {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .tel {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

@media (max-width: 450px) {
  .tel-title-wrap {
    align-items: center;
  }
}
@media (max-width: 450px) {
  .tel-title-wrap .common-title-en {
    margin-left: 0;
    margin-top: 5px;
  }
}

@media (max-width: 450px) {
  .tel-title {
    line-height: 1.3;
  }
}
.tel-title::after {
  display: none;
}

.tel-card {
  background: #fff;
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 71px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative; /* 輪郭をうっすら */
}
@media (max-width: 1000px) {
  .tel-card {
    padding: 60px 20px;
  }
}
@media (max-width: 450px) {
  .tel-card {
    padding: 48px 20px;
  }
}
.tel-card::before {
  content: "";
  position: absolute;
  width: 174px;
  height: auto;
  aspect-ratio: 174/131;
  background: url("../../../img/page/contact/tel/kuroume.svg") no-repeat center center/contain;
  bottom: -60px;
  left: -60px;
}
@media (max-width: 1280px) {
  .tel-card::before {
    left: 0;
  }
}
@media (max-width: 1000px) {
  .tel-card::before {
    width: 110px;
  }
}
@media (max-width: 450px) {
  .tel-card::before {
    width: 98px;
    bottom: -37px;
  }
}
.tel-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 175px;
  height: auto;
  aspect-ratio: 175/172;
  background: url("../../../img/page/contact/tel/deco.svg") no-repeat center center/contain;
}
@media (max-width: 1000px) {
  .tel-card::after {
    width: 100px;
  }
}
@media (max-width: 450px) {
  .tel-card::after {
    width: 71px;
  }
}
.tel-card a {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  gap: 16px;
  letter-spacing: 0.2em;
}
@media (max-width: 1000px) {
  .tel-card a {
    margin-top: 20px;
    gap: 10px;
  }
}
@media (max-width: 450px) {
  .tel-card a {
    margin-top: 19px;
    gap: 5px;
    letter-spacing: 0.12em;
  }
}
.tel-card a img {
  width: 42px;
  aspect-ratio: 42/42;
  height: auto;
}
@media (max-width: 1000px) {
  .tel-card a img {
    width: 34px;
  }
}
@media (max-width: 450px) {
  .tel-card a img {
    width: 26px;
  }
}
.tel-card a span {
  color: #8C7400;
  font-size: 56px;
  font-family: "Noto Serif", serif;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  .tel-card a span {
    font-size: 41px;
  }
}
@media (max-width: 450px) {
  .tel-card a span {
    font-size: 34px;
    font-size: clamp(26px, 9.0666666667vw, 34px);
  }
}

.tel-badges {
  max-width: 441px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 6px;
}
@media (max-width: 450px) {
  .tel-badges {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
  }
}

.tel-badge {
  display: flex;
  height: 34px;
  line-height: 34px;
  background: #D9D9D9;
  justify-content: center;
  border-radius: 999px;
  gap: 20px;
}
@media (max-width: 450px) {
  .tel-badge {
    height: 32px;
    line-height: 32px;
  }
}
@media (max-width: 450px) {
  .tel-badge dt {
    flex: 0 0 70px;
  }
}
.tel-note {
  text-align: center;
  margin-top: 48px;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 1000px) {
  .tel-note {
    margin-top: 35px;
  }
}
@media (max-width: 530px) {
  .tel-note {
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}
@media (max-width: 450px) {
  .tel-note {
    margin-top: 28px;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }
}
.tel-note small {
  font-size: 14px;
}

.form {
  padding-top: 140px;
  padding-bottom: 132px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 700px) {
  .form {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  .form {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 450px) {
  .common-title-form {
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .common-title-form::after {
    top: 33px;
  }
}

.contact-form {
  max-width: 850px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 700px) {
  .contact-form {
    margin-top: 40px;
  }
}
@media (max-width: 450px) {
  .contact-form {
    margin-top: 12px;
    gap: 17px;
  }
}

.form-row {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 700px) {
  .form-row {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
}
@media (max-width: 450px) {
  .form-row {
    gap: 9px;
  }
}
.form-row.form-row-zip, .form-row.form-row-message, .form-row.form-row-radio {
  align-items: start;
}
.form-row.form-row-zip dt, .form-row.form-row-message dt, .form-row.form-row-radio dt {
  margin-top: 7px;
}
@media (max-width: 700px) {
  .form-row.form-row-zip dt, .form-row.form-row-message dt, .form-row.form-row-radio dt {
    margin-top: 0;
  }
}
.form-row dt {
  flex: 0 0 250px;
  font-size: 18px;
  position: relative;
}
.form-row dt::after {
  content: "必須";
  position: absolute;
  font-size: 12px;
  color: #E77051;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid #E77051;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
@media (max-width: 700px) {
  .form-row dt {
    flex: initial;
  }
  .form-row dt::after {
    right: -60px;
  }
}
.form-row dd {
  flex: 1 1 auto;
}
@media (max-width: 700px) {
  .form-row dd {
    flex: initial;
    width: 100%;
  }
}
.form-row dd input, .form-row dd textarea {
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 700px) {
  .form-row dd input, .form-row dd textarea {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.form-row dd input {
  height: 50px;
  width: 100%;
}
.form-row dd textarea {
  padding-top: 10px;
  width: 100%;
  height: 191px;
  line-height: 1.3;
}

.name-split {
  display: flex;
  gap: 18px;
}
@media (max-width: 450px) {
  .name-split {
    gap: 10px;
  }
}

.address-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-wrap .postal-mark {
  position: relative;
}
.address-wrap .postal-mark::before {
  content: "〒";
  position: absolute;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.address-wrap input.postal-mark-input {
  width: calc(50% - 9px);
  padding-left: 37px;
}
@media (max-width: 450px) {
  .address-wrap input.postal-mark-input {
    width: calc(50% - 5px);
  }
}

.form-row-radio {
  display: grid;
  grid-template-columns: 250px 1fr; /* 左:見出し/右:入力 */
}
@media (max-width: 550px) {
  .form-row-radio {
    grid-template-columns: 1fr;
  }
}
.form-row-radio legend {
  font-size: 18px;
}

.form-radio-list {
  width: fit-content;
}
.form-radio-list li label {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .form-radio-list li label {
    font-size: 16px;
  }
}
.form-radio-list li label input {
  accent-color: #333333;
  width: 22px;
  height: auto;
  aspect-ratio: 22/22;
}

.form-btn {
  margin-top: 60px;
  text-align: center;
}
.form-btn button {
  max-width: 400px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  background: #050505;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 5px;
}
@media (max-width: 450px) {
  .form-btn button {
    height: 70px;
    line-height: 70px;
  }
}
.form-btn button span {
  color: #fff;
  font-size: 20px;
  border-radius: 2px;
  display: block;
  line-height: 1;
  border: 1px solid #62615A;
  line-height: 70px;
  height: 100%;
  position: relative;
}
@media (max-width: 450px) {
  .form-btn button span {
    line-height: 60px;
    font-size: 17px;
  }
}
.form-btn button span::after {
  content: "";
  position: absolute;
  width: 9px;
  height: auto;
  aspect-ratio: 9/16;
  background: url("../../../img/page/contact/form/arrow.svg") no-repeat center center/contain;
  right: 57px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 450px) {
  .form-btn button span::after {
    right: 11.2vw;
  }
}

.thanks {
  padding-top: 276px;
  padding-bottom: 274px;
  padding-right: 20px;
  padding-left: 20px;
  background: url("../../../img/page/contact-thanks/thanks/bg.webp") no-repeat center center/cover;
}
@media (max-width: 450px) {
  .thanks {
    padding-top: 204px;
    padding-bottom: 100px;
  }
}

.thanks-content {
  max-width: fit-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.thanks-content::after {
  content: "";
  position: absolute;
  width: 177px;
  height: auto;
  aspect-ratio: 177/130;
  background: url("../../../img/page/contact-thanks/thanks/aoume.svg") no-repeat center center/contain;
  top: -69px;
  right: -139px;
}
@media (max-width: 770px) {
  .thanks-content::after {
    top: -100px;
    width: 110px;
    right: 0;
  }
}
.thanks-content p {
  text-align: center;
}
.thanks-content p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 600;
  color: #8C7400;
}
.thanks-content p:nth-of-type(2) {
  font-size: 20px;
  font-weight: 500;
  margin-top: 32px;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .thanks-content p:nth-of-type(2) {
    text-align: left;
    font-size: 16px;
  }
  .thanks-content p:nth-of-type(2) br {
    display: none;
  }
}
.thanks-content h1 {
  text-align: center;
  margin-top: 21px;
  font-size: 40px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 540px) {
  .thanks-content h1 {
    margin-top: 3px;
    font-size: clamp(20px, 8.5333333333vw, 32px);
  }
}
.thanks-content h1::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background: #C2BFB0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
}

.common-title-wrap-confirm {
  align-items: center;
}

.confirm-title::after {
  display: none;
}

#formWrap {
  padding-top: 131px;
  padding-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1400px) {
  #formWrap {
    padding-top: 230px;
    padding-bottom: 100px;
  }
}
@media (max-width: 450px) {
  #formWrap {
    padding-top: 167px;
    padding-bottom: 60px;
  }
}
#formWrap h4 {
  margin-top: 200px;
}
#formWrap form {
  max-width: 840px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}
@media (max-width: 450px) {
  #formWrap form {
    margin-top: 48px;
  }
}
#formWrap form table tbody {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1000px) {
  #formWrap form table tbody {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  #formWrap form table tbody {
    gap: 20px;
  }
}
#formWrap form table tbody tr {
  display: flex;
  font-size: 18px;
}
@media (max-width: 700px) {
  #formWrap form table tbody tr {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  #formWrap form table tbody tr {
    font-size: 16px;
  }
}
#formWrap form table tbody tr th {
  font-weight: 600;
  flex: 0 0 271px;
  text-align: left;
}
@media (max-width: 700px) {
  #formWrap form table tbody tr th {
    flex: initial;
  }
}
#formWrap form table tbody tr td {
  line-height: 1.4;
}

.confirm-button-wrap {
  margin-top: 120px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 700px) {
  .confirm-button-wrap {
    grid-template-columns: 1fr;
    margin-top: 80px;
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .confirm-button-wrap {
    margin-top: 40px;
    gap: 16px;
  }
}
.confirm-button-wrap button {
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (max-width: 450px) {
  .confirm-button-wrap button {
    height: 70px;
    line-height: 70px;
  }
}
.confirm-button-wrap button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: auto;
  aspect-ratio: 9/16;
  top: 50%;
  transform: translateY(-50%);
}
.confirm-button-wrap button span {
  font-size: 20px;
  display: block;
  height: 100%;
  font-weight: 600;
  border-radius: 2px;
  line-height: 70px;
}
@media (max-width: 450px) {
  .confirm-button-wrap button span {
    font-size: 17px;
    line-height: 60px;
  }
}
.confirm-button-wrap button.confirm-button-back {
  background: #050505;
}
.confirm-button-wrap button.confirm-button-back:hover {
  transition: all 0.3s ease;
  background: #8C7400;
}
.confirm-button-wrap button.confirm-button-back:hover span {
  border: 1px solid #B0971E;
}
.confirm-button-wrap button.confirm-button-back::after {
  background: url("../../../img/page/contact-confirm/arrow-left.svg") no-repeat center center/contain;
  left: 60px;
}
.confirm-button-wrap button.confirm-button-back span {
  border: 1px solid #62615A;
}
.confirm-button-wrap button.confirm-button-submit {
  background: #8C7400;
}
.confirm-button-wrap button.confirm-button-submit:hover {
  transition: all 0.3s ease;
  background: #050505;
}
.confirm-button-wrap button.confirm-button-submit:hover span {
  border: 1px solid #62615A;
}
.confirm-button-wrap button.confirm-button-submit::after {
  background: url("../../../img/page/contact-confirm/arrow-right.svg") no-repeat center center/contain;
  right: 60px;
}
.confirm-button-wrap button.confirm-button-submit span {
  border: 1px solid #B0971E;
}