@charset "UTF-8";
/* ==========================
共通
========================== */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  display: inline-block;
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.sec-title {
  margin: 0 0 40px;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.1rem;
  text-shadow: 5px 5px 5px #ffffff;
  font-family: "Zen Maru Gothic", sans-serif;
}
.sec-title span {
  color: #E34600;
}

.sp-only {
  display: none;
}

img,
video {
  width: 100%;
  height: auto;
}

.inner {
  max-width: 900px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background-color: #fff;
  color: #e85d04;
  border: 1px solid rgba(232, 93, 4, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-weight: bold;
  border-radius: 50px;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  background-color: rgba(232, 120, 0, 0.75);
  color: #fff;
}

/* ==========================
トップへ戻る
========================== */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 80px;
  height: 80px;
  padding: 15px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 180, 51, 0.85);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
  animation: float 3s ease-in-out infinite;
}

/* 表示用 */
.page-top.show {
  opacity: 1;
  visibility: visible;
}

/* 魚画像 */
.page-top img {
  width: 100%;
  transition: 0.3s;
}

.page-top span {
  color: #333;
}

/* hoverでぴょん */
.page-top:hover img {
  transform: translateY(-8px) rotate(8deg);
}

/* ふわふわ */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ==========================
fadein
========================== */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
loading
========================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF8E8;
}
.loading__text {
  margin-bottom: 48px;
  font-size: 3rem;
  text-align: center;
  color: #d99a00;
  font-weight: bold;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: fadeText 1s ease forwards;
  animation-delay: 0.5s;
}
.loading__percent {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

@keyframes fadeText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
  .inner {
    padding: 0 16px;
    box-sizing: border-box;
  }
  .sec-title {
    margin-bottom: 32px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-top {
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .page-top span {
    font-size: 0.75rem;
  }
  .loading__text {
    margin-bottom: 32px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .loading__percent {
    font-size: 1.25rem;
  }
  .sp-only {
    display: inline;
  }
}
/* ==========================
header
========================== */
.header {
  max-width: 1440px;
}
.header__fv {
  width: 100%;
  height: 100vh;
}
.header__fv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__nav-wrap {
  padding-block: 16px;
  background-color: #fff;
  box-shadow: 5px 5px 10px #b0b0b0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}
.header__logo {
  width: 110px;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 80px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: 0.4s;
}
.header__item a:hover {
  background-image: url("../img/fish-blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transform: translateY(-3px) rotate(2deg);
}
.header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.header__sns i,
.header__sns img {
  font-size: 2.3rem;
  color: #ff4d00;
  transition: 0.3s;
}
.header__sns i:hover,
.header__sns img:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.header__hamburger {
  display: none;
  width: 40px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 999px;
  transition: 0.3s;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 10px;
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .header__fv {
    height: 40vh;
  }
  .header__inner {
    justify-content: space-between;
    padding: 0 16px;
  }
  .header__logo {
    width: 80px;
  }
  .header {
    /* ハンバーガー */
  }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .header__hamburger span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 999px;
    transition: 0.3s;
  }
  .header__hamburger {
    /* ×ボタン */
  }
  .header__hamburger.is-active {
    position: fixed;
    top: 24px;
    right: 16px;
    z-index: 100;
  }
  .header__hamburger.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .header {
    /* ナビ */
  }
  .header__nav {
    display: none;
  }
  .header__nav.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: #FFF8E8;
    z-index: 100;
  }
  .header__list {
    flex-direction: column;
    gap: 32px;
  }
  .header__item a {
    width: auto;
    height: auto;
    font-size: 1.5rem;
  }
  .header__sns a {
    width: 80px;
    height: auto;
  }
  .header__sns i,
  .header__sns img {
    font-size: 2.5rem;
  }
  /* スクロール禁止 */
  body.is-fixed {
    overflow: hidden;
    height: 100vh;
  }
}
/* ==========================
走る魚やgoとは
========================== */
.about {
  max-width: 1440px;
  padding: 112px 0;
  background-color: rgba(255, 209, 102, 0.7);
}
.about__inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
}
.about__content {
  display: flex;
  gap: 64px;
}
.about__content:not(:first-child) {
  margin-top: 80px;
}
.about__content.active .about__left img {
  opacity: 1;
  transform: scale(1);
}
.about__content.active .about__right {
  opacity: 1;
  transform: translateX(0);
}
.about__left {
  width: 45%;
  margin-top: 40px;
}
.about__left img {
  opacity: 0;
  transform: scale(1.05);
  transition: all 1.2s ease;
}
.about__right {
  width: 55%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
  transition-delay: 0.3s;
}
.about__right {
  width: 55%;
  opacity: 1;
  transform: translateX(0);
}
.about__feature {
  margin-top: 56px;
}
.about__feature .sec-title {
  transform: translateX(-16px);
}
.about__list li, .about__feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 8px;
}
.about__list li::before, .about__feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.about__list li span, .about__feature-list li span {
  color: #e95b0f;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
  .about__inner {
    width: 100%;
    padding: 0 16px;
  }
  .about__content {
    flex-direction: column;
    gap: 32px;
  }
  .about__content:not(:first-child) {
    margin-top: 56px;
  }
  .about__left, .about__right {
    width: 100%;
  }
  .about__feature {
    margin-top: 40px;
  }
  .about__left {
    width: 100%;
    margin-top: 0;
  }
  .about__left img {
    width: 100%;
    opacity: 0.9;
  }
  .about__list li, .about__feature-list li {
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.8;
  }
}
/* ==========================
お任せください
========================== */
.target {
  max-width: 1440px;
  padding: 112px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../img/wave3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  overflow: hidden;
}
.target__item {
  max-width: 600px;
  margin: 32px auto;
  position: relative;
  padding: 16px 16px 16px 70px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.target__item.show {
  opacity: 1;
  transform: translateY(0);
}
.target__item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/checkbox.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.target .target__item:nth-child(1) {
  transition-delay: 0s;
}
.target .target__item:nth-child(2) {
  transition-delay: 0.2s;
}
.target .target__item:nth-child(3) {
  transition-delay: 0.4s;
}

@media screen and (max-width: 767px) {
  .target {
    padding: 40px 0;
  }
  .target__item {
    margin: 20px auto;
    padding: 14px 14px 14px 52px;
    font-size: 1rem;
    line-height: 1.6;
  }
  .target__item::before {
    left: 18px;
    width: 20px;
    height: 20px;
  }
}
.product {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #FFF8E8;
}
.product__inner {
  width: 1090px;
  margin: 0 auto;
}
.product__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.product__list.active .product__item {
  opacity: 1;
  transform: translateY(0);
}
.product__list.active .product__item:nth-child(2) {
  transition-delay: 0.2s;
}
.product__list.active .product__item:nth-child(3) {
  transition-delay: 0.4s;
}
.product__item {
  width: 100%;
  height: 350px;
  padding: 16px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}
.product__item:hover {
  transform: translateY(-8px);
}
.product__head {
  display: flex;
}
.product__number {
  color: #f5a623;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 8px;
}
.product__name {
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}
.product__img {
  width: 100%;
  height: 200px;
}
.product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product__btn-wrap {
  margin-top: 64px;
  text-align: center;
}

@media (max-width: 1000px) {
  .product__list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .product {
    padding: 40px 0;
  }
  .product__inner {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .product__list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .product__item {
    width: 100%;
    height: auto;
    padding: 16px;
  }
  .product__number {
    font-size: 1.5rem;
  }
  .product__name {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .product__img {
    width: 100%;
    height: 220px;
  }
  .product__btn-wrap {
    margin-top: 40px;
  }
}
.service {
  max-width: 1440px;
  padding: 112px 0;
  background-image: url("../img/work,service-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-inline: 16px;
}
.service__card {
  padding: 80px 60px;
  background: rgba(255, 214, 80, 0.45);
  backdrop-filter: blur(3px);
  border-radius: 500px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.service__card--event {
  max-width: 850px;
}
.service__card:nth-child(2) {
  transition-delay: 0.2s;
}
.service__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.service__item {
  position: relative;
  padding-left: 36px;
  font-size: 1.25rem;
}
.service__item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("../img/checkbox.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.service__item span {
  color: #e85d04;
  font-weight: bold;
}
.service__map {
  position: relative;
  width: 320px;
}
.service__map img {
  width: 100%;
  display: block;
  opacity: 0.88;
  filter: sepia(0.15);
  border-radius: 16px;
}
.service__map-text {
  margin-top: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #333;
  text-align: left;
}
.service__pin {
  position: absolute;
  width: 13px;
  color: #e85d04;
  cursor: pointer;
  animation: pin 2s infinite;
  transition: transform 0.3s;
}
.service__pin img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}
.service__pin-icon {
  transition: transform 0.3s;
}
.service__pin.active .service__pin-icon {
  transform: translateY(-8px) scale(1.3);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}
.service__pin.active .service__popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  z-index: 30;
  pointer-events: auto;
}
.service__pin--utsunomiya {
  top: 43%;
  left: 51%;
}
.service__pin--haga {
  top: 47%;
  left: 64%;
}
.service__pin--nikko {
  top: 22%;
  left: 27%;
}
.service__pin--nasu {
  top: 5%;
  left: 69%;
}
.service__pin--kanuma {
  top: 44%;
  left: 33%;
}
.service__pin--itikai {
  top: 46%;
  left: 72%;
}
.service__pin--takanezawa {
  top: 40%;
  left: 62%;
}
.service__popup {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  max-height: 200px;
  padding: 20px 20px 0 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  background: #fffaf0;
  border: 1px solid rgba(232, 93, 4, 0.15);
  overflow-y: scroll;
  position: relative;
}
.service__popup::after {
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255, 250, 240, 0), #fffaf0);
  pointer-events: none;
}
.service__popup h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.service__popup-list {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333;
  text-align: left;
  list-style: disc;
  padding-left: 1.5em;
}
.service__contact-btn {
  background-color: rgba(255, 255, 255, 0.85);
}
.service__text {
  margin-bottom: 32px;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .service {
    padding: 40px 0;
    background-image: url("../img/service.vg.sp.png");
  }
  .service .inner {
    padding: 0 16px;
    gap: 48px;
  }
  .service__card {
    padding: 40px 24px;
    border-radius: 40px;
  }
  .service__content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .service__list {
    gap: 12px;
  }
  .service__item {
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.6;
  }
  .service__item::before {
    width: 18px;
    height: 18px;
    top: 6px;
  }
  .service__map {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .service__popup {
    width: 220px;
  }
  .service__popup h3 {
    font-size: 1.2rem;
  }
  .service__popup p {
    font-size: 0.8rem;
  }
  .service__text {
    font-size: 1rem;
    line-height: 1.8;
  }
  .service__contact-btn {
    width: 100%;
    max-width: 280px;
  }
}
.gallery {
  max-width: 1440px;
}
.gallery__slick {
  width: 100%;
  overflow: hidden;
  margin: 100px auto;
}
.gallery__list li {
  padding-left: 40px;
}
.gallery__list img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .gallery__slick {
    margin: 60px auto;
  }
  .gallery__list li {
    padding-left: 16px;
  }
  .gallery__list img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #f6df9d;
}
.news__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-top: 64px;
}
.news__schedule {
  text-align: center;
}
.news__title {
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: bold;
}
.news__img {
  width: 350px;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  overflow: hidden;
}
.news__img img {
  width: 100%;
  height: 100%;
  display: block;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news__info {
  width: 350px;
  padding: 8px;
  border-bottom: 1px solid #333;
}
.news__meta {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 4px;
}
.news__text {
  padding-left: 8px;
}
.news__date {
  font-size: 1.25rem;
}
.news__text {
  font-size: 1.25rem;
  line-height: 1.5;
}
.news__btn-wrap {
  display: flex;
  gap: 16px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.news__btn i {
  font-size: 2rem;
  padding-right: 8px;
}

@media screen and (max-width: 767px) {
  .news {
    padding: 40px 0;
  }
  .news__content {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
  }
  .news__schedule {
    width: 100%;
  }
  .news__img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .news__list {
    width: 100%;
    align-items: center;
  }
  .news__info {
    width: 100%;
    max-width: 350px;
  }
  .news__meta {
    font-size: 1rem;
  }
  .news__text {
    font-size: 0.95rem;
    padding-left: 0;
  }
  .news__btn-wrap {
    margin-top: 32px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .news__btn {
    width: 100%;
    max-width: 300px;
  }
  .news i {
    font-size: 1.5rem;
  }
}
.voice {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #fdf7e8;
  overflow: hidden;
}
.voice .sec-title {
  position: relative;
}
.voice .sec-title span {
  display: block;
}
.voice .sec-title span:last-child {
  margin-top: 8px;
  font-size: 2rem;
  color: #333;
}
.voice .sec-title::before, .voice .sec-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: #202020;
}
.voice .sec-title::before {
  left: 50px;
  transform: rotate(45deg);
}
.voice .sec-title::after {
  right: 50px;
  transform: rotate(-45deg);
}
.voice__content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
}
.voice__item {
  width: 280px;
  transform: rotate(-2deg);
  filter: drop-shadow(4px 6px 6px rgba(0, 0, 0, 0.2));
}
.voice__item:last-child {
  transform: rotate(2deg);
}
.voice__item img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .voice {
    padding: 40px 0;
  }
  .voice .sec-title {
    font-size: 2rem;
    line-height: 1.4;
  }
  .voice .sec-title span:last-child {
    font-size: 1rem;
  }
  .voice .sec-title::before, .voice .sec-title::after {
    width: 0;
  }
  .voice__content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }
  .voice__item {
    width: 100%;
    transform: rotate(0deg);
  }
  .voice__item:last-child {
    transform: rotate(0deg);
  }
}
.faq {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #f8f8f8;
}
.faq .sec-title {
  margin-bottom: 64px;
  text-align: center;
}
.faq .accordion-area {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq .accordion-area li {
  background-color: #fff;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.faq .accordion-area .title {
  position: relative;
  padding: 12px 72px 12px 40px;
  font-size: 1.25rem;
  font-weight: normal;
  cursor: pointer;
}
.faq .accordion-area .title span {
  margin-right: 4px;
}
.faq .accordion-area .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 32px;
  height: 32px;
  background-image: url("../img/faq_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.faq .accordion-area .title.close::after {
  animation: faqIcon 0.6s;
}
@keyframes faqIcon {
  0% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-50%) translateX(-20px);
  }
  41% {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.faq .accordion-area .box {
  display: none;
  padding: 0 40px 24px;
}
.faq .accordion-area .box p {
  line-height: 1.8;
}
.faq .accordion-area .box span {
  margin-right: 4px;
  color: #E34600;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
  .faq .sec-title {
    margin-bottom: 40px;
  }
  .faq .accordion-area {
    gap: 16px;
  }
  .faq .accordion-area .title {
    padding: 12px 48px 12px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .faq .accordion-area .title::after {
    right: 12px;
    width: 24px;
    height: 24px;
  }
  .faq .accordion-area .box {
    padding: 0 16px 16px;
  }
  .faq .accordion-area .box p {
    font-size: 0.85rem;
    line-height: 1.8;
  }
}
.shop {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #fdf7e8;
}
.shop__text {
  margin-top: 24px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
}
.shop__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
}
.shop__item {
  width: 320px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
}
.shop__img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.shop__name {
  margin-top: 24px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.shop__desc {
  margin-top: 12px;
  text-align: center;
  line-height: 1.8;
}
.shop__btn-wrap {
  margin-top: 64px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .shop {
    padding: 40px 0;
  }
  .shop__text {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .shop__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
  }
  .shop__item {
    width: 100%;
    padding: 16px;
  }
  .shop__name {
    margin-top: 16px;
    font-size: 1.5rem;
  }
  .shop__desc {
    margin-top: 8px;
    font-size: 0.95rem;
  }
  .shop__btn-wrap {
    margin-top: 40px;
  }
  .shop__btn {
    width: 100%;
    max-width: 280px;
  }
}
.footer {
  max-width: 1440px;
  padding: 112px 0 56px 0;
  background-color: #f6df9d;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
}
.footer__logo {
  width: 320px;
  margin-bottom: 40px;
}
.footer__logo img {
  width: 100%;
  display: block;
}
.footer__info {
  max-width: 420px;
}
.footer__info th,
.footer__info td {
  padding-bottom: 12px;
  font-size: 1.25rem;
  text-align: left;
  vertical-align: top;
}
.footer__info th {
  padding-right: 16px;
  color: #e85d04;
  font-weight: bold;
  white-space: nowrap;
}
.footer__map {
  gap: 8px;
  margin-top: 24px;
}
.footer__map img {
  width: 20px;
  display: block;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__item {
  font-size: 1.25rem;
}
.footer__item a {
  position: relative;
  transition: 0.3s;
}
.footer__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #e85d04;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.footer__item a:hover {
  color: #e85d04;
  scale: 1.1;
}
.footer__item a:hover::after {
  transform: scaleX(1);
}
.footer__sns-title {
  font-size: 1.5rem;
}
.footer__sns-list {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.footer__sns-list a img {
  width: 100px;
  transition: 0.3s;
}
.footer__sns-list a img:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.footer__sns-list a i {
  font-size: 3rem;
  transition: 0.3s;
  color: #e85d04;
}
.footer__sns-list a i:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.footer__copy {
  margin-top: 80px;
  text-align: center;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
  .footer__logo {
    width: 220px;
    margin: 0 auto 32px;
  }
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer__left {
    width: 100%;
    text-align: center;
  }
  .footer__info {
    width: auto;
    margin: 0 auto;
  }
  .footer__info th,
  .footer__info td {
    font-size: 0.9rem;
  }
  .footer__map {
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
  }
  .footer__nav {
    width: 100%;
    text-align: center;
  }
  .footer__list {
    gap: 16px;
  }
  .footer__sns {
    text-align: center;
  }
  .footer__sns-list {
    justify-content: center;
    gap: 20px;
  }
  .footer__sns-list i {
    font-size: 2.5rem;
  }
  .footer__sns-list img {
    width: 80px;
  }
  .footer__copy {
    margin-top: 40px;
    font-size: 0.85rem;
  }
}
.product-list {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #fdf7e8;
}
.product-list__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.product-list__text {
  font-size: 1.5rem;
  text-align: center;
  line-height: 2;
  padding-bottom: 8px;
}
.product-list__note {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  line-height: 2;
}
.product-list__category {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.product-list__btn {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #fff;
  color: #e85d04;
  border: 1px solid rgba(232, 93, 4, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-weight: bold;
  transition: 0.3s;
}
.product-list__btn.is-active {
  background: #e85d04;
  color: #fff;
}
.product-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  margin-top: 40px;
}

.product-card {
  width: 100%;
  transform: translateY(30px);
  transition: 0.8s;
}

.product-card.is-show {
  opacity: 1;
  transform: translateY(0);
}

.product-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__name {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.product-card__price {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #e85d04;
}

.product-list__btn-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 64px;
  flex-wrap: wrap;
}

.product-list__cta-btn {
  background-color: #fff;
  color: #e85d04;
  border: 1px solid rgba(232, 93, 4, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.product-list__cta-btn i {
  font-size: 1.5rem;
  padding-right: 8px;
}
.product-list__cta-btn:hover {
  transform: translateY(-2px);
  background-color: rgba(232, 120, 0, 0.75);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .product-list {
    padding: 40px 0 80px 0;
  }
  .product-list__inner {
    padding-inline: 16px;
  }
  .product-list__text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .product-list__category {
    gap: 8px;
    margin-top: 32px;
  }
  .product-list__btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .product-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .product-list__btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 40px;
  }
  .product-list__cta-btn {
    width: 100%;
    max-width: 280px;
  }
  .product-card__name {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.contact-form,
.reservation-form {
  padding: 80px 20px;
  background-color: #fdf7e8;
}
.contact-form__inner,
.reservation-form__inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__dm,
.reservation-form__dm {
  text-align: center;
  line-height: 1.8;
}
.contact-form__dm a,
.reservation-form__dm a {
  font-size: 1.5rem;
  color: #e85d04;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #e85d04;
  transition: 0.3s;
}
.contact-form__dm a:hover,
.reservation-form__dm a:hover {
  color: #ef9738;
}
.contact-form__dm a:hover i,
.reservation-form__dm a:hover i {
  margin-right: 4px;
  transform: scale(1.25);
}
.contact-form__dm i,
.reservation-form__dm i {
  margin-right: 4px;
  transition: 0.3s;
}
.contact-form__text,
.reservation-form__text {
  margin-top: 32px;
  text-align: center;
  line-height: 2;
}
.contact-form__item,
.reservation-form__item {
  margin-top: 24px;
}
.contact-form__item p,
.reservation-form__item p {
  margin: 0;
}
.contact-form__item br,
.reservation-form__item br {
  display: none;
}
.contact-form label,
.reservation-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.contact-form label span,
.reservation-form label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 20px;
  background: #e85d04;
  color: #fff;
  font-size: 0.75rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: #e85d04;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.15);
}
.contact-form textarea,
.reservation-form textarea {
  resize: vertical;
  min-height: 200px;
}
.contact-form__btn-wrap,
.reservation-form__btn-wrap {
  margin-top: 40px;
  text-align: center;
}
.contact-form__btn,
.reservation-form__btn {
  background-color: #fff;
  color: #e85d04;
  border: 1px solid rgba(232, 93, 4, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.contact-form__btn:hover,
.reservation-form__btn:hover {
  transform: translateY(-2px);
  background-color: rgba(232, 120, 0, 0.75);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-form,
  .reservation-form {
    padding: 40px 16px;
  }
  .contact-form__dm,
  .reservation-form__dm {
    font-size: 0.95rem;
  }
  .contact-form__dm a,
  .reservation-form__dm a {
    font-size: 1.1rem;
  }
  .contact-form__text,
  .reservation-form__text {
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .contact-form__item,
  .reservation-form__item {
    margin-top: 24px;
  }
  .contact-form label,
  .reservation-form label {
    font-size: 0.95rem;
  }
  .contact-form label span,
  .reservation-form label span {
    font-size: 0.7rem;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .reservation-form input,
  .reservation-form select,
  .reservation-form textarea {
    padding: 12px;
    font-size: 1rem;
  }
  .contact-form textarea,
  .reservation-form textarea {
    min-height: 160px;
  }
  .contact-form__btn-wrap,
  .reservation-form__btn-wrap {
    margin-top: 40px;
  }
  .contact-form__btn,
  .reservation-form__btn {
    width: 100%;
    max-width: 280px;
  }
}
.news-page {
  max-width: 1440px;
  padding: 112px 0;
  background-color: #fdf7e8;
}

.inner {
  max-width: 1100px;
  margin-inline: auto;
}

.news-page__list {
  max-width: 900px;
  margin-inline: auto;
}

.news-card {
  padding: 32px 0;
  border-bottom: 1px solid #d8c9a6;
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
}
.news-card__img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.news-card__content {
  flex: 1;
}
.news-card__date {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .news-page {
    padding: 40px 0;
  }
  .news-page .inner {
    padding: 0 16px;
  }
  .news-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
  }
  .news-card__img {
    width: 100%;
    max-width: 350px;
  }
  .news-card__title {
    font-size: 1rem;
    line-height: 1.6;
  }
  .news-card__date {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */