@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #43341b;
  --white-color: #fbfbf6;
  --primary-color: #d29b36;
  --accent-color: #10663f;
  --hover-color: #b19c7a;
  --hover-color02: #73ae93;
  --main-color: #e0ead1;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 860px;
  --content-width: 1000px;
  --content-width-lg: 1200px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 12px;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: var(--main-color);
}

p {
  word-wrap: break-word; /* 長い単語を適切に折り返し */
  word-break: break-word; /* 文字単位で改行を防ぐ */
}

/* ---------- utility ---------- */

@media screen and (min-width: 768px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 64px);
}

.l_container {
  max-width: calc(var(--content-width) + 64px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 64px);
}

@media screen and (min-width: 768px) {
  .l_container-sm,
  .l_container,
  .l_container-lg {
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
  }

  .l_container-sm {
    max-width: calc(var(--content-width-sm) + 120px);
  }

  .l_container {
    max-width: calc(var(--content-width) + 120px);
  }

  .l_container-lg {
    max-width: calc(var(--content-width-lg) + 120px);
  }
}

@media screen and (min-width: 1080px) {
  .l_container-sm,
  .l_container,
  .l_container-lg {
    width: 100%;
    padding: 0 100px;
    margin: 0 auto;
  }

  .l_container-sm {
    max-width: calc(var(--content-width-sm) + 200px);
  }

  .l_container {
    max-width: calc(var(--content-width) + 200px);
  }

  .l_container-lg {
    max-width: calc(var(--content-width-lg) + 200px);
  }
}

@media screen and (min-width: 1300px) {
  .l_container-sm,
  .l_container,
  .l_container-lg {
    width: 100%;
    padding: 0 120px;
    margin: 0 auto;
  }

  .l_container-sm {
    max-width: calc(var(--content-width-sm) + 240px);
  }

  .l_container {
    max-width: calc(var(--content-width) + 240px);
  }

  .l_container-lg {
    max-width: calc(var(--content-width-lg) + 240px);
  }
}

.l_contents {
  padding: 32px 0;
}

@media screen and (min-width: 768px) {
  .l_contents {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 88px 0;
  }
}

/* ヘッダー全体のスタイル */
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_header {
    height: 140px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

.l_header_inner {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  margin-left: 8px;
  width: calc(100% - 8px - 120px);
  height: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  justify-content: left;
}

@media screen and (min-width: 768px) {
  .l_header_inner {
    width: calc(100% - 20px - 200px);
    margin-left: 20px;
    height: 96px;
    padding: 12px 28px;
    border-radius: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1080px) {
  .l_header_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}

@media screen and (min-width: 1600px) {
  .l_header_inner {
    padding: 12px 40px;
  }
}

.l_header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_header-logo-img_wrapper {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_header-logo-img_wrapper {
    width: 38px;
    height: 38px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-logo-img_wrapper {
    width: 60px;
    height: 60px;
  }
}

.l_header-logo-img {
  width: 100%;
  height: 100%;
}

.l_header-logo_link {
  font-size: 14px;
  font-weight: bold;
  margin-left: 8px;
  white-space: nowrap;
  color: #10663f;
}

@media screen and (min-width: 1200px) {
  .l_header-logo_link {
    font-size: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .l_header-logo_link {
    font-size: 28px;
    margin-left: 16px;
  }
}

.l_header-logo_font {
  font-family: "Playwrite HR", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  .l_header-logo_font {
    font-size: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .l_header-logo_font {
    font-size: 28px;
  }
}

.l_header-nav {
  display: none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  position: fixed;
  background: var(--accent-color);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .l_header-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    width: 100%;
    height: 68px;
    background: transparent;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    height: 100px;
  }
}

.l_header-nav.is-active {
  display: flex;
  align-items: flex-start;
  padding: 48px 64px;
  justify-content: flex-start;
}

.l_header-nav_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .l_header-nav_list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row;
    gap: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    gap: 24px;
    margin-top: 6px;
  }
}

@media screen and (min-width: 1300px) {
  .l_header-nav_list {
    gap: 32px;
    margin-top: 8px;
  }
}

.l_header-nav_item {
  color: var(--white-color);
  font-size: 16px;
}

.l_header-nav_item:hover {
  color: #b19c7a;
}

@media screen and (min-width: 768px) {
  .l_header-nav_item {
    color: var(--black-color);
    font-size: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .l_header-nav_item {
    color: var(--black-color);
    font-size: 16px;
  }
}

@media screen and (min-width: 1500px) {
  .l_header-nav_item {
    font-size: 20px;
  }
}

.l_header-nav_item a::after {
  content: attr(data-subtext);
  display: block;
  font-size: 10px;
  color: var(--primary-color);
  text-align: left;
}

@media screen and (min-width: 768px) {
  .l_header-nav_item a::after {
    font-size: 8px;
    color: var(--accent-color);
    margin-top: 0;
    text-align: center;
  }
}

@media screen and (min-width: 1200px) {
  .l_header-nav_item a::after {
    font-size: 12px;
  }
}

@media screen and (min-width: 1500px) {
  .l_header-nav_item a::after {
    font-size: 14px;
  }
}

.l_header-nav_link {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .l_header-nav_link {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.l_header-nav_list__mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 28px;
  gap: 16px;
  font-size: 16px;
  color: var(--white-color);
  margin-top: -24px;
}

@media screen and (min-width: 768px) {
  .l_header-nav_list__mobile {
    display: none;
  }
}

.l_header-contact_wrapper__small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .l_header-contact_wrapper__small {
    display: none;
  }
}

.l_header-contact_link__small {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: var(--white-color);
}

.l_header-contact_link__small::after {
  content: attr(data-subtext);
  font-size: 8px;
  color: var(--white-color);
  text-align: center;
}

.l_header-contact_wrapper__large {
  display: none;
}

.l_header-contact_wrapper__large.is-active {
  display: block;
  position: relative;
  left: 0;
}

.l_header-contact_txt__large {
  font-size: 16px;
  color: var(--white-color);
  text-align: center;
  white-space: nowrap;
}

.l_header-contact_link-desc__large {
  font-size: 10px;
  color: var(--white-color);
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .l_header-contact_wrapper__large {
    font-size: 8px;
    position: relative;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    width: 200px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-contact_wrapper__large {
    width: 280px;
  }
}

.l_header-contact_link__large {
  position: absolute;
  top: 582px;
  left: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .l_header-contact_link__large {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 8;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-contact_link__large {
    top: -20px;
    left: -30px;
  }
}

@media screen and (min-width: 768px) {
  .l_header-contact_txt__large {
    font-size: 12px;
    color: var(--white-color);
    white-space: nowrap;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-contact_txt__large {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .l_header-contact_link-desc__large {
    font-size: 8px;
    color: var(--white-color);
    white-space: nowrap;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-contact_link-desc__large {
    font-size: 12px;
  }
}

.l_header-contact_circle__large {
  position: absolute;
  top: 475px;
  left: -212px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--primary-color);
  transition: transform 0.5s ease-in-out;
}

.l_header-contact_circle__large:hover {
  transform: scale(1.2);
}

@media screen and (min-width: 768px) {
  .l_header-contact_circle__large {
    width: 220px;
    height: 220px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: -172px;
    left: 30px;
    z-index: 5;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-contact_circle__large {
    width: 312px;
    height: 312px;
    top: -261px;
    left: 19px;
  }
}

/*---------- footer ----------*/
.l_footer {
  margin-top: 76px;
  position: relative;
  width: 100%;
  height: 76px;
  background: var(--accent-color);
}

@media screen and (min-width: 768px) {
  .l_footer {
    margin-top: 100px;
    height: 140px;
  }
}

@media screen and (min-width: 1200px) {
  .l_footer {
    margin-top: 160px;
    height: 188px;
  }
}

.l_footer_logo {
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .l_footer_logo {
    padding-top: 48px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l_footer_logo {
    padding-top: 80px;
    font-size: 24px;
  }
}

.l_footer-logo_font {
  font-family: "Playwrite HR", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .l_footer-logo_font {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l_footer-logo_font {
    font-size: 24px;
  }
}

.l_footer-copyright {
  text-align: right;
  font-size: 8px;
  color: var(--white-color);
  padding-right: 8px;
  padding-top: 12px;
}

@media screen and (min-width: 768px) {
  .l_footer-copyright {
    font-size: 18px;
    padding-right: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .l_footer-copyright {
    font-size: 20px;
    padding-right: 40px;
  }
}

.l_footer-logo_img-wrapper {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .l_footer-logo_img-wrapper {
    top: -15%;
    width: 72px;
  }
}
@media screen and (min-width: 1200px) {
  .l_footer-logo_img-wrapper {
    top: -12%;
    width: 100px;
  }
}

.l_footer-logo_img {
  width: 100%;
  height: 100%;
}

/*---------- module ----------*/

/* ▼ ハンバーガーメニュー全体 */
.m_hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  height: 16px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  margin-top: -20px;
  margin-left: 32px;
}

@media screen and (min-width: 768px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  background: var(--white-color);
  position: absolute;
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  bottom: 0;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.m_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.m_hamburger-text {
  font-size: 8px;
  color: var(--white-color);
  margin-top: 20px;
}

.m_hamburger-circle {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: -70px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .m_hamburger-circle {
    display: none;
  }
}

.m_heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .m_heading {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1080px) {
  .m_heading {
    margin-bottom: 80px;
  }
}

.m_heading-img-wrapper {
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 1080px) {
  .m_heading-img-wrapper {
    width: 40px;
    height: 40px;
  }
}

.m_heading-img {
  width: 100%;
  height: 100%;
}

.m_heading-ttl {
  font-size: 20px;
  margin-top: 8px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .m_heading-ttl {
    font-size: 32px;
    margin-top: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .m_heading-ttl {
    font-size: 40px;
    margin-top: 16px;
  }
}

.m_heading-ttl::after {
  display: block;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .m_heading-ttl::after {
    top: 120%;
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .m_heading-ttl::after {
    top: 120%;
    font-size: 20px;
  }
}

.m_heading-ttl_workshop::after {
  content: "Workshop";
}

.m_heading-ttl_gallery::after {
  content: "Gallery";
}

.m_heading-ttl_information::after {
  content: "Information";
}

.m_heading-ttl_introduction::after {
  content: "Introduction";
}

.m_heading-ttl_question::after {
  content: "Q&A";
}

/*---------- top ----------*/

/*---------- top kv ----------*/

.top_kv_body {
  padding-top: 56px;
  padding-bottom: 28px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .top_kv_body {
    padding-top: 140px;
    padding-bottom: 40px;
  }
}

.top_kv_list-wrapper {
  position: relative;
}

.top_kv_dots {
  position: absolute;
  left: 50% !important;
  bottom: -26px !important;
  transform: translateX(-50%);
  width: 160px !important;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .top_kv_dots {
    bottom: -40px !important;
    width: 180px !important;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_dots {
    bottom: -38px !important;
    width: 200px !important;
  }
}

@media screen and (min-width: 1600px) {
  .top_kv_dots {
    position: absolute;
    left: 50% !important;
    bottom: -40px !important;
    width: 240px !important;
  }
}

.top_kv_dots .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

@media screen and (min-width: 1200px) {
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}

/*---------- top about ----------*/

.top_about_body_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_about_body_desc {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .top_about_body_desc {
    font-size: 24px;
  }
}

/*---------- top workshop ----------*/

@media screen and (min-width: 620px) {
  .top_workshop_about-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

@media screen and (min-width: 620px) {
  .top_workshop_about-inner:nth-child(1) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 620px) {
  .top_workshop_about-inner:nth-child(2) {
    flex-direction: row;
  }
}

.top_workshop_about-img-wrapper {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3074 / 1998;
  overflow: hidden;
}

.top_workshop_about-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

@media screen and (min-width: 620px) {
  .top_workshop_about-img-wrapper {
    width: 50%;
    height: auto;
    border-radius: 40px;
  }
}

.top_workshop_about_heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media screen and (min-width: 620px) {
  .top_workshop_about_heading {
    width: 50%;
    height: auto;
  }
}

.top_workshop_about_heading-ttl {
  font-size: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 620px) {
  .top_workshop_about_heading-ttl {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .top_workshop_about_heading-ttl {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .top_workshop_about_heading-ttl {
    font-size: 28px;
  }
}

.top_workshop_about_heading-txt {
  margin-top: 8px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_workshop_about_heading-txt {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .top_workshop_about_heading-txt {
    margin-top: 20px;
    font-size: 20px;
  }
}

.top_workshop_about-inner:not(:first-child) {
  margin-top: 24px;
}

.top_content {
  padding-top: 78px;
}

@media screen and (min-width: 768px) {
  .top_content {
    padding-top: 148px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content {
    padding-top: 188px;
  }
}

.top_content-inner__workshop {
  background: var(--white-color);
  border-radius: 20px;
  position: relative;
  padding: 20px 16px 114px;
}

@media screen and (min-width: 768px) {
  .top_content-inner__workshop {
    padding: 24px 40px 80px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-inner__workshop {
    padding: 48px 64px 88px;
  }
}

.top_content-inner__workshop:not(:first-child) {
  margin-top: 158px;
}

@media screen and (min-width: 1080px) {
  .top_content-inner__workshop:not(:first-child) {
    margin-top: 338px;
  }
}

.top_content-inner__workshop-togei {
  padding: 20px 16px 24px;
}

@media screen and (min-width: 768px) {
  .top_content-inner__workshop-togei {
    padding: 44px 60px 56px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-inner__workshop-togei {
    padding: 96px 80px 60px;
  }
}

.top_content_ttl {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0%, -50%);
  font-size: 32px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .top_content_ttl {
    font-size: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content_ttl {
    font-size: 60px;
  }
}

@media screen and (min-width: 768px) {
  .top_content_ttl:last-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.top_content-img-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0%, 50%);
  width: 118px;
  height: 118px;
}

@media screen and (min-width: 768px) {
  .top_content-img-wrapper {
    width: 200px;
    height: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-img-wrapper {
    width: 260px;
    height: 260px;
  }
}

.top_content-about {
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .top_content-about {
    margin-top: 60px;
  }
}

.top_content-about-ttl {
  font-size: 16px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .top_content-about-ttl {
    font-size: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-about-ttl {
    font-size: 28px;
  }
}

.top_content-about-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .top_content-about-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 8px;
    margin-left: 28px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-about-inner {
    margin-left: 40px;
    margin-top: 16px;
  }
}

.top_content-about-desc {
  font-size: 14px;
  margin-top: 16px;
  margin-left: 8px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .top_content-about-desc {
    font-size: 18px;
    margin-left: 28px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-about-desc {
    margin-left: 40px;
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .top_content-about-inner > .top_content-about-desc {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (min-width: 500px) {
  .top_information_body .top_content-about-desc {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .top_content-about-desc-detail {
    font-size: 16px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .top_content-about-desc-detail {
    font-size: 20px;
  }
}

.top_content-about-desc-inner {
  margin-left: 16px;
}

.top_content-about-desc--schedule {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.top_content-about-desc--schedule .arrow {
  display: block;
  margin: 4px 12px;
}

.top_content-about-desc--schedule .arrow::before {
  content: "↓";
  display: inline-block;
}

@media screen and (min-width: 1400px) {
  .top_content-about-desc--schedule {
    flex-direction: row;
  }

  .top_content-about-desc--schedule .arrow {
    display: inline-block;
    margin: 0 12px;
  }

  /* 矢印を→に変更 */
  .top_content-about-desc--schedule .arrow::before {
    content: "→";
  }
}

.top_content-about-detail {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .top_content-about-detail {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-about-detail {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .top_content-about-detail-detail {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .top_content-about-detail-detail {
    font-size: 20px;
  }
}

.top_content-about-desc-inner__option {
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .top_content-about-desc-inner__option {
    margin-left: 64px;
  }
}

.top_content_ttl-desc__lg {
  display: none;
}

@media screen and (min-width: 768px) {
  .top_content_ttl-desc__lg {
    display: inline-block;
    font-size: 18px;
    margin-left: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content_ttl-desc__lg {
    font-size: 26px;
  }
}

.top_content_ttl-desc__sm {
  margin-left: 12px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .top_content_ttl-desc__sm {
    display: none;
  }
}

.top_content-img-inner__togei {
  margin-top: 16px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
}

@media screen and (min-width: 1080px) {
  .top_content-img-inner__togei {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.top_content-img-one__togei {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_content-img-wrapper__togei {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.top_content-img__togei {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.top_content-img-desc__togei {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_content-img-desc__togei {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-img-desc__togei {
    font-size: 24px;
    margin-top: 12px;
  }
}

.top_content-button {
  margin-top: 32px;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .top_content-button {
    margin-top: 48px;
    height: 60px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-button {
    margin-top: 72px;
    height: 100px;
    font-size: 28px;
  }
}

.top_content-button-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------- gallery ----------*/

.top_gallery_body-img-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media screen and (min-width: 1080px) {
  .top_gallery_body-img-inner {
    gap: 20px;
  }
}

.top_gallery_body-img-wrapper {
  width: 100%; /* グリッドで幅を管理するため100% */
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .top_gallery_body-img-wrapper {
    /* aspect-ratio: 16 / 9; */
    border-radius: 40px;
  }
}

.top_gallery_body-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* 画像の中央を基準に配置 */
  border-radius: inherit;
}

/*---------- information ----------*/
@media screen and (min-width: 500px) {
  .top_content-about__information {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .top_content-desc__information {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}

.top_content-about-img-inner {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media screen and (min-width: 1080px) {
  .top_content-about-img-inner {
    margin-top: 36px;
  }
}

.top_content-about-img-wrapper {
  max-width: 416px;
}

.top_content-about-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.top_content-map {
  margin-bottom: 20px;
  width: 100%;
  height: 164px;
  border-radius: 20px;
  margin-top: -4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .top_content-map {
    margin-bottom: 40px;
    height: 320px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .top_content-map {
    margin-bottom: 80px;
    height: 480px;
  }
}

@media screen and (min-width: 1600px) {
  .top_content-map {
    margin-bottom: 80px;
    height: 640px;
    border-radius: 40px;
  }
}

.top_content-map iframe {
  width: 100%;
  height: 100%;
}

/*---------- introduction ----------*/

.top_content-inner__introduction {
  background: var(--white-color);
  border-radius: 20px;
  padding: 16px 16px;
}

@media screen and (min-width: 768px) {
  .top_content-inner__introduction {
    border-radius: 40px;
    padding: 40px 40px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-inner__introduction {
    border-radius: 40px;
    padding: 80px 80px;
  }
}

.top_content-ttl__introduction {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_content-ttl__introduction {
    font-size: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .top_content-ttl__introduction {
    font-size: 32px;
  }
}

.top_content-img-inner__introduction {
  margin: 8px 12px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .top_content-img-inner__introduction {
    margin-top: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-img-inner__introduction {
    margin-top: 24px;
    gap: 20px;
  }
}

.top_content-img-wrapper__introduction {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .top_content-img-wrapper__introduction {
    /* height: 240px; */
    border-radius: 40px;
  }
}

.top_content-img__introduction {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.top_content-insta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .top_content-insta {
    margin-top: 24px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .top_content-insta {
    margin-top: 44px;
    font-size: 24px;
  }
}

.top_content-insta-wrapper {
  width: 30px;
  height: 30px;
}

/* トップへ戻るボタンのスタイル */
#backToTop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* ハリネズミ画像のスタイル */
#backToTop img {
  width: 40px; /* 画像の幅 */
  height: auto; /* 画像の高さ */
  display: block; /* ブロック要素として表示 */
  margin: 0 auto; /* 中央揃え */
  margin-bottom: -8px;
}

/* 丸ボタンのスタイル */
.circle-button {
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

@media (min-width: 1200px) {
  #backToTop img {
    width: 60px;
  }

  .circle-button {
    width: 68px;
    height: 68px;
    font-size: 12px;
  }
}

/*---------- question ----------*/

.question_contents {
  padding-top: 60px;
}

@media screen and (min-width: 768px) {
  .question_contents {
    padding-top: 140px;
  }
}

@media screen and (min-width: 1080px) {
  .question_contents {
    padding-top: 180px;
  }
}

.question_unit:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .question_unit:not(:first-child) {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .question_unit:not(:first-child) {
    margin-top: 120px;
  }
}

.question_q_txt {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: left;
}

@media screen and (min-width: 768px) {
  .question_q_txt {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .question_q_txt {
    font-size: 28px;
  }
}

.question_q_q,
.question_a_a {
  white-space: nowrap;
}

.question_a {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .question_a {
    margin-top: 12px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .question_a {
    margin-top: 16px;
    font-size: 24px;
  }
}

.question_a_txt {
  display: flex;
  align-items: flex-start;
  justify-content: left;
}

.question_a_iro-img-unit {
  width: 90%;
  margin: 16px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

@media screen and (min-width: 560px) {
  .question_a_iro-img-unit {
    margin: 32px auto 0;
    gap: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .question_a_iro-img-unit {
    margin: 64px auto 0;
    gap: 40px;
  }
}

.question_a_iro-img-wrapper {
  width: calc((100% - 8px * 2) / 3);
}

@media screen and (min-width: 560px) {
  .question_a_iro-img-wrapper {
    width: calc((100% - 24px * 3) / 4);
  }
}

@media screen and (min-width: 1080px) {
  .question_a_iro-img-wrapper {
    width: calc((100% - 40px * 3) / 4);
  }
}

.question_a_bfaf-img-unit {
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  gap: 8px;
}
@media screen and (min-width: 560px) {
  .question_a_bfaf-img-unit {
    margin: 32px auto 0;
    gap: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .question_a_bfaf-img-unit {
    margin: 64px auto 0;
    gap: 40px;
  }
}

.question_a_bfaf-img {
  border-radius: 20px;
}
.question_a_bfaf-txt {
  text-align: center;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .question_a_bfaf-txt {
    font-size: 24px;
    margin-top: 16px;
  }
}

.question_a_one {
  margin: 16px auto 0;
  width: 90%;
}

@media screen and (min-width: 560px) {
  .question_a_one {
    margin: 32px auto 0;
  }
}

@media screen and (min-width: 1080px) {
  .question_a_one {
    margin: 64px auto 0;
  }
}

.question_a-img-wrapper {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
}

.question_a-img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}
