@charset "UTF-8";
.js-section,
.top {
  overflow-x: clip;
}

select,
button {
  color: inherit;
}

.hero {
  height: calc(100vh - 0rem);
  overflow: hidden;
  position: relative;
  animation: fade 0.8s linear;
  /* スライドのサイズ調整 */
}
.hero .splide__slide img {
  transition: 12s ease-out;
  transform: scale(1.1);
  transform-origin: left;
}
.hero .splide__slide.is-active img {
  transform: translate(0, 10px);
  transition-delay: 0s;
}
.hero .splide__slide img {
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero .splide__track {
  height: 100%;
}
.hero #js-hero-slider {
  height: 100%;
}
.hero #js-hero-slider .splide__pagination {
  justify-content: start;
  margin-left: 4rem;
  bottom: 3.5rem;
}
@media (max-width: 767px) {
  .hero #js-hero-slider .splide__pagination {
    margin-left: 1.6rem;
    bottom: 1.5rem;
  }
}
.hero #js-hero-slider .splide__pagination__page {
  background: #fff;
  opacity: 0.4;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  transform: none;
  margin: 0 10px;
  position: relative;
  outline: 0;
}
.hero #js-hero-slider .splide__pagination__page::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  margin: auto;
  opacity: 0;
  inset: 0 0 0 -6px;
}
.hero #js-hero-slider .splide__pagination__page.is-active {
  opacity: 1;
}
.hero #js-hero-slider .splide__pagination__page.is-active::before {
  opacity: 0.4;
}
.hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  position: relative;
}
.hero__image::before {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #033333;
  opacity: 0.2;
}
.hero__image picture,
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__copy-list {
  position: absolute;
  inset: 0 auto 0 8.4rem;
  margin: auto;
  color: #fff;
  height: fit-content;
}
@media (max-width: 767px) {
  .hero__copy-list {
    inset: 0 auto 0 2.2rem;
  }
}
.hero__copy1 {
  font-size: 6.2rem;
  font-family: var(--font-en);
  line-height: 1.1774193548;
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero__copy1 {
    font-size: 3.2rem;
  }
}
.hero__copy2 {
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: var(--font-serif);
}
@media (max-width: 767px) {
  .hero__copy2 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.hero .hero-badege {
  position: absolute;
  inset: auto 3rem 3rem auto;
  width: 36.8rem;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero .hero-badege {
    width: 17.6rem;
    inset: auto 1.4rem 1.4rem auto;
  }
}

.c-title {
  display: flex;
  align-items: baseline;
  color: #807157;
}
@media (max-width: 767px) {
  .c-title {
    display: block;
  }
}
.c-title__main {
  font-size: 7.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  margin-right: 2rem;
  line-height: 1.2222222222;
}
@media (max-width: 767px) {
  .c-title__main {
    font-size: 3.7rem;
    letter-spacing: 0.03em;
    line-height: 1.6666666667;
    margin-right: 0;
  }
}
.c-title__sub {
  font-size: 2.6rem;
  font-weight: 400;
  font-family: var(--font-serif);
  position: relative;
  top: -0.4rem;
}
@media (max-width: 767px) {
  .c-title__sub {
    top: 0;
    font-size: 1.4rem;
  }
}

.intro {
  padding: 12rem 0 14rem;
  background-color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .intro {
    padding: 7rem 0 8rem;
  }
}
.intro__lead {
  font-size: 2.9rem;
  font-weight: 600;
  margin-bottom: 3.8rem;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .intro__lead {
    margin-bottom: 2rem;
    line-height: 1.75;
    font-size: 2.3rem;
  }
}
.intro p {
  letter-spacing: 0.06em;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .intro p {
    font-size: 1.4rem;
  }
}
.intro__gallery-list-wrap {
  overflow: hidden;
}
.intro__gallery-list {
  display: grid;
  grid-template-columns: repeat(12, 36rem);
  gap: 2rem;
  animation: autoslide-animation1 30s linear infinite;
}
@media (max-width: 767px) {
  .intro__gallery-list {
    grid-template-columns: repeat(12, 15.7rem);
    animation: autoslide-animation1_sp 30s linear infinite;
    gap: 1rem;
  }
}
@keyframes autoslide-animation1 {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-228rem, 0);
  }
}
@keyframes autoslide-animation1_sp {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-94.2rem, 0);
  }
}

.feature {
  padding: 10.5rem 0 9.5rem;
  background-color: #f9f8ef;
  overflow-x: clip;
}
@media (max-width: 767px) {
  .feature {
    padding: 6rem 0;
  }
}

.feature-cards {
  display: flex;
  gap: 12rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 45rem 34.3rem;
  gap: 6rem;
}
@media (max-width: 767px) {
  .feature-card {
    display: block;
  }
}
.feature-card__image img {
  width: 45rem;
  height: 57.5rem;
  object-fit: cover;
}
@media (max-width: 767px) {
  .feature-card__image img {
    width: 32.5rem;
    height: 32.5rem;
  }
}
.feature-card__no {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 18.2rem;
}
@media (max-width: 767px) {
  .feature-card__no {
    margin-bottom: 0;
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
.feature-card__title {
  font-size: 3.4rem;
  font-weight: 500;
  font-family: var(--font-serif);
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .feature-card__title {
    font-size: 2.3rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.feature-card p {
  font-size: 1.4rem;
  line-height: 1.5714285714;
  letter-spacing: 0.06em;
}
.cta {
  background: linear-gradient(to bottom, #908065 0%, #5c513e 100%);
  height: 38rem;
  padding: 4.5rem 6.5rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cta {
    height: 54.2rem;
    padding: 5.5rem 0;
  }
}
.cta__image1 {
  width: 19rem;
  position: absolute;
  inset: auto auto -4.5rem -2rem;
}
@media (max-width: 767px) {
  .cta__image1 {
    width: 9.7rem;
    inset: auto auto -6.7rem 4.2rem;
  }
}
.cta__image2 {
  position: absolute;
  width: 30rem;
  inset: auto 0 0 auto;
}
@media (max-width: 767px) {
  .cta__image2 {
    width: 15.9rem;
    inset: auto 6rem -1rem auto;
  }
}
@media print, screen and (min-width: 768px) {
  .cta__image3 {
    position: absolute;
    width: 12.6rem;
    inset: 7.3rem auto auto 18.1rem;
  }
}

.cta-box {
  padding: 4.8rem 0 4rem;
  background: linear-gradient(to bottom, #fff 0%, #f8f8ed 100%);
  max-width: 95.7rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cta-box {
    padding: 3.2rem 2.4rem 9.7rem;
  }
}
.cta-box__title {
  max-width: 46.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cta-box__title {
    max-width: 25.3rem;
    margin-bottom: 0;
  }
}
.cta-box p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cta-box p {
    margin-bottom: 1rem;
  }
}

.cta-button {
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 3.5rem;
  align-items: center;
  width: 49.8rem;
  height: 7rem;
  border-radius: 35.5px;
  background: #59B311;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .cta-button {
    width: 100%;
    height: 6.2rem;
    font-size: 1.4rem;
    padding: 0 1.48rem;
    margin-top: 1rem;
  }
}
.cta-button:hover {
  opacity: 0.6;
}

.checks {
  padding: 8rem 0;
  background-image: url("../images/top/bg1.jpg");
  background-size: 100%;
}
@media (max-width: 767px) {
  .checks {
    padding: 6rem 0 14.1rem;
  }
}
.checks__label {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22185%22%20height%3D%2250%22%20viewBox%3D%220%200%20185%2050%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%201%22%20transform%3D%22translate(-591%20-4240)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1841%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201841%22%20width%3D%22185%22%20height%3D%2245%22%20rx%3D%2222.5%22%20transform%3D%22translate(591%204240)%22%20fill%3D%22%238b7952%22%2F%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_1%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%201%22%20d%3D%22M9.5%2C0%2C19%2C11H0Z%22%20transform%3D%22translate(693%204290)%20rotate(180)%22%20fill%3D%22%238b7953%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  padding: 0.4rem;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
  width: 18.5rem;
  height: 5rem;
  justify-content: center;
  display: flex;
  margin: auto;
}
@media (max-width: 767px) {
  .checks__label {
    font-size: 1.5rem;
    width: 14.1rem;
    height: 3.8rem;
    margin-bottom: 0.4rem;
  }
}
.checks__title {
  max-width: 59.3rem;
  margin: 2.25rem auto 4rem;
}
@media (max-width: 767px) {
  .checks__title {
    margin: 0 auto 3rem;
  }
}
.checks__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 74.8rem;
  margin: auto;
}
.checks__item {
  background-color: #fff;
  height: 6.7rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  padding: 0 1rem 0 2.5rem;
}
@media (max-width: 767px) {
  .checks__item {
    min-height: 6.9rem;
    height: auto;
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .checks__item > div > span {
    display: block;
  }
}
.checks__item span > span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.9rem;
  background: linear-gradient(transparent 70%, #fff8c3 70%);
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .checks__item span > span {
    font-size: 1.6rem;
    display: block;
    width: fit-content;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
  }
}
.checks__item svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .checks__item svg {
    margin-right: 1.2rem;
  }
}
.checks__image1 {
  position: absolute;
  width: 20.1rem;
  inset: auto auto -8rem -2.3rem;
}
@media (max-width: 767px) {
  .checks__image1 {
    width: 8.9rem;
    inset: auto auto -14rem 3.65rem;
  }
}
.checks__image2 {
  width: 23.8rem;
  position: absolute;
  inset: auto -4.4rem -8rem auto;
}
@media (max-width: 767px) {
  .checks__image2 {
    width: 9rem;
    inset: auto 3.65rem -14rem auto;
  }
}
.checks__arrow {
  position: absolute;
  inset: auto 0 -13.6rem 0;
  width: 4.9rem;
  margin: auto;
}
@media (max-width: 767px) {
  .checks__arrow {
    bottom: -19.5rem;
  }
}

.reason {
  padding: 10rem 0 11.5rem;
}
@media (max-width: 767px) {
  .reason {
    padding: 5.5rem 0 6rem;
  }
}
.reason__title {
  max-width: 90rem;
  margin-left: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .reason__title {
    margin-left: -2rem;
    margin-bottom: 2rem;
  }
}
.reason__memo {
  font-size: 7px;
  line-height: 1.5714285714;
  letter-spacing: 0.06em;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .reason__memo {
    margin-bottom: 4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .reason__items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.reason__item {
  position: relative;
  text-align: center;
  color: #fff;
}
.reason__item-body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 12.5rem 3.5rem 0;
}
@media (max-width: 767px) {
  .reason__item-body {
    padding: 0;
    margin: auto;
    height: fit-content;
    padding: 0 3.5rem;
  }
}
.reason__item::after {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #554a3e;
  opacity: 0.64;
}
.reason__item-no {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 100%;
  background-color: #fff;
  margin: 0 auto 2.6rem;
  color: var(--color-black);
  font-size: 0.8rem;
  font-family: var(--font-serif);
  padding: 1rem 0 0;
}
.reason__item-no span {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}
.reason__item-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
}
.reason__item-ruby {
  font-family: var(--font-en);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.reason__item-desc {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.06em;
  line-height: 1.875;
}

.works .splide__arrows,
.reason .splide__arrows,
.feature .splide__arrows {
  max-width: 86.2rem;
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.works .splide__arrow,
.reason .splide__arrow,
.feature .splide__arrow {
  opacity: 1;
  outline: 0 !important;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88_12_1%22%20data-name%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88%2012%20%E2%80%93%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2259%22%20height%3D%2258%22%20viewBox%3D%220%200%2059%2058%22%3E%20%3Cellipse%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_4%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%204%22%20cx%3D%2229.5%22%20cy%3D%2229%22%20rx%3D%2229.5%22%20ry%3D%2229%22%20fill%3D%22%23ea700d%22%2F%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_4%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%204%22%20d%3D%22M7%2C0l7%2C11H0Z%22%20transform%3D%22translate(22%2036)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  width: 6rem;
  height: 6rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .works .splide__arrow,
  .reason .splide__arrow,
  .feature .splide__arrow {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.works .splide__arrow:hover,
.reason .splide__arrow:hover,
.feature .splide__arrow:hover {
  opacity: 0.5 !important;
}
.works .splide__arrow > svg,
.reason .splide__arrow > svg,
.feature .splide__arrow > svg {
  display: none;
}
.works .splide__arrow--prev,
.reason .splide__arrow--prev,
.feature .splide__arrow--prev {
  left: -4.5rem;
  transform: translateY(-100%);
}
@media (max-width: 767px) {
  .works .splide__arrow--prev,
  .reason .splide__arrow--prev,
  .feature .splide__arrow--prev {
    left: -2rem;
  }
}
.works .splide__arrow--next,
.reason .splide__arrow--next,
.feature .splide__arrow--next {
  right: -4.5rem;
  transform: translateY(-100%) scaleX(-1);
}
@media (max-width: 767px) {
  .works .splide__arrow--next,
  .reason .splide__arrow--next,
  .feature .splide__arrow--next {
    right: -2rem;
  }
}
.works .splide__pagination,
.reason .splide__pagination,
.feature .splide__pagination {
  position: relative;
  bottom: auto;
  margin-top: 6rem;
  counter-reset: slide;
}
@media (max-width: 767px) {
  .works .splide__pagination,
  .reason .splide__pagination,
  .feature .splide__pagination {
    margin-top: 3rem;
  }
}
.works .splide__pagination__page,
.reason .splide__pagination__page,
.feature .splide__pagination__page {
  counter-increment: slide;
  border-radius: 0;
  opacity: 1;
  width: auto;
  height: auto;
  font-family: var(--font-en);
  font-size: 1.5rem;
  background-color: transparent;
  margin: 0 1.2rem;
  transform: none !important;
  outline: 0 !important;
}
.works .splide__pagination__page.is-active,
.reason .splide__pagination__page.is-active,
.feature .splide__pagination__page.is-active {
  color: #ea700d;
  font-weight: 500;
  text-decoration: underline;
}
.works .splide__pagination__page::after,
.reason .splide__pagination__page::after,
.feature .splide__pagination__page::after {
  content: "0" counter(slide);
}

.feature .splide:not(.is-overflow) .splide__pagination {
  display: block;
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .feature .splide__arrows {
    top: 23rem;
    margin-top: 0;
    height: fit-content;
  }
}

.works {
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .works {
    padding: 6rem 0;
  }
}
.works::before {
  content: "";
  background-color: #f9f8ef;
  width: calc(100vw - (100vw - 108.6rem) / 2);
  height: 100%;
  position: absolute;
  inset: 0 auto auto 0;
}
@media (max-width: 767px) {
  .works .splide__arrows {
    max-width: calc(100% - 5rem);
  }
}
.works__inner {
  height: 100%;
}
.works__image {
  position: relative;
  overflow: hidden;
}
.works__image::after {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 0.4;
  transition: 0.3s;
  z-index: 100;
}
.works__image::before {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  background: linear-gradient(to top, rgba(119, 98, 64, 0.99) 0%, rgba(119, 98, 64, 0) 40%);
  opacity: 1;
  z-index: 2;
}
@media (max-width: 767px) {
  .works__image::before {
    background: linear-gradient(to top, rgba(119, 98, 64, 0.99) 0%, rgba(119, 98, 64, 0) 80%);
  }
}
.works__image:hover > img {
  scale: 1.05;
}
.works__image > img {
  transition: 0.4s;
}
@media (max-width: 767px) {
  .works__image > img {
    height: 28rem;
    width: 100%;
    object-fit: cover;
  }
}
.works__image svg {
  position: absolute;
  inset: auto 3.5rem 2.5rem auto;
  width: 4.3rem;
  height: 4.3rem;
  z-index: 4;
}
@media (max-width: 767px) {
  .works__image svg {
    inset: auto 2rem 2rem auto;
  }
}
.works .splide__slide.is-active .works__image::after {
  opacity: 0;
}
.works__copy-list {
  position: absolute;
  inset: auto auto 4.7rem 4.9rem;
  color: #fff;
  z-index: 3;
}
@media (max-width: 767px) {
  .works__copy-list {
    inset: auto auto 2rem 2rem;
  }
}
.works__copy1 {
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: 600;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .works__copy1 {
    font-size: 1.8rem;
    margin-top: 1rem;
    line-height: 2.8rem;
  }
}
.works__no {
  font-size: 1.3rem;
  font-family: var(--font-en);
  font-weight: 600;
}
.works__no::after {
  content: "";
  width: 1.6rem;
  background-color: #fff;
  height: 1px;
  display: block;
}

.achievements {
  padding: 10rem 0;
  background: #f9f8ef;
}
@media (max-width: 767px) {
  .achievements {
    padding: 6rem 0;
  }
}

.cp {
  padding: 10rem 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cp {
    padding: 6rem 0;
  }
}

.toggle {
  border: solid 2px #efef62;
}
.toggle__head {
  font-size: 2rem;
  font-weight: bold;
  color: #3e281b;
  letter-spacing: 0.14em;
  gap: 2.54rem;
  height: 7.2rem;
  background-color: #efef62;
  justify-content: center;
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.473%22%20height%3D%2225.473%22%20viewBox%3D%220%200%2025.473%2025.473%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3012%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203012%22%20transform%3D%22translate(-1165.764%20-8298.264)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_20%22%20data-name%3D%22%E7%B7%9A%2020%22%20x1%3D%2225.473%22%20transform%3D%22translate(1165.764%208311)%22%20fill%3D%22none%22%20stroke%3D%22%233f271b%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_21%22%20data-name%3D%22%E7%B7%9A%2021%22%20x1%3D%2225.473%22%20transform%3D%22translate(1178.5%208298.264)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%233f271b%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center right 3.4rem;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .toggle__head {
    font-size: 1.6rem;
    background-position: center right 1.4rem;
    padding: 0 2.5rem 0;
    justify-content: start;
    gap: 0;
  }
  .toggle__head svg {
    margin-right: 1rem;
  }
}
.toggle__head.is-active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225.473%22%20height%3D%221.5%22%20viewBox%3D%220%200%2025.473%201.5%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3012%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203012%22%20transform%3D%22translate(-1165.764%20-8310.25)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_20%22%20data-name%3D%22%E7%B7%9A%2020%22%20x1%3D%2225.473%22%20transform%3D%22translate(1165.764%208311)%22%20fill%3D%22none%22%20stroke%3D%22%233f271b%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.toggle__body {
  padding: 2.4rem 5rem;
}
@media (max-width: 767px) {
  .toggle__body {
    padding: 1.5rem 2.5rem;
  }
}
.toggle__body p {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.contact {
  padding: 10rem 0 0;
  background-color: #f9f8ef;
}
@media (max-width: 767px) {
  .contact {
    padding: 6rem 0 0;
  }
}

.company {
  padding: 10rem 0;
  background-color: #f9f8ef;
}
@media print, screen and (min-width: 768px) {
  .company .c-title {
    display: block;
  }
  .company .c-title__main {
    font-size: 4.4rem;
  }
  .company .c-title__sub {
    font-size: 1.5rem;
  }
  .company__inner {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 73rem;
  }
}
.company .data-table {
  display: grid;
  grid-template-columns: 12rem 1fr;
  font-size: 1.4rem;
  margin-top: -1rem;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .company .data-table {
    margin-top: 0;
    grid-template-columns: 9.4rem 1fr;
  }
}
.company .data-table > dt {
  font-weight: bold;
}
.company .data-table > dd {
  font-weight: 500;
}
.company .data-table > dt,
.company .data-table > dd {
  padding: 3rem 0;
  border-bottom: 1px solid #707070;
}
.company .data-table dd > dl {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1rem 1.5rem;
}
@media (max-width: 767px) {
  .company .data-table dd > dl {
    margin-bottom: -1.5rem;
    display: block;
  }
  .company .data-table dd > dl dd {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
  }
}
.company .data-table dd > dl dt {
  text-align: center;
  background-color: #3e281b;
  font-size: 1.4rem;
  color: #fff;
  padding: 0.1rem;
}
@media (max-width: 767px) {
  .company .data-table dd > dl dt {
    width: 14rem;
  }
}
@media (max-width: 767px) {
  .company {
    padding: 6rem 0;
  }
}

.p-form-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-form-cols {
    gap: 1.2rem;
  }
}

.p-form-col {
  height: 13.4rem;
  display: grid;
  grid-template-columns: 18.3rem 1fr;
  border-radius: 5px;
  background: #ff8b2e;
  position: relative;
  color: #fff;
}
@media (max-width: 767px) {
  .p-form-col {
    display: block;
    height: 13.7rem;
    border: solid 1px #ff8b2e;
  }
}
.p-form-col--2 {
  border: solid 1px #3e281b;
  background-color: transparent;
  color: #3e281b;
}
.p-form-col .cp-banner {
  position: absolute;
  inset: -3.5rem auto auto 0;
  width: 19.5rem;
  z-index: 3;
}
@media (max-width: 767px) {
  .p-form-col .cp-banner {
    inset: -2.6rem auto auto -0.5rem;
  }
}
.p-form-col__body {
  align-content: center;
  font-size: 2.8rem;
  letter-spacing: 0.14em;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-form-col__body {
    font-size: 1.4rem;
    padding: 0.9rem;
  }
}
.p-form-col__image {
  overflow: hidden;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 767px) {
  .p-form-col__image {
    border-radius: 5px 5px 0 0;
  }
  .p-form-col__image > img {
    scale: 1.03;
  }
}

@media (max-width: 767px) {
  .contact .p-form {
    padding: 0;
  }
}
.contact .p-form-item {
  text-align: left;
}
.contact .p-form-item dl {
  padding: 10px 0;
}
.contact .p-form-group_head_text.u-text-align-left {
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.contact .p-form-item--full dl {
  display: block;
}
.contact .p-form-item--full dd {
  width: 100%;
  max-width: 100%;
}
.contact .p-form_textarea,
.contact .p-form_select,
.contact .p-form_input-text {
  background-color: #ededed;
  border-radius: 5px;
  box-shadow: none;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact .p-form_select,
  .contact .p-form_input-text {
    height: 4.4rem;
  }
}
.contact .p-form-container {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 0;
}
@media print, screen and (min-width: 768px) {
  .contact .p-form-container {
    width: 108.6rem;
  }
}
.contact .p-form-radio-item {
  border-bottom: 1px solid #ededed;
}
.contact .p-form-radio-item__title {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3021%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223%22%20height%3D%2223%22%20viewBox%3D%220%200%2023%2023%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1944%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201944%22%20width%3D%2223%22%20height%3D%2223%22%20rx%3D%222%22%20fill%3D%22%233e281b%22%2F%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3012%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203012%22%20transform%3D%22translate(5.754%205.754)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_20%22%20data-name%3D%22%E7%B7%9A%2020%22%20x1%3D%2211.493%22%20transform%3D%22translate(0%205.746)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_21%22%20data-name%3D%22%E7%B7%9A%2021%22%20x1%3D%2211.493%22%20transform%3D%22translate(5.746)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center left;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 2rem 0 2rem 3.7rem;
  transition: 0.4s;
}
.contact .p-form-radio-item__title.is-active {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3021%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203021%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223%22%20height%3D%2223%22%20viewBox%3D%220%200%2023%2023%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_1944%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%201944%22%20width%3D%2223%22%20height%3D%2223%22%20rx%3D%222%22%20fill%3D%22%233e281b%22%2F%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3012%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203012%22%20transform%3D%22translate(5.754%205.754)%22%3E%20%3Cline%20id%3D%22%E7%B7%9A_20%22%20data-name%3D%22%E7%B7%9A%2020%22%20x1%3D%2211.493%22%20transform%3D%22translate(0%205.746)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
}
.contact .p-form-groups_inner,
.contact .p-form-group_inner {
  padding: 20px 0;
}
.contact .p-form-bottom {
  padding: 0 3rem;
}
.contact .c-required-plate {
  background-color: #ea700d;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  margin-left: 0.8rem;
}
.contact .p-form-group_head {
  border-bottom: 1px solid #707070;
}
.contact .p-form-group_head_text {
  font-size: 16px;
  font-weight: 500;
}
.contact .p-submit {
  width: 310px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(to right, #ea700d 0%, #f78b21 100%);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  position: relative;
}
@media (max-width: 767px) {
  .contact .p-submit {
    width: 100%;
    height: 8rem;
  }
}
.contact .p-form-bottom_text a {
  color: #0062ff;
  border-bottom: 1px solid currentColor;
}
.contact .p-form-label {
  font-size: 1.4rem;
}
.contact .p-form_input-checkbox {
  transform: translate(0, 4px);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  border: 1.5px solid #b9b9b9;
}
.contact .p-form_input-checkbox::after {
  width: 12px;
  border-bottom: 1px solid #ea700d;
  border-left: 1px solid #ea700d;
}
.contact .p-submit-box {
  width: fit-content;
  height: fit-content;
  position: relative;
  margin: auto;
}
@media (max-width: 767px) {
  .contact .p-submit-box {
    width: 100%;
    padding-bottom: 0;
    padding-top: 0;
    margin-top: 3rem;
  }
}
.contact .p-submit-box::after {
  pointer-events: none;
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228%22%20height%3D%2228%22%20viewBox%3D%220%200%2028%2028%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3062%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203062%22%20transform%3D%22translate(-653%20-1551)%22%3E%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_14%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%2014%22%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20transform%3D%22translate(653%201551)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_6%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%206%22%20d%3D%22M4%2C0%2C8%2C6H0Z%22%20transform%3D%22translate(671%201561)%20rotate(90)%22%20fill%3D%22%23ea700d%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center right 2rem;
}
.contact .p-form-radio-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2.3rem;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list {
    grid-template-columns: 1fr;
  }
}
.contact .p-form-radio-list::after {
  content: "";
  display: block;
  height: 2rem;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .contact .p-form-radio-list::after {
    grid-column: span 2;
  }
}
.contact .p-form-radio-list > label {
  display: flex;
  font-size: 1.4rem;
  align-items: center;
  position: relative;
}
.contact .p-form-radio-list > label:last-child::after {
  content: "";
  margin-bottom: 3rem;
  display: block;
}
.contact .p-form-radio-list > label > .radio-name {
  border-radius: 5px;
  background: #ededed;
  height: 5rem;
  width: 100%;
  padding: 1rem;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list > label > .radio-name {
    height: auto;
    min-height: 7.3rem;
    padding: 1.4rem 1rem;
    padding-left: 4.4rem;
  }
}
.contact .p-form-radio-list > label > .radio-name span {
  font-weight: 500;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list > label > .radio-name span {
    position: absolute;
    top: 1.1rem;
    left: 4.5rem;
  }
}
.contact .p-form-radio-list > label input[type="radio"] {
  opacity: 0;
  width: 0;
}
.contact .p-form-radio-list > label input[type="radio"] + .radio-name {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list > label input[type="radio"] + .radio-name {
    display: block;
  }
}
.contact .p-form-radio-list > label input[type="radio"] + .radio-name::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 100%;
  background-color: #fff;
  display: block;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list > label input[type="radio"] + .radio-name::before {
    margin-left: -3rem;
  }
}
.contact .p-form-radio-list > label input[type="radio"] + .radio-name::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ff8b2e;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 100%;
  inset: 0 auto 0 1.45rem;
  margin: auto;
  opacity: 0;
}
@media (max-width: 767px) {
  .contact .p-form-radio-list > label input[type="radio"] + .radio-name::after {
    margin: 0;
    inset: 1.9rem auto 0 1.85rem;
  }
}
.contact .p-form-radio-list > label input[type="radio"]:checked + .radio-name {
  color: #fff;
  background-color: #f78b21;
}
.contact .p-form-radio-list > label input[type="radio"]:checked + .radio-name::after {
  opacity: 1;
}
.contact .p-form-group_head_text .u-font-size-80 {
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .contact .p-form-label {
    padding: 0;
  }
  .contact .p-form-bottom {
    padding: 0;
  }
  .contact .p-form_input-checkbox::after {
    top: 20%;
  }
  .contact .p-form-bottom_text {
    font-size: 1.4rem;
  }
  .contact .p-form-item .p-form-item_half-box {
    width: calc(50% - 0.5rem);
  }
  .contact .p-form-body {
    padding: 7rem 2rem 6rem;
  }
  .contact .p-form_select {
    padding-right: 3.2rem;
  }
  .contact .p-form-item_half-box_arrow::after {
    width: 1rem;
    height: 1rem;
    right: 1.5rem;
    top: 1.4rem;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
  }
  .contact .p-form-group_head {
    padding: 1rem 0;
  }
  .contact .p-form-group_inner {
    padding: 1rem 0;
  }
}

.pin-spacer {
  background-color: #f9f8ef;
}
.js-scrollx-cards {
}
@media (min-width: 768px) {
  .js-scrollx-cards__content {
    height: 100vh;
    position: relative;
  }
  .feature-cards {
    inset: 0;
    margin: auto;
    position: absolute;
    height: fit-content;
  }
}
.totop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  transform: translate(0,120%);
  transition: .5s;
}
.totop.is-active {
transform: none;
}

.contact__gp {
  padding: 0 1.5rem;
}

.contact__gp-title {
  background: #fdd8d3;
  position: relative;
  padding: 1.5rem;
  font-size: 1.6rem;
  line-height: 150%;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.contact__gp-title::before,
.contact__gp-title::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  z-index: 0;
  top: 50%;
  right: 2rem;
  margin-top: -1px;
  background-color: #e0394d;
  transition:
    transform 0.2s ease-out,
    background-color 0.2s ease-out;
}
.contact__gp-title::after {
  transform: rotate(90deg);
}
.contact__gp-title:hover::after {
  transform: rotate(270deg);
}
.contact__gp-title:hover::before {
  transform: rotate(360deg);
}
.contact__gp-title.active::before {
  background-color: transparent;
  transform: rotate(270deg);
}
.contact__gp-title.active::after {
  transform: rotate(360deg);
}
.contact__gp-box {
  border-radius: 10px;
  border: 2px solid #e0394d;
  overflow: hidden;
  margin-bottom: 3rem;
}
.contact__gp-box:last-child {
  margin-bottom: 0;
}
.contact__gp-cont {
  display: none;
  padding: 0 2rem 0;
}
.contact__gp-cont p:first-child {
  margin-top: 1.5rem;
}
.contact__gp .lp-caution__heading-icon {
  width: 1.8rem;
  height: 1.8rem;
  transform: translate(-0.2rem, 0.2rem);
}
.contact__gp p {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.02rem;
  margin-bottom: 2rem;
}
.contact__gp p .vs-01 {
  color: #e0394d;
  font-weight: 700;
}
.contact__gp p .vs-02 {
  background-color: #e0394d;
  font-weight: 700;
  line-height: 180%;
  color: #fff;
  padding: 0.1rem 0.4rem;
}
.p-form-container {
  /* margin-bottom: 6rem; */
}
@media (max-width: 767px) {
  .p-form-container {
    /* margin-bottom: 4rem; */
  }
  .contact__gp {
    padding: 0;
  }
  .contact__gp-title {
    font-size: 1.4rem;
  }
  .totop {
    width: 5.6rem;
    height: 5.6rem;
  }
  .header__cta {
    position: fixed;
    bottom: 0;
    top: auto;
    height: 5.6rem;
    width: 100%;
    padding-right: 5.6rem;
    font-size: 2rem;
    flex-direction: row;
  }
  .header__cta-text {
    font-size: 2rem;
    margin-left: 1.4rem;
  }
  .header__banner {
    width: 13.9rem;
    position: fixed;
    bottom: 2.9rem;
    left: 0.8rem;
    z-index: 1000;
  }
  .header__cta {
    transform: translate(0, 120%);
    transition: .5s;
  }
  .header__cta.is-active {
    transform: translate(0, 0%);
  }
  .header__banner {
    opacity: 0;
    transition: .5s;
  }
  .header__banner.is-active {
    opacity: 1;
  }
}
