@charset "UTF-8";

/*  ----------------------------------------------------------

common

----------------------------------------------------------  */
/* heading-1 */
.heading-1 {
  line-height: 1;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  font-weight: 400;
  position: relative;
  padding-bottom: 1.2rem;
}
.heading-1 > span:first-of-type {
  font-family: var(--font-oswald);
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.heading-1 span:first-of-type::first-letter {
  color: var(--color-prime);
}
.heading-1 span:last-of-type {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.heading-1 span:last-of-type::before {
  content: "/";
  color: var(--color-prime);
  margin: 0 1rem 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .heading-1 > span:first-of-type {
    font-size: 3.2rem;
  }
}
/* heading-2 */
.heading-2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
/* more */
.more {
  display: table;
  margin: 3rem auto 0;
  padding: 1.2rem 2.8rem;
  background: #c7a97f;
  color: #fff;
  border-radius: 3rem;
  text-align: center;
  text-decoration: none;
  border-bottom: none;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .more {
    width: 100%;
  }
}

/*  ----------------------------------------------------------

kv

----------------------------------------------------------  */
.top-kv {
  position: relative;
  overflow: hidden;
}

.top-kv .wrap {
  z-index: 99;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-align: center;
}

.scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  z-index: 10;
  font-family: var(--font-oswald);
  color: #fff;
  padding-bottom: 7rem;
}

.scroll::after {
  content: "";
  width: 0.15rem;
  height: 0;
  background: #fff;
  -webkit-animation: anime infinite ease 1s;
  animation: anime infinite ease 1s;
  position: absolute;
  left: 50%;
  top: 3rem;
}

@-webkit-keyframes anime {
  0% {
    height: 0;
  }
  100% {
    height: 8rem;
  }
}

@keyframes anime {
  0% {
    height: 0;
  }
  100% {
    height: 8rem;
  }
}

#main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.kv-copy {
  position: absolute;
  left: 5%;
  top: 28%;
  z-index: 30;
  text-align: center;
  pointer-events: none;
  display: block !important;

  padding: 4rem 5rem;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(255, 255, 255, 0) 75%
  );
}

.kv-copy__main {
  position: relative;
  margin: 0;
  font-size: clamp(4.8rem, 5vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif !important;
  color: #4f3b30;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

@media screen and (min-width: 768px) {
  .top-kv .kv-copy__main {
    font-family: "Shippori Mincho", serif !important;
  }
}

.kv-copy__main::after {
  content: "";
  display: block;
  width: 58%;
  height: 1.2rem;
  margin: 1.6rem auto 0;

  border-bottom: 0.35rem solid #cfa17e;

  border-radius: 50%;
  opacity: 0.95;
}

.kv-copy__sub {
  margin: 3rem 0 0;
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.8;
  color: #5a4334;
  font-family: "Shippori Mincho", serif;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.kv-sp {
  display: none;
}

.kv-sp img {
  display: block;
  width: 100%;
  height: auto;
}
.top-kv .wrap {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic",
    sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* =========================
   SP
========================= */
@media screen and (max-width: 768px) {
  #main.kv-pc,
  .top-kv .wrap {
    display: none !important;
  }

  .top-kv {
    position: relative;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
  }

  .kv-sp {
    display: block !important;
    width: 100%;
    height: auto !important;
    overflow: hidden;
    position: relative;
  }

  .kv-sp img {
    display: block !important;
    width: 100%;
    height: auto !important;
    transform: scale(1.06);
    transform-origin: center center;
    -webkit-animation: kvZoomSp 8s ease-out forwards;
    animation: kvZoomSp 8s ease-out forwards;
  }

  .kv-copy {
    left: 6%;
    top: 8%;
    width: 92%;
    text-align: center;
    max-width: none;
  }

  .kv-copy__main {
    white-space: nowrap;
    font-size: clamp(2.4rem, 6.2vw, 3.2rem);
    letter-spacing: 0.04em;
    font-weight: 500;
    line-height: 1.25;
    color: #4a3326;
    white-space: nowrap;
  }

  .kv-copy__main::after {
    width: 62%;
    margin-top: 0.8rem;
    border-bottom: 0.22rem solid #cfa17e;
    opacity: 0.9;
  }

  .kv-copy__sub {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    letter-spacing: 0.06em;
    font-weight: 500;
    line-height: 1.8;
    color: #4a3326;
    margin-top: 1.3rem;
  }

  .scroll {
    display: block !important;
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 20;
    font-size: 1rem;
    padding-bottom: 3rem;
    color: #fff;
    text-align: center;
  }

  .scroll::after {
    width: 0.15rem;
    height: 5rem;
    background: #fff;
    content: "";
    height: 5rem;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    -webkit-animation: anime infinite ease 1s;
    animation: anime infinite ease 1s;
  }
}

@-webkit-keyframes kvZoomSp {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes kvZoomSp {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

/*  ----------------------------------------------------------

about

----------------------------------------------------------  */
.top-about {
  padding: 8rem 12rem 8rem 6rem;
}

.top-about .wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.top-about .wrap > figure {
  width: 55%;
  margin-left: -15%;
  position: relative;
  z-index: 1;

  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.top-about .wrap > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.top-about .wrap > div {
  width: 60%;
  position: relative;
  z-index: 99;
  padding: 6rem 20% 6rem 6rem;
  z-index: 0;
}
.top-about .wrap > div::before,
.top-about .wrap > div::after,
.top-about .wrap > div > div::before,
.top-about .wrap > div > div::after {
  content: "";
  width: 6rem;
  height: 6rem;
  position: absolute;
}
.top-about .wrap > div::before {
  border-left: solid 0.3rem #c7a97f;
  border-top: solid 0.3rem #c7a97f;
  left: 0;
  top: 0;
}
.top-about .wrap > div::after {
  border-right: solid 0.3rem #c7a97f;
  border-top: solid 0.3rem #c7a97f;
  right: 0;
  top: 0;
}
.top-about .wrap > div > div::before {
  border-left: solid 0.3rem #c7a97f;
  border-bottom: solid 0.3rem #c7a97f;
  left: 0;
  bottom: 0;
}
.top-about .wrap > div > div::after {
  border-right: solid 0.3rem #c7a97f;
  border-bottom: solid 0.3rem #c7a97f;
  right: 0;
  bottom: 0;
}
.top-about .wrap > div p {
  margin-bottom: 3rem;
}
.top-about .more {
  text-align: center;
  display: table;
}

.top-about .wrap > div {
  transform: translateX(3rem);
}

@media screen and (max-width: 768px) {
  .top-about {
    padding: 10rem 3rem;
  }
  .top-about .wrap {
    display: block;
  }
  .top-about .wrap > figure {
    width: 100%;
    margin-left: 0;
    margin-bottom: 3rem;
    aspect-ratio: 3 / 2;
    overflow: hidden;
  }

  .top-about .wrap > figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }
  .top-about .wrap > div {
    width: 100%;
    padding: 3rem;
    transform: none !important;
  }
}

.feature-icons {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 0 auto;
  padding: 12rem 0;
  text-align: center;
  background: #efece8;
}

.feature-icon {
  width: 300px;
  flex: 0 1 300px;
}

.feature-icon__circle {
  width: 14rem;
  aspect-ratio: 1 / 1;
  margin: 0 auto 2rem;
  border: 1px solid #d8c2a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffaf4;
}

.feature-icon__circle img {
  width: 58%;
  height: 58%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.feature-icon h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #4a3326;
  font-weight: 600;
}

.feature-icon p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #5f5148;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .feature-icons {
    gap: 3rem;
  }

  .feature-icon {
    width: calc((100% - 6rem) / 3);
  }

  .feature-icon__circle {
    width: 12rem;
  }

  .feature-icon h3 {
    font-size: 1.7rem;
  }
}

/* スマホ */
@media screen and (max-width: 600px) {
  .feature-icons {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 2rem;
  }

  .feature-icon {
    width: 100%;
  }

  .feature-icon__circle {
    width: 12rem;
    margin-bottom: 1.5rem;
  }

  .feature-icon h3 {
    font-size: 1.8rem;
  }

  .feature-icon p {
    font-size: 1.5rem;
  }
}

/* target */

.target-section {
  padding: 12rem 3rem;
  background: #fffdf8;
}

.target-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.target-section__title {
  text-align: center;
  font-size: 3rem;
  color: #4a3326;
  margin-bottom: 8rem;
  font-weight: 600;
}

.target-section__title {
  position: relative;
  text-align: center;
  margin-bottom: 7rem;
}

.target-section__title::after {
  content: "";
  display: block;

  width: 70px;
  height: 2px;

  margin: 2rem auto 0;

  background: #d7b98c;
}

.target-list {
  display: flex;
  gap: 3.5rem;
}

.target-card {
  width: calc((100% - 7rem) / 3);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  padding: 0 0 2rem;
  background: #fff;
}

.target-card.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.target-card.fade.active,
.target-card.fade.fade_on,
.target-card.fade.is-active {
  opacity: 1;
  transform: translateY(0);
}

.target-card:nth-child(1) {
  transition-delay: 0.1s;
}

.target-card:nth-child(2) {
  transition-delay: 0.3s;
}

.target-card:nth-child(3) {
  transition-delay: 0.5s;
}

.target-card__image {
  aspect-ratio: 4 / 3;
  overflow: visible;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 4rem;
}

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

.target-card__num {
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  background: #d7b98c;
  color: #fff;
  font-size: 3.2rem;
  line-height: 6.8rem;
  font-family: serif;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
}

.target-card h3 {
  font-size: 2.6rem;
  line-height: 1.6;
  color: #4a3326;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.target-card__line {
  display: block;
  width: 3rem;
  height: 1px;
  background: #d7b98c;
  margin: 0 auto 2rem;
}

.target-card p {
  font-size: 1.6rem;
  line-height: 2;
  color: #5f5148;
  padding: 0 2rem 2rem 2rem;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .target-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .target-card {
    width: 100%;
  }

  .target-card h3 {
    font-size: 2.3rem;
  }

  .target-card p {
    font-size: 1.6rem;
  }

  .target-card__num {
    width: 5.6rem;
    height: 5.6rem;
    line-height: 5.6rem;
    font-size: 2.6rem;
    bottom: -2.6rem;
  }
}

/* スマホ */
@media screen and (max-width: 600px) {
  .target-card__image {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }

  .target-card__num {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 5.8rem;
    height: 5.8rem;
    line-height: 1;
    margin: -2.9rem auto 3rem;
    font-size: 2.6rem;
  }

  .target-section__title {
    font-size: 2.3rem;
  }
}
/* ===== gift ===== */
#gift {
  position: relative;
}

#gift > ul {
  display: block;
  width: 100%;
  margin: 0 0 12rem 0;
}

#gift > ul > li.gift-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 60rem;
  margin: 0;
  padding: 8rem 3rem;

  background: url("../img/gift.png") center center / cover no-repeat;
  box-sizing: border-box;
  overflow: hidden;
}

#gift > ul > li.gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(95, 81, 72, 0.4);
  z-index: 1;
}

.gift-card figure {
  display: none;
}

.gift-card__text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding: 0;
  color: #fff;
  transform: translateY(-1.5rem);
}

.gift-card__icon {
  width: 4.2rem;
  margin: 0 auto 1.6rem;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.gift-card__text h3 {
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
}

.gift-card__text p {
  color: #fff;
  line-height: 2.1;
  margin-bottom: 0;
}

.gift-card__text p::after {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== shop cta ===== */
.shop-cta {
  padding: 8rem 0;
  background: var(--color-bg);
}

.shop-cta .wrap {
  width: 100%;
  padding: 0;
}

.shop-cta__inner {
  display: flex;
  align-items: center;
  gap: 6rem;
  box-sizing: border-box;
  flex-direction: row-reverse;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.shop-cta__image {
  position: relative;
  width: 55%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.shop-cta__text {
  width: 45%;
}

.shop-cta__text .heading-2 {
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 2.3rem;
}

.shop-cta__text h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #c7a97f;
  margin-top: 2rem;
}

.shop-cta__text p {
  line-height: 2.1;
  margin-bottom: 0;
}

.shop-cta__btn {
  display: block;
  margin: 4rem auto 0;
  padding: 1.4rem 4rem;
  background: #c7a97f;
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.08em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.detail-link {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8c7a66;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.4rem auto 0;
  justify-content: center;
  width: fit-content;
  border-bottom: none !important;
}

.detail-link__arrow {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s ease;
}

.detail-link__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.detail-link:hover .detail-link__arrow {
  transform: translateX(10px);
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {
  #gift > ul {
    margin-top: 8rem;
  }

  #gift > ul > li.gift-card {
    min-height: 38rem;
    padding: 6rem 2.4rem;
    background-position: center center;
  }

  .gift-card__text {
    max-width: 100%;
  }

  .shop-cta__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .top-service ul li .gift-card__text {
    padding: 0;
  }

  .gift-card__text h3 {
    font-size: 2rem;
    line-height: 1.6;
  }

  .gift-card__text p {
    font-size: 1.6rem;
  }

  .shop-cta {
    padding: 6rem 0;
  }

  .shop-cta .wrap {
    padding: 0;
  }

  .shop-cta__inner {
    flex-direction: column;
    padding: 3rem;
    gap: 0;
  }

  .shop-cta__image,
  .shop-cta__text {
    width: 100%;
  }

  .shop-cta__text h3::after {
    margin: 2rem auto 0;
  }

  .shop-cta__image img {
    height: auto;
  }

  .shop-cta__image::after {
    display: none;
  }

  .shop-cta__text {
    text-align: center;
    padding-top: 2rem;
    padding-left: 0;
  }

  .shop-cta__text .heading-2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 3rem;
  }

  .shop-cta__btn {
    margin-top: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .detail-link {
    justify-content: center;
    font-size: 1.4rem;
    gap: 14px;
    margin-top: 2rem;
  }

  .detail-link__arrow {
    width: 42px;
  }

  .detail-link:hover .detail-link__arrow {
    transform: translateX(6px);
  }
}

/*  ----------------------------------------------------------

service

----------------------------------------------------------  */
.top-service {
  padding: 10rem 12rem;
  background: var(--color-bg);
  background: linear-gradient(180deg, #f5f3ef 0%, #fffdf8 100%);
}
.top-service > ul > li {
  display: flex;
  position: relative;
  align-items: center;
}
.top-service ul li:nth-child(even) {
  flex-direction: row-reverse;
}
.top-service ul li:nth-child(odd)::before,
.top-service ul li:nth-child(even)::before {
  content: "";
  width: 70%;
  height: 90%;
  background: #fff;
  position: absolute;
  bottom: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.top-service ul li:nth-child(odd)::before {
  right: 0;
}
.top-service ul li:nth-child(even)::before {
  left: 0;
}
.top-service ul li:not(:last-child) {
  margin-bottom: 10rem;
}
.top-service ul li figure {
  width: 50%;
  display: flex;
  justify-content: center;
  transform: translateX(2rem);
  z-index: 2;
}
.top-service ul li > div {
  width: 50%;
  padding: 8rem 5rem 6rem;
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-service ul li.service-main {
  min-height: 32rem;
}

.top-service ul li figure {
  width: 50%;
  height: 30rem;
  display: flex;
  justify-content: center;
  transform: translateX(2rem);
  z-index: 2;
  overflow: hidden;
}

.top-service ul li figure img {
  width: 90%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.top-service ul li.service-main {
  min-height: 32rem;
}
.top-service p {
  margin-bottom: 3rem;
}
.top-service .more {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-service {
    padding: 10rem 3rem;
  }

  .top-service ul li {
    display: block;
    min-height: auto;
  }

  .top-service ul li:nth-child(odd)::before,
  .top-service ul li:nth-child(even)::before {
    display: none;
  }

  .top-service ul li:not(:last-child) {
    margin-bottom: 6rem;
  }

  .top-service ul li figure,
  .top-service ul li.service-main figure {
    width: 100%;
    height: auto;
    display: block;
    transform: none !important;
    overflow: visible;
  }

  .top-service ul li figure img,
  .top-service ul li.service-main figure img {
    width: 100% !important;
    max-width: none !important;
    height: 22rem;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
  }

  .top-service ul li > div {
    width: 100%;
    background: #fff;
    padding: 3rem;
    min-height: auto;
    display: block;
  }

  .top-service p {
    margin-bottom: 3rem;
  }
}

/*  ----------------------------------------------------------

works

----------------------------------------------------------  */
.top-works {
  padding: 10rem 12rem;
  position: relative;
}
.top-works .wrap {
  position: relative;
  margin-top: -30rem;
}
.top-works figure {
  width: 65%;
  margin-left: auto;
}
.top-works .wrap > figure img {
  height: 36rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-works .wrap > div {
  position: relative;
}
.top-works .wrap > div::before,
.top-works .wrap > div::after,
.top-works .wrap > div > div::before,
.top-works .wrap > div > div::after {
  content: "";
  width: 6rem;
  height: 6rem;
  position: absolute;
}
.top-works .wrap > div::before {
  border-left: solid 0.3rem var(--color-prime);
  border-top: solid 0.3rem var(--color-prime);
  left: 0;
  top: 0;
  z-index: 10;
}
.top-works .wrap > div::after {
  border-left: solid 0.3rem var(--color-prime);
  border-bottom: solid 0.3rem var(--color-prime);
  left: 0;
  bottom: 0;
}
.top-works .wrap > div > div::after {
  border-right: solid 0.3rem var(--color-prime);
  border-bottom: solid 0.3rem var(--color-prime);
  right: 0;
  bottom: 0;
}
.top-works .wrap > div > div {
  padding: 10rem 6rem 10rem 0;
}
.top-works .wrap > div > div > div:first-of-type {
  background: #fff;
  width: 50%;
  padding: 4rem 4rem 0 4rem;
  margin-bottom: 15rem;
}
.top-works .wrap > div p {
  margin-bottom: 3rem;
}
.top-works .more {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top-works {
    padding: 10rem 3rem;
  }
  .top-works .wrap {
    margin-top: 0;
  }
  .top-works figure {
    width: 100%;
    margin-bottom: 3rem;
  }
  .top-works .wrap > figure img {
    height: 28rem;
  }
  .top-works .wrap > div > div {
    padding: 3rem;
  }
  .top-works .wrap > div > div > div:first-of-type {
    width: 100%;
    padding: 0;
  }
  .top-works .wrap > div > div::before {
    border-right: solid 0.3rem var(--color-prime);
    border-top: solid 0.3rem var(--color-prime);
    right: 0;
    top: 0;
  }
}

/*  ----------------------------------------------------------

recruit

----------------------------------------------------------  */
.top-recruit {
  margin: 0 12rem 0 6rem;
  padding: 8rem 0;
  background: linear-gradient(to left, var(--color-bg) 60%, transparent 60%);
}
.top-recruit .wrap {
  display: flex;
  align-items: center;
}
.top-recruit .wrap figure {
  width: 55%;
}
.top-recruit figure img {
  height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-recruit .wrap > div {
  width: 45%;
  padding: 0 6rem;
}
.top-recruit p {
  margin-bottom: 3rem;
}
.top-recruit .more {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-recruit {
    margin: 0;
    padding: 10rem 3rem;
    background: linear-gradient(to left, var(--color-bg) 60%, transparent 60%);
  }
  .top-recruit .wrap {
    display: block;
  }
  .top-recruit .wrap figure {
    width: 100%;
    margin-bottom: 3rem;
  }
  .top-recruit figure img {
    height: 28rem;
  }
  .top-recruit .wrap > div {
    width: 100%;
    padding: 0;
  }
}

/*  ----------------------------------------------------------

access

----------------------------------------------------------  */
.top-access {
  padding: 10rem 12rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.top-access > div:nth-of-type(1) {
  width: 45%;
  padding-left: 5rem;
}
.top-access > div:nth-of-type(2) {
  width: 55%;
}
.top-access .logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top-access {
    padding: 10rem 3rem;
    display: block;
  }
  .top-access > div:nth-of-type(1) {
    width: 100%;
    padding-left: 0;
    margin-bottom: 4rem;
  }
  .top-access > div:nth-of-type(2) {
    width: 100%;
  }
}

/*  ----------------------------------------------------------

contact

----------------------------------------------------------  */
.top-contact {
  padding: 8rem 12rem;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-contact > div:nth-of-type(1) {
  width: 35%;
}
.top-contact > div:nth-of-type(2) {
  width: 65%;
}
.top-contact p {
  margin-bottom: 3rem;
}
.top-contact .more {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-contact {
    padding: 10rem 3rem;
    display: block;
  }
  .top-contact > div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 3rem;
  }
  .top-contact > div:nth-of-type(2) {
    width: 100%;
  }
  .top-contact .more {
    margin: 0;
  }
}

.top_se_btn {
  width: 100%;
  text-align: center;
  margin: 5rem auto;
  display: flex;
  justify-content: center;
}

.ts_sh {
  text-shadow: #000 1px 0 6px;
}

.top-about,
.top-service,
.target-section,
.shop-cta {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

/* タブレット */
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .top-about,
  .top-service,
  .target-section,
  .shop-cta {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .top-about .wrap > div {
    padding-right: 12%;
  }

  .top-about .wrap > figure {
    margin-left: -5%;
  }

  .top-service ul li > div {
    padding: 6rem 4rem 4rem;
  }

  .target-list {
    gap: 2.5rem;
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  .top-about,
  .top-service,
  .target-section,
  .shop-cta {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .top-about .wrap > div {
    transform: none !important;
  }
}

/*  ----------------------------------------------------------

float shop btn

----------------------------------------------------------  */
/*  
.fixed-shop-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 310px;
  height: 80px;

  background: #5f7751;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-decoration: none;

  border-radius: 999px;

  box-shadow: 0 6px 18px rgba(111, 138, 95, 0.15), 0 1px 4px rgba(0, 0, 0, 0.05);

  z-index: 9999;

  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fixed-shop-btn:hover {
  background: #6f8a5f;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(111, 138, 95, 0.22);
  opacity: 1 !important;
  transform: translateY(-4px);
}
.fixed-shop-btn::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.fixed-shop-btn:hover::after {
  transform: translateX(4px);
}
@media screen and (max-width: 768px) {
  .fixed-shop-btn {
    width: calc(100% - 24px);
    max-width: 360px;

    height: 64px;

    right: 12px;
    bottom: 12px;

    font-size: 2.4rem;
  }
}

*/

.fixed-shop-btn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 9999;

  width: 180px;
  -webkit-filter: drop-shadow(0 8px 18px rgba(111, 98, 92, 0.15));
  filter: drop-shadow(0 12px 28px rgba(111, 98, 92, 0.22));

  transition: all 0.3s ease;
}

.fixed-shop-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-shop-btn:hover {
  transform: translateY(-4px);
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .fixed-shop-btn {
    width: 125px;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}
