html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.5;
  scroll-behavior: smooth;
}

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

.u-wrapper {
  width: min(100% - 100px, 1440px);
  margin: 0 auto;
}
@media screen and (max-width: 1039px) {
  .u-wrapper {
    width: min(100% - 40px, 100%);
  }
}

header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.header__inner {
  width: min(100% - 100px, 1440px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

@media screen and (max-width: 1023px) {
  .header__inner {
    width: min(100% - 60px, 100%);
    padding: 12px 0;
  }
}
@media screen and (max-width: 839px) {
  .header__inner {
    width: min(100% - 40px, 100%);
    padding: 10px 0;
  }
  .header__leftText {
    font-size: 10px;
  }
  .header__leftText_brand {
    font-size: 24px;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.header__leftText {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: "Zen Old Mincho", serif;
}

.header__leftText_brand {
  font-size: 48px;
  letter-spacing: 0.05em;
  font-family: "Hurricane";
}

.header__leftText_brand:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__navPc {
  display: block;
}

.header__menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.header__navLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}

.hover {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  -webkit-transform: translate(-50%, -50%) scale(0.9);
          transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  pointer-events: none;
  -webkit-filter: brightness(1.15) saturate(0.7);
          filter: brightness(1.15) saturate(0.7);
  z-index: -1;
}

.header__navLink:hover .hover {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-filter: brightness(1) saturate(1);
          filter: brightness(1) saturate(1);
}

.header__navLinkJP {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
}

.header__navLinkEN {
  font-size: 20px;
  font-family: "Hurricane", cursive;
}

.header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background-color: #8D8686;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  display: none;
  width: 100%;
  height: 100%;
}

.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  min-width: 320px;
  max-width: 520px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  z-index: 999;
  padding: 120px 32px 48px;
  overflow-y: auto;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__drawerList {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}

.header__drawerList a {
  position: relative;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #8D8686;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
}

.header__drawerList a:hover .hover {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-filter: brightness(1) saturate(1);
          filter: brightness(1) saturate(1);
}

.header__drawerList a span {
  font-family: "Hurricane", cursive;
}

.header__drawerSns {
  margin-top: auto;
  padding-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}

.header__drawerSnsLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.header__drawerSnsLink:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(44%) sepia(18%) saturate(485%) hue-rotate(57deg) brightness(95%);
          filter: brightness(0) saturate(100%) invert(44%) sepia(18%) saturate(485%) hue-rotate(57deg) brightness(95%);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.header__drawerSnsIcon {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

body.is-menu-open {
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .header__navPc {
    display: none;
  }
  .header__hamburger {
    display: block;
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 1200;
  }
  .header__overlay {
    display: block;
  }
  .header__drawer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__inner {
    padding: 12px 0;
  }
  .header__leftText {
    font-size: 13px;
  }
  .header__leftText_brand {
    font-size: 28px;
  }
}
@media screen and (max-width: 839px) {
  .header__drawer {
    width: 100vw;
    min-width: auto;
    max-width: none;
  }
}
.firstview {
  width: 100%;
  background-image: url("../images/firstview_image.jpg");
  background-size: cover;
  aspect-ratio: 16/9;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}

.firstview__container {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0;
  position: absolute;
  inset: 0;
}

.firstview__title {
  font-size: clamp(24px, 5vw, 64px);
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45);
  font-family: "Zen Old Mincho", serif;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-animation: fadeUp 1.4s ease-out 0.4s forwards;
          animation: fadeUp 1.4s ease-out 0.4s forwards;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 1023px) and (min-width: 840px) {
  .firstview_title {
    font-size: 36px;
    line-height: 1.45;
  }
}
@media screen and (max-width: 839px) {
  .firstview_title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 100px 0;
}

.about__image {
  width: clamp(200px, 30vw, 360px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(200px, 30vw, 360px);
          flex: 0 0 clamp(200px, 30vw, 360px);
  aspect-ratio: 1/1;
  -ms-flex-item-align: center;
      align-self: center;
}

.about__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.about__titleEN {
  color: #6C7A52;
  font-size: clamp(20px, 1.5vw, 24px);
  font-family: "Zen Old Mincho", serif;
  text-decoration: underline;
  text-decoration-color: #6C7A52;
  text-underline-offset: 8px;
}

.about__titleJP {
  color: #6C7A52;
  font-size: clamp(28px, 3vw, 48px);
  font-family: "Zen Old Mincho", serif;
  position: relative;
  left: -0.2em;
}

.about__text {
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
  margin: 0;
  color: #8D8686;
  font-weight: 100;
}

@media screen and (max-width: 839px) {
  .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 0;
  }
  .about__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background-color: transparent;
    padding: 0;
    width: 100%;
  }
  .about__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 70%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    aspect-ratio: 1/1;
    max-width: 300px;
  }
  .about__img {
    width: 100%;
    height: 100%;
  }
}
.works {
  background-image: url("../images/works_background_img.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.works__wrapper {
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.section__titleEN {
  color: #fff;
  font-size: clamp(20px, 1.5vw, 24px);
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}

.section__titleJP {
  color: #fff;
  font-size: clamp(28px, 3vw, 48px);
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  margin: 16px 0;
}

.section__line {
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin: 16px auto 32px;
}

.works__viewport {
  overflow: hidden;
  width: 100%;
}

.works__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  will-change: transform;
}

.works__item {
  margin: 0;
}

.works__card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 1/1;
  position: relative;
  -webkit-transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}

.works__cardImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: top;
     object-position: top;
}

.works__cardImg__contain {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.works__next {
  display: block;
  margin: 24px auto 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
}

.works__moreBtn {
  display: none;
  margin: 24px auto 0;
  padding: 12px 32px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.works__moreBtn:hover {
  background: #fff;
  color: #6C7A52;
}

@media screen and (max-width: 839px) {
  .works .section__titleJP {
    margin: 0;
  }
  .section__line {
    margin: 8px auto;
  }
  .works {
    padding: 40px 0;
  }
  .works__wrapper {
    padding: 0;
  }
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .works__item:nth-child(n+5) {
    display: none;
  }
  .works__next {
    display: none;
  }
  .works__moreBtn {
    display: block;
  }
}
@media screen and (max-width: 839px) and (min-width: 426px) {
  .works__grid {
    gap: 48px;
    padding: 0 20px;
  }
}
.service {
  padding: 100px 0;
}
.service .section__titleEN {
  color: #6C7A52;
}
.service .section__titleJP {
  color: #6C7A52;
}
.service .section__line {
  background-color: #6C7A52;
}

.service__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px;
}

.service__card {
  width: 400px;
  padding: 12px;
  border: 1px solid #a8a48d;
  border-radius: 32px;
  background: #fff;
}

.service__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 16px;
  margin-bottom: 16px;
}

.service__cardImg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__cardTextBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.service__cardTitle {
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  color: #7d8461;
}

.service__cardText {
  font-family: "Noto Sans JP";
  line-height: 1.5;
  margin: 0;
  color: #8D8686;
  font-weight: 100;
}

.card__price:first-child {
  margin-bottom: 16px;
}

.card_price {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.card__price-label {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: #333;
  font-weight: 100;
  display: inline-block;
  width: 11em;
  text-align: right;
}

.card__price-value {
  font-family: "Zen Old Mincho";
  font-size: 21px;
  color: #BA6738;
  white-space: nowrap;
}

.service__text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: #8D8686;
  font-weight: 100;
}

@media screen and (max-width: 1023px) {
  .service {
    padding: 40px 0;
  }
  .service__wrapper {
    padding: 0;
  }
  .service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__card {
    width: 100%;
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__image {
    width: 200px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
  }
  .service__cardTextBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .service__cardTitle {
    text-align: left;
    font-size: clamp(24px, 2.5vw, 32px);
  }
  .card__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 8px;
  }
  .card__price-label {
    width: auto;
    text-align: left;
  }
}
@media screen and (max-width: 839px) {
  .service .section__titleJP {
    margin: 0;
  }
  .service__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 360px;
  }
  .service__cardTitle {
    text-align: center;
  }
  .service__image {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .card__price-list {
    text-align: center;
  }
  .card__price {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card__price-label {
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .card__price-label {
    font-size: 11px;
  }
  .card__price-value {
    font-size: 20px;
  }
}
.contact {
  background-image: url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 40px;
}

.contact__titleContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.contact__panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  backdrop-filter: blur(6px);
}

.contact .section__titleJP {
  color: #6C7A52;
}
.contact .section__titleEN {
  color: #6C7A52;
}

.contact__lead {
  margin: 0 0 32px;
  text-align: left;
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.5;
  color: #8D8686;
  font-weight: 100;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.contact__field label {
  font-size: 14px;
  color: #666;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact__field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact__field input::-webkit-input-placeholder, .contact__field textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}

.contact__field input::-moz-placeholder, .contact__field textarea::-moz-placeholder {
  color: #b3b3b3;
}

.contact__field input:-ms-input-placeholder, .contact__field textarea:-ms-input-placeholder {
  color: #b3b3b3;
}

.contact__field input::-ms-input-placeholder, .contact__field textarea::-ms-input-placeholder {
  color: #b3b3b3;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: #b3b3b3;
}

.contact__submit {
  margin: 16px auto 0;
  min-width: 160px;
  padding: 12px 24px;
  border: 1px solid #BA6738;
  border-radius: 999px;
  background: transparent;
  color: #BA6738;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
}

.contact__submit:hover {
  background: #BA6738;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .contact {
    padding: 40px 20px;
  }
  .contact__panel {
    padding: 40px 20px;
  }
}
.footer {
  background-color: #fff;
  width: 100%;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.footer__Sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  text-align: center;
}

.footer__SnsIcon {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.footer__Link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  text-align: center;
}
.footer__Link .footer__linkWidth {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__Link .footer__linkWidth:first-child {
  text-align: right;
}
.footer__Link .footer__linkWidth:last-child {
  text-align: left;
}
.footer__Link a {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #8D8686;
}

.copyright {
  font-family: "Zen Old Mincho";
  font-size: clamp(12px, 1.5vw, 16px);
  text-align: center;
  color: #8D8686;
}

@media screen and (max-width: 839px) {
  .footer__Link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .footer__Link .footer__linkWidth:first-child, .footer__Link .footer__linkWidth:last-child {
    text-align: center;
  }
}
.thanks {
  height: 100dvh;
  padding: 0 50px;
  background-image: url("../images/firstview_image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.thanks__panel {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
}

.thanks .section__titleJP {
  font-size: clamp(24px, 4vw, 48px);
  margin: 0 0 20px;
  color: #6C7A52;
  text-align: center;
}

.thanks__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  font-family: "Noto Sans JP";
  font-size: clamp(11px, 1.5vw, 16px);
  line-height: 2;
  color: #8D8686;
  font-weight: 100;
  text-align: left;
}

.thanks__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 180px;
  margin: 0 auto;
  padding: 24px 24px;
  border: 1px solid #c89c7a;
  border-radius: 15px;
  font-family: "Noto Sans JP";
  font-weight: 100;
  font-size: clamp(12px, 2vw, 20px);
  color: #c08961;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-align: center;
}

.thanks__button:hover {
  background: #c08961;
  color: #fff;
}

.policy__firstview {
  width: 100%;
  background-image: url("../images/policy_FV.jpg");
  background-size: cover;
  aspect-ratio: 18/9;
  background-repeat: no-repeat;
  position: relative;
}

.policyFirstview__container {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 20px;
  position: absolute;
  inset: 0;
}
.policyFirstview__container p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 100;
  line-height: 1.2;
}

.policyFirstview__title {
  font-size: clamp(24px, 5vw, 64px);
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

.policy {
  padding: 100px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.policy .section__titleJP {
  color: #6C7A52;
  font-size: clamp(22px, 3vw, 48px);
}
.policy .section__line {
  background-color: #6C7A52;
}

.policy__textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.policy__textBox h2 {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #8D8686;
  font-family: "Noto Sans JP";
  font-weight: 100;
  line-height: 1.5;
}
.policy__textBox h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  text-decoration: underline;
  color: #8D8686;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
}
.policy__textBox div:last-child h3 {
  text-decoration: none;
}
.policy__textBox p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #8D8686;
  font-family: "Noto Sans JP";
  font-weight: 100;
  line-height: 1.5;
}

.policy__contactView {
  width: 100%;
  background-image: url("../images/policy_contact.jpg");
  background-size: cover;
  aspect-ratio: 21/9;
  background-repeat: no-repeat;
  position: relative;
}

.policyContactview__container {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px;
  position: absolute;
  inset: 0;
}
.policyContactview__container .policy__titleEN {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 24px);
  font-family: "Zen Old Mincho", serif;
  text-align: left;
  text-decoration: underline;
}
.policyContactview__container .policy__titleJP {
  color: #fff;
  font-size: clamp(20px, 4vw, 48px);
  font-family: "Zen Old Mincho", serif;
  position: relative;
  left: -0.2em;
}
.policyContactview__container p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 100;
  line-height: 1.5;
}

.policy__Btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 32px 16px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(16px, 1.5vw, 24px);
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policy__Btn:hover {
  background: #fff;
  color: #6C7A52;
}

@media screen and (max-width: 1023px) {
  .policy {
    padding: 80px 80px;
  }
}
@media screen and (max-width: 768px) {
  .policy__contactView {
    aspect-ratio: 16/9;
  }
  .policy {
    padding: 20px;
  }
  .policyContactview__container {
    padding: 40px;
    gap: 16px;
  }
  .policy__Btn {
    padding: 16px 8px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 425px) {
  .policy__contactView {
    aspect-ratio: 14/9;
  }
  .policyFirstview__container {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 425px) {
  .policy__contactView {
    aspect-ratio: 12/9;
  }
}
@media screen and (max-width: 320px) {
  .policy__contactView {
    aspect-ratio: 10/9;
  }
  .policyContactview__container {
    padding: 20px;
  }
}
.law__firstview {
  width: 100%;
  background-image: url("../images/law_FV.jpg");
  background-size: cover;
  aspect-ratio: 18/9;
  background-repeat: no-repeat;
  position: relative;
}

.law__text {
  display: inline-block;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #8D8686;
  font-family: "Noto Sans JP";
  font-weight: 100;
  line-height: 1.5;
  text-align: left;
}

.law__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 1.5vw, 16px);
  color: #8D8686;
}
.law__table th,
.law__table td {
  padding: 20px 24px;
  border: 1px solid #d8d8d8;
  line-height: 1.8;
  vertical-align: middle;
}
.law__table th {
  width: 30%;
  text-align: center;
  font-weight: 100;
  background: #f9f9f7;
}
.law__table td {
  width: 70%;
  font-weight: 100;
  text-align: left;
}
.law__table a {
  color: #6C7A52;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media screen and (max-width: 839px) {
  .law__table th,
  .law__table td {
    padding: 12px 16px;
  }
  .law__table th {
    width: 35%;
  }
}
.law__contactView {
  width: 100%;
  background-image: url("../images/law_contact.jpg");
  background-size: cover;
  aspect-ratio: 21/9;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (max-width: 768px) {
  .law__contactView {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 425px) {
  .law__contactView {
    aspect-ratio: 12/9;
  }
}
@media screen and (max-width: 320px) {
  .law__contactView {
    aspect-ratio: 10/9;
  }
}