@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@keyframes work_slider_loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-224% - 32vw));
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(130px, 18.5vh, 190px);
  z-index: 1000;
  background: #FFD900;
  border-top: solid 5px var(--aka, #E10629);
  transition: 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  header {
    height: 72px !important;
    pointer-events: auto;
  }
}
header body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
header .header_container {
  width: 100%;
  max-width: 1440px;
  margin: clamp(9px, 1.28vh, 19px) auto;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(10px, 1.3vw, 22px);
  gap: clamp(15px, 1.95vw, 42px);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  header .header_container {
    padding: 9px 10px 14px 10px !important;
    margin: 0 auto;
  }
}
header .header_container .header_logo {
  width: clamp(140px, 23.6vw, 340px);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  header .header_container .header_logo {
    margin: 0;
    padding-top: 7px;
  }
}
header .header_container .header_logo img {
  width: 100%;
  object-fit: cover;
}
header .header_container .header_menu {
  display: flex;
  gap: clamp(8px, 1.73vw, 25px);
}
@media screen and (max-width: 768px) {
  header .header_container .header_menu {
    display: none;
  }
}
header .header_container .header_menu .menu_contents {
  width: clamp(105px, 13.6vw, 183px);
  height: clamp(107px, 15.2vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: var(--kiiro, #FFF100);
  box-shadow: 0 6px 0 0 #A9A334;
  cursor: pointer;
  transition: 0.3s;
}
header .header_container .header_menu .menu_contents svg {
  width: clamp(40px, 5.2vw, 62px);
  height: clamp(40px, 5.2vw, 62px);
}
header .header_container .header_menu .menu_contents span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(14px, 1.82vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
header .header_container .header_menu .menu_contents .red {
  color: #E10629;
}
header .header_container .header_menu .menu_contents .lightblue {
  color: #499CD1;
}
header .header_container .header_menu .menu_contents .pink {
  color: #F04BB3;
}
header .header_container .header_menu .menu_contents .orange {
  color: #EE552F;
}
header .header_container .header_menu .menu_contents .green {
  color: #00C033;
}
header .header_container .header_menu .menu_contents:hover {
  box-shadow: none;
  transform: translateY(6px);
}
header .header_container .hamburger_icon {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header_container .hamburger_icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: var(--kiiro, #FFF100);
    box-shadow: 0 3px 0 0 #A9A334;
    cursor: pointer;
  }
  header .header_container .hamburger_icon .hamburger_line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21.5px;
    height: 1px;
    background: #5A301D;
    transition: 0.3s;
  }
}
header .active {
  background-color: #FFD900;
}
header .page_top_link {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  position: fixed;
  bottom: 10px;
  left: -17px;
}
@media screen and (max-width: 768px) {
  header .page_top_link {
    left: -7px;
  }
}
header .page_top_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .page_top_link a .shadow {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #010000;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header .page_top_link a .shadow {
    width: 40px;
    height: 40px;
  }
}
header .page_top_link a .shadow .circle {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #5A301D;
  position: absolute;
  top: -4px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  header .page_top_link a .shadow .circle {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  header .page_top_link a .shadow .circle svg {
    width: 17px;
  }
}
header .page_top_link a .shadow .circle:hover {
  transform: translateY(4px);
  box-shadow: none;
  transition: 0.3s;
}
header .page_top_link a span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
}
@media screen and (max-width: 768px) {
  header .page_top_link a span {
    font-size: 14px;
  }
}

header.scroll {
  height: clamp(100px, 13vw, 120px);
  transition: 0.3s;
  background: rgba(255, 217, 0, 0.82);
}
header.scroll .header_container {
  margin: 4px auto 9px auto;
  gap: clamp(15px, 1.95vw, 63px);
}
@media screen and (max-width: 768px) {
  header.scroll .header_container {
    margin: 0 auto;
  }
}
header.scroll .header_container .header_logo {
  transition: 0.3s;
}
header.scroll .header_container .header_menu .menu_contents {
  transition: 0.3s;
  height: clamp(80px, 10.4vw, 102px);
  gap: 0;
}

.hamburger_open {
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.hamburger_open .hamburger_open_menu {
  display: none;
}
.hamburger_open .hamburger_links {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger_open {
    width: 100svw;
    height: 100svh;
    background: #FFD900;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 67px 0 0 0;
    position: fixed;
  }
  .hamburger_open .hamburger_open_menu {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
    height: auto;
  }
  .hamburger_open .hamburger_open_menu .menu_contents {
    display: flex;
    gap: 15px;
    height: 62px;
    padding: 12px 31px;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: var(--kiiro, #FFF100);
    box-shadow: 0 6px 0 0 #A9A334;
    cursor: pointer;
  }
  .hamburger_open .hamburger_open_menu .menu_contents svg {
    width: 35px;
    height: 35px;
    aspect-ratio: 1/1;
  }
  .hamburger_open .hamburger_open_menu .menu_contents span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .hamburger_open .hamburger_open_menu .menu_contents .red {
    color: #E10629;
  }
  .hamburger_open .hamburger_open_menu .menu_contents .lightblue {
    color: #499CD1;
  }
  .hamburger_open .hamburger_open_menu .menu_contents .pink {
    color: #F04BB3;
  }
  .hamburger_open .hamburger_open_menu .menu_contents .orange {
    color: #EE552F;
  }
  .hamburger_open .hamburger_open_menu .menu_contents .green {
    color: #00C033;
  }
  .hamburger_open .ellipse {
    display: flex;
    width: 95%;
    height: 22px;
    padding: 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 38px;
  }
  .hamburger_open .ellipse span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
  }
  .hamburger_open .ellipse .orange {
    background: #F90;
  }
  .hamburger_open .ellipse .blue {
    background: #009DFF;
  }
  .hamburger_open .hamburger_links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .hamburger_open .hamburger_links .anchor {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .hamburger_open .hamburger_links .anchor a {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: #5A301D;
    cursor: pointer;
  }
  .hamburger_open .hamburger_links .media_wrapper .media {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hamburger_open .hamburger_links .media_wrapper .media li {
    display: flex;
    gap: 9px;
    cursor: pointer;
  }
  .hamburger_open .hamburger_links .media_wrapper .media li img {
    width: 44px;
    height: 44px;
  }
  .hamburger_open .hamburger_links .media_wrapper .media li a {
    display: flex;
    gap: 9px;
    align-items: center;
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 17px;
    line-height: 120%;
    color: #5A301D;
  }
}

.hamburger_open.active {
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
  z-index: 9999;
  height: 100vh;
  padding-bottom: 88px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.header_space {
  width: 100%;
  height: clamp(120px, 15.6vw, 190px);
}
@media screen and (max-width: 768px) {
  .header_space {
    height: 72px;
  }
}

footer {
  width: 100%;
  padding: 140px 1.5% 0;
  background: transparent;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 106px 1.5% 0;
  }
}
footer .footer_back {
  width: 100%;
  height: calc(100% + 80px);
  position: absolute;
  z-index: -9999;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: hidden;
}
body.is-index footer .footer_back {
  height: calc(90% + 80px);
}
@media screen and (max-width: 768px) {
  body.is-index footer .footer_back {
    height: calc(100% + 280px);
  }
}
@media screen and (max-width: 768px) {
  footer .footer_back {
    height: calc(100% + 280px);
  }
}
footer .footer_back .back {
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer_back .back {
    display: none;
  }
}
footer .footer_back .back-sp {
  height: 100%;
  display: none;
}
@media screen and (max-width: 768px) {
  footer .footer_back .back-sp {
    display: block;
  }
}
footer .page_top_link {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
footer .page_top_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .page_top_link a .shadow {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #010000;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  footer .page_top_link a .shadow {
    width: 40px;
    height: 40px;
  }
}
footer .page_top_link a .shadow .circle {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #5A301D;
  position: absolute;
  top: -4px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .page_top_link a .shadow .circle {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  footer .page_top_link a .shadow .circle svg {
    width: 17px;
  }
}
footer .page_top_link a .shadow .circle:hover {
  transform: translateY(4px);
  box-shadow: none;
  transition: 0.3s;
}
footer .page_top_link a span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
}
@media screen and (max-width: 768px) {
  footer .page_top_link a span {
    font-size: 14px;
  }
}
footer .footer_container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 60px clamp(1.875rem, -8.758rem + 22.15vw, 10.625rem) 50px clamp(1.875rem, -4.201rem + 12.66vw, 6.875rem);
  border-radius: 30px;
  background: #FFF7E1;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -4.826rem + 12.66vw, 6.25rem);
}
@media screen and (max-width: 768px) {
  footer .footer_container {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 27px 0 27px 0;
  }
}
footer .footer_container .text_wrapper {
  width: fit-content;
}
footer .footer_container .text_wrapper .title {
  width: 300px;
  display: flex;
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  footer .footer_container .text_wrapper .title {
    margin: 0;
    align-items: center;
    justify-content: center;
  }
}
footer .footer_container .text_wrapper .title img {
  width: 100%;
}
footer .footer_container .text_wrapper .pc_policy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  footer .footer_container .text_wrapper .pc_policy {
    display: none;
  }
}
footer .footer_container .text_wrapper .pc_policy a {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #5A301D;
}
footer .footer_container .footer_links {
  flex: 1 0;
}
@media screen and (max-width: 768px) {
  footer .footer_container .footer_links {
    width: 90%;
  }
}
footer .footer_container .footer_links ul {
  width: 100%;
}
footer .footer_container .footer_links .anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 0.491rem + 1.58vw, 1.875rem) clamp(1.563rem, 0.195rem + 2.85vw, 2.688rem);
  padding: 0 0 30px;
  border-bottom: 1px #B7B7B7 solid;
}
@media screen and (max-width: 768px) {
  footer .footer_container .footer_links .anchor {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_container .footer_links .anchor #recruitment {
    margin-top: 24px;
  }
}
footer .footer_container .footer_links .anchor a {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #5A301D;
}
footer .footer_container .footer_links .media_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_container .footer_links .media_wrapper .media {
  width: auto;
  padding: 30px 0 0;
  display: flex;
  gap: clamp(0.75rem, -33.375rem + 42vw, 3.375rem);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  footer .footer_container .footer_links .media_wrapper .media {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
footer .footer_container .footer_links .media_wrapper .media li a {
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .footer_container .footer_links .media_wrapper .media li a img {
  width: 44px;
  height: 44px;
}
footer .footer_container .footer_links .media_wrapper .media li a p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 17px;
  line-height: 120%;
  color: #5A301D;
}
footer .footer_container .footer_links .media_wrapper .media .sns {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
footer .footer_container .footer_links .sp_policy {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .footer_container .footer_links .sp_policy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0 0 clamp(1.875rem, -10.353rem + 48.91vw, 13.125rem);
  }
}
footer .footer_container .footer_links .sp_policy a {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #5A301D;
}
footer p {
  display: flex;
  justify-content: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 14px;
  color: #5A301D;
  padding: 19px 0 19px 0;
}

header {
  background: none;
}

.header_space {
  display: none;
}

#top_page {
  width: 100%;
  overflow: hidden;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
#top_page .top_bg_wrapper {
  width: 100%;
  position: relative;
}
#top_page .top_bg_wrapper .bg_flex {
  height: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 100px 0 100px;
}
#top_page .top_bg_wrapper .bg_flex img {
  height: 100%;
}
#top_page #fv {
  width: 100%;
  overflow: hidden;
  margin-bottom: 64px;
  padding-top: clamp(135px, 19.2vh, 190px);
}
@media screen and (max-width: 768px) {
  #top_page #fv {
    padding-top: 72px;
  }
}
#top_page #fv .fv_swiper {
  width: initial;
}
#top_page #fv .fv_swiper .fv_container {
  width: initial;
  height: clamp(400px, 57.1vh, 600px);
  transition-timing-function: linear;
}
@media screen and (max-width: 1280px) {
  #top_page #fv .fv_swiper .fv_container {
    height: 440px;
  }
}
#top_page #fv .fv_swiper .fv_container .swiper-slide {
  width: fit-content;
  display: flex;
  gap: 15px;
}
#top_page #fv .fv_swiper .fv_container .image_container {
  height: 100%;
  width: initial;
}
#top_page #fv .fv_swiper .fv_container .image_container img {
  border-radius: 10px;
}
#top_page #fv .fv_swiper .fv_container .column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#top_page #fv .fv_swiper .fv_container .column img {
  height: 48%;
  object-fit: cover;
}
#top_page #fv .fv_swiper .fv_container .triple {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#top_page #fv .fv_swiper .fv_container .triple .image_container_up {
  height: 38%;
  display: flex;
  gap: 12px;
}
#top_page #fv .fv_swiper .fv_container .triple .image_container_up img {
  width: initial;
  height: 100%;
  object-fit: cover;
}
#top_page #fv .fv_swiper .fv_container .triple img {
  width: 100%;
  height: 59%;
  object-fit: cover;
}
#top_page #fv .fv_swiper .fv_container .solo {
  height: 100%;
  width: fit-content;
}
#top_page #fv .fv_swiper .fv_container .solo img {
  height: 100%;
  object-fit: cover;
}
#top_page #fv .fv_text {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
#top_page #fv .fv_text .fv_text_container {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  #top_page #fv .fv_text .fv_text_container {
    height: clamp(110px, 14.3vw, 170px);
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_text .fv_text_container {
    height: initial;
    flex-wrap: wrap;
  }
}
#top_page #fv .fv_text .fv_text_container img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_text .fv_text_container img {
    order: 2;
    width: 49%;
    max-width: 250px;
  }
}
#top_page #fv .fv_text .fv_text_container h1 {
  color: #E10629;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 60px */
  letter-spacing: 3px;
  text-align: center;
  margin-top: auto;
}
@media screen and (max-width: 1280px) {
  #top_page #fv .fv_text .fv_text_container h1 {
    font-size: clamp(36px, 4.68vw, 45px);
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_text .fv_text_container h1 {
    width: 100%;
    order: 1;
    font-size: clamp(34px, 9.1vw, 44px);
  }
}
#top_page #fv .fv_text .fv_text_container h1 span {
  color: #FFD900;
  -webkit-text-stroke-width: 10px;
  -webkit-text-stroke-color: var(--aka, #E10629);
  font-family: "Dela Gothic One", serif;
  font-weight: 400;
  font-size: 65px;
  font-style: normal;
  line-height: 100%; /* 65px */
}
@media screen and (max-width: 1280px) {
  #top_page #fv .fv_text .fv_text_container h1 span {
    font-size: clamp(34px, 4.3vw, 48px);
    -webkit-text-stroke-width: 2px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_text .fv_text_container h1 span {
    font-size: clamp(29px, 7.4vw, 40px);
  }
}
#top_page #fv .fv_title {
  width: 100%;
  height: 22%;
  min-height: 154px;
  max-height: 200px;
  display: flex;
  justify-content: center;
  margin-top: clamp(5px, 0.714vh, 30px);
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_title {
    max-height: none;
    margin-top: 30px;
  }
}
#top_page #fv .fv_title img {
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_title .pc_img {
    display: none;
  }
}
#top_page #fv .fv_title .sp_img {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #fv .fv_title .sp_img {
    display: initial;
    width: 100%;
  }
}
#top_page #menu {
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
}
#top_page #menu .tips {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips {
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
  }
}
#top_page #menu .tips li {
  flex: 1;
  height: 120px;
  max-width: 360px;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li {
    height: 100px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips li {
    width: 100%;
    height: 85px;
  }
}
#top_page #menu .tips li a {
  width: 100%;
  height: 100%;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  border: 1px solid rgba(144, 136, 0, 0.15);
  background: #FFD900;
  box-shadow: 0 6px 0 0 #857E00;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li a {
    justify-content: center;
    padding: 0 10px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips li a {
    height: 85px;
    justify-content: flex-start;
    padding-left: 65.6px;
  }
}
#top_page #menu .tips li a img {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li a img {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips li a img {
    width: 60px;
    height: 60px;
  }
}
#top_page #menu .tips li a span {
  display: inline-grid;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: min(1.7vw, 26px);
  line-height: 120%;
  color: #5A301D;
}
#top_page #menu .tips li a span:nth-of-type(3) {
  white-space: nowrap;
}
#top_page #menu .tips li a span .inline {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li a span {
    font-size: 14px;
  }
  #top_page #menu .tips li a span svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips li a span {
    font-size: 20px;
  }
}
#top_page #menu .tips li a:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #menu .tips li .recruit {
  padding: 12px 16px;
  gap: 6px;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li .recruit {
    padding: 0 12px;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_page #menu .tips li .recruit {
    padding-left: 65.6px;
  }
}
#top_page #menu .tips li .recruit span {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 1280px) {
  #top_page #menu .tips li .recruit span {
    gap: 2px;
  }
}
#top_page #info {
  width: 100%;
  position: relative;
  padding: 40px 0;
  margin: 60px auto 0;
  background: #FFF8E6;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
  display: flex;
  justify-content: center;
  z-index: 100;
}
#top_page #info .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
#top_page #info .wrapper .sp_title {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .sp_title {
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .pc_title {
    display: none;
  }
}
#top_page #info .wrapper .info_swiper_wrapper {
  max-width: 960px;
  min-width: 300px;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .info_swiper_wrapper {
    width: 100% !important;
  }
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper {
  width: 100%;
  margin: 0 auto;
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper {
  width: 100%;
  height: fit-content;
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide {
  width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide a {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: auto;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide a {
    width: 76.92%;
    max-width: 460px;
  }
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide a img {
    height: initial;
    aspect-ratio: 6/5;
  }
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide a span {
  display: block;
  width: 100%;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
}
#top_page #info .wrapper .info_swiper_wrapper .info_swiper .swiper-wrapper .swiper-slide:hover span {
  color: #8D7265;
}
#top_page #info .wrapper .swiper-button-prev,
#top_page #info .wrapper .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #FFD900;
  border-radius: 50%;
  box-shadow: 0 3px 0 0 #857E00;
}
#top_page #info .wrapper .swiper-button-prev svg,
#top_page #info .wrapper .swiper-button-next svg {
  width: 20px;
}
#top_page #info .wrapper .swiper-button-prev::after,
#top_page #info .wrapper .swiper-button-next::after {
  display: none;
}
#top_page #info .wrapper .navigation {
  position: absolute;
  width: 325px;
  height: 34px;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
#top_page #info .wrapper .navigation .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 20px);
}
#top_page #info .wrapper .navigation .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 20px);
}
#top_page #info .wrapper .navigation .swiper-pagination {
  position: static;
}
#top_page #info .wrapper .navigation .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #D6CDB5;
  opacity: 1;
  margin: 9px;
}
#top_page #info .wrapper .navigation .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4A2411;
  transform: scale(1.2);
}
#top_page #info .wrapper .nothing {
  display: block;
  width: 300px;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
  margin-bottom: auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #top_page #info .wrapper .nothing {
    display: block;
    width: 89.74%;
    margin: auto;
  }
}
#top_page #news_title_section {
  padding-top: 49px;
  position: relative;
  z-index: 99;
}
#top_page #news {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #top_page #news {
    padding-bottom: 0;
  }
}
#top_page #news, #top_page #news_title_section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
#top_page #news .news_wrapper, #top_page #news_title_section .news_wrapper {
  width: 83%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper, #top_page #news_title_section .news_wrapper {
    width: 95.62%;
  }
}
#top_page #news .news_wrapper .news_title, #top_page #news_title_section .news_wrapper .news_title {
  width: fit-content;
  margin: 0 auto 44px;
  position: relative;
}
#top_page #news .news_wrapper .news_title::after, #top_page #news_title_section .news_wrapper .news_title::after {
  box-sizing: border-box;
  content: "";
  z-index: 1;
  position: absolute;
  display: block;
  width: 524px;
  height: 206px;
  margin: 0 auto;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  top: 10px;
  right: -10px;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_title::after, #top_page #news_title_section .news_wrapper .news_title::after {
    width: 252px;
    height: 100px;
    border-radius: 10px;
    border: 2px solid #E10629;
    top: 5px;
    right: -5px;
  }
}
#top_page #news .news_wrapper .news_title .title_block, #top_page #news_title_section .news_wrapper .news_title .title_block {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  width: 524px;
  height: 206px;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_title .title_block, #top_page #news_title_section .news_wrapper .news_title .title_block {
    width: 252px;
    height: 100px;
    border-radius: 10px;
    border: 2px solid #E10629;
    gap: 8px;
    padding: 10px 0 16px;
  }
}
#top_page #news .news_wrapper .news_title .title_block .title, #top_page #news_title_section .news_wrapper .news_title .title_block .title {
  color: #E10629;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 60px */
  letter-spacing: 3px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_title .title_block .title, #top_page #news_title_section .news_wrapper .news_title .title_block .title {
    text-shadow: 1.926px 1.926px 0 rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-style: normal;
    letter-spacing: 1.2px;
  }
}
#top_page #news .news_wrapper .news_title .title_block .lineCircle, #top_page #news_title_section .news_wrapper .news_title .title_block .lineCircle {
  position: absolute;
  top: -53px;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_title .title_block .lineCircle circle, #top_page #news_title_section .news_wrapper .news_title .title_block .lineCircle circle {
    stroke-width: 2;
  }
  #top_page #news .news_wrapper .news_title .title_block .lineCircle path, #top_page #news_title_section .news_wrapper .news_title .title_block .lineCircle path {
    stroke-width: 2;
  }
}
#top_page #news .news_wrapper .news_title .title_block .left, #top_page #news_title_section .news_wrapper .news_title .title_block .left {
  left: 20px;
}
#top_page #news .news_wrapper .news_title .title_block .right, #top_page #news_title_section .news_wrapper .news_title .title_block .right {
  right: 20px;
}
#top_page #news .news_wrapper .news_contents_container, #top_page #news_title_section .news_wrapper .news_contents_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 46px;
}
#top_page #news .news_wrapper .news_contents_container .news_contents, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents {
  width: 100%;
  padding: 18px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: #FFF7E1;
  box-shadow: 0 0 13px 7px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1280px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents {
    padding: 16px 36px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents {
    padding: 14px 10px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info {
  width: calc(100% - 45px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents .news_info, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info {
    flex-direction: column;
    align-items: start;
    gap: 6px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up {
  display: flex;
  align-items: center;
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .date, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .date {
  width: 160px;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .date, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .date {
    width: 140px;
    font-size: 16px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .category, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .category {
  width: 140px;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E10629;
  background: #FFF;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .category, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .category {
    height: 30px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .category span, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .category span {
  color: #E10629;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents .news_info .info_up .category span, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .info_up .category span {
    font-size: 16px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_info .title, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_info .title {
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  transition: 0.3s;
}
#top_page #news .news_wrapper .news_contents_container .news_contents .news_button, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_button {
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 22.5px;
  border: 3px solid #E10629;
  background: #E10629;
  box-shadow: 0 3px 0 0 #710012;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_contents_container .news_contents .news_button, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents .news_button {
    width: 40px;
    height: 40px;
  }
}
#top_page #news .news_wrapper .news_contents_container .news_contents:hover .news_button, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents:hover .news_button {
  transform: translateY(3px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #news .news_wrapper .news_contents_container .news_contents:hover .title, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents:hover .title {
  color: #8D7265;
}
#top_page #news .news_wrapper .news_contents_container .news_contents:hover .news_info .info_up .date, #top_page #news_title_section .news_wrapper .news_contents_container .news_contents:hover .news_info .info_up .date {
  color: #8D7265;
}
#top_page #news .news_wrapper .news_link, #top_page #news_title_section .news_wrapper .news_link {
  display: flex;
  width: 329px;
  height: 67px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #E10629;
  box-shadow: 0 8px 0 0 #A92200;
  transition: 0.3s;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_link, #top_page #news_title_section .news_wrapper .news_link {
    display: none;
  }
}
#top_page #news .news_wrapper .news_link span, #top_page #news_title_section .news_wrapper .news_link span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#top_page #news .news_wrapper .news_link:hover, #top_page #news_title_section .news_wrapper .news_link:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #news .news_wrapper .news_link_sp, #top_page #news_title_section .news_wrapper .news_link_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #news .news_wrapper .news_link_sp, #top_page #news_title_section .news_wrapper .news_link_sp {
    display: flex;
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: #E10629;
    box-shadow: 0 8px 0 0 #A92200;
    transition: 0.3s;
    margin: 0 auto 52px;
  }
  #top_page #news .news_wrapper .news_link_sp span, #top_page #news_title_section .news_wrapper .news_link_sp span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #FFF;
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
    font-style: normal;
    line-height: 120%; /* 31.2px */
  }
}
#top_page #news .news_wrapper .news_link_sp:hover, #top_page #news_title_section .news_wrapper .news_link_sp:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#top_page .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top_page .border_line svg {
    width: 14px;
    height: 14px;
  }
}
#top_page #top_flyer {
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}
#top_page #top_flyer .flyer_back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.21);
}
#top_page #top_flyer .flyer_back img {
  height: 100%;
}
#top_page #top_flyer .flyer_wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
#top_page #top_flyer .flyer_wrapper .flyer_title {
  height: fit-content;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 45px 0 90px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 45px 0 20px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container {
  position: relative;
  height: 184px;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container {
    width: 250px;
    height: 120px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: calc(50% + 10px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 16px;
  border: 4px solid #F04BB3;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container::after {
    border: 2px solid #F04BB3;
    height: 120px;
    top: 5px;
    left: calc(50% + 5px);
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper {
  position: relative;
  width: max-content;
  height: 184px;
  border-radius: 16px;
  border: 4px solid #F04BB3;
  background: #FFFADB;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 100px 15px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper {
    padding: 10px 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper {
    border: 2px solid #F04BB3;
    width: 250px;
    height: 120px;
    padding: 10px 0 14px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper .decorate {
  position: absolute;
  top: -55px;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper .decorate circle {
    stroke-width: 2;
  }
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper .decorate path {
    stroke-width: 2;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper .left {
  left: 20px;
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper .right {
  right: 20px;
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper h3 {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: #F04BB3;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 45px */
  letter-spacing: 2.25px;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_container .title_wrapper h3 {
    text-align: center;
    text-shadow: 1.926px 1.926px 0 rgba(0, 0, 0, 0.1);
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_caption {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_caption {
    width: initial;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_caption p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  flex: 1;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_caption p {
    display: block;
    width: 89.74%;
    margin: auto;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_caption .flyer_button {
  display: flex;
  width: 329px;
  height: 67px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #F04BB3;
  box-shadow: 0 8px 0 0 #9F0065;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_title .title_caption .flyer_button {
    display: none;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_caption .flyer_button span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#top_page #top_flyer .flyer_wrapper .flyer_title .title_caption .flyer_button:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_flyer .flyer_wrapper .flyer_intro {
  width: 80%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro {
    width: 94.87%;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-bottom: 23px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info {
    margin: 0 auto 23px;
    gap: 10px;
    flex-direction: column;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info .date {
  display: flex;
  width: 274px;
  height: 55px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #FFF7E1;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info .date {
    order: 2;
    width: initial;
    height: initial;
    padding: 5px 15px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info .date svg {
    width: 28px;
    height: 28px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info .date span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #F04BB3;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info .date span {
    font-size: 22px;
    font-weight: 800;
    line-height: 100%; /* 20px */
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #5A301D;
  font-size: 35px;
  font-style: normal;
  line-height: 150%; /* 52.5px */
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_info p {
    order: 1;
    font-size: 22px;
    font-weight: 800;
    line-height: 120%; /* 26.4px */
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_img_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3%;
  border-radius: 20px;
  background: #FFF7E1;
  padding: 24px 33px;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_img_wrapper {
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_img_wrapper img {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_intro .flyer_img_wrapper img {
    width: 100%;
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_button_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #top_flyer .flyer_wrapper .flyer_button_sp {
    display: flex;
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: #F04BB3;
    box-shadow: 0 8px 0 0 #9F0065;
    transition: 0.3s;
    margin: 0 auto 60px;
  }
  #top_page #top_flyer .flyer_wrapper .flyer_button_sp span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #FFF;
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
    font-style: normal;
    line-height: 120%; /* 31.2px */
  }
}
#top_page #top_flyer .flyer_wrapper .flyer_button_sp:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_goods {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#top_page #top_goods .goods_wrapper {
  width: min(93%, 1342px);
  max-width: 1440px;
  overflow: hidden;
  background: #FFF7E1;
  border-radius: 30px;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#top_page #top_goods .goods_wrapper .goods_title {
  height: fit-content;
  display: flex;
  justify-content: center;
  gap: 90px;
  margin: 45px 10px 36px;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .goods_wrapper .goods_title {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 25px clamp(10px, -3.804rem + 15.22vw, 56px) 0;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_container {
  position: relative;
  height: 184px;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container {
    height: 120px;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_container::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: calc(50% + 10px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 16px;
  border: 4px solid #499CD1;
  background: #FFF8A1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container::after {
    border: 2px solid #499CD1;
    top: 5px;
    left: calc(50% + 5px);
    height: 120px;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper {
  position: relative;
  width: max-content;
  height: 184px;
  border-radius: 16px;
  border: 4px solid #499CD1;
  background: #FFF8A1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 100px 15px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper {
    padding: 10px 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper {
    border: 2px solid #499CD1;
    width: 250px;
    height: 120px;
    padding: 10px 0 15px;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper .decorate {
  position: absolute;
  top: -79px;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper .decorate circle {
    stroke-width: 2;
  }
  #top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper .decorate path {
    stroke-width: 2;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper .left {
  left: 20px;
}
#top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper .right {
  right: 20px;
}
#top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper h3 {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: #499CD1;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 45px */
  letter-spacing: 2.25px;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_container .title_wrapper h3 {
    text-align: center;
    text-shadow: 1.926px 1.926px 0px rgba(0, 0, 0, 0.1);
    font-size: clamp(1.5rem, 1.092rem + 1.63vw, 1.875rem);
    letter-spacing: 1.2px;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#top_page #top_goods .goods_wrapper .goods_title .title_caption p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  flex: 1;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
  margin-bottom: auto;
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_caption p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_caption p {
    margin-bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_caption p br {
    display: none;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_caption .goods_button {
  display: flex;
  width: 329px;
  height: 67px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #499CD1;
  box-shadow: 0px 8px 0px 0px #005D98;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_title .title_caption .goods_button {
    display: none;
  }
}
#top_page #top_goods .goods_wrapper .goods_title .title_caption .goods_button span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#top_page #top_goods .goods_wrapper .goods_title .title_caption .goods_button:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_goods .goods_wrapper .goods_swiper {
  width: min(93%, 1342px);
  margin-top: 36px;
  margin-bottom: 34px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper {
    margin-top: 29px;
    margin-bottom: 0;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper {
  width: auto;
  height: fit-content;
  display: flex;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide {
  width: 312px;
  height: 373px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide {
    width: 33%;
  }
}
@media screen and (max-width: 1112px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide {
    width: 50%;
    min-width: 260px;
    height: 324px;
  }
}
@media screen and (max-width: 768px) and (max-width: 624px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info_container {
  width: 297px;
  height: 248px;
  border-radius: 10px;
  background: #FFF;
  overflow: hidden;
  padding: 15px;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info_container img {
  width: 100%;
  scale: 1.1;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info_container {
    width: 238px;
    height: 199px;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info {
  width: 290px;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info {
    width: 231px;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .texts p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #5A301D;
  font-size: 22px;
  font-style: normal;
  line-height: 100%; /* 22px */
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .texts p {
    font-size: 18px;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .texts .goods_value {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  white-space: pre-line;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .goods_icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #FFD900;
  box-shadow: 0 3px 0 0 #857E00;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .goods_info .goods_icon {
    width: 41px;
    height: 41px;
  }
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide .hidden_images {
  display: none;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide:hover .goods_info_container img {
  scale: 1;
  transition: 0.3s;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide:hover .texts p {
  color: #8D7265;
}
#top_page #top_goods .goods_wrapper .goods_swiper .swiper-wrapper .swiper-slide:hover .goods_icon {
  box-shadow: none;
  transform: translateY(6px);
  transition: 0.3s;
}
#top_page #top_goods .goods_wrapper .goods_button_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .goods_wrapper .goods_button_sp {
    display: flex;
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: #499CD1;
    box-shadow: 0 8px 0 0 #005D98;
    transition: 0.3s;
    margin-bottom: 41px;
  }
  #top_page #top_goods .goods_wrapper .goods_button_sp span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #FFF;
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
    font-style: normal;
    line-height: 120%; /* 31.2px */
  }
}
#top_page #top_goods .goods_wrapper .goods_button_sp:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_goods .layer {
  width: 100vw;
  height: 100svh;
  background: rgba(255, 217, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top_page #top_goods .layer.open {
  opacity: 1;
  visibility: visible;
}
#top_page #top_goods .modal {
  width: 90%;
  max-width: 1200px;
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .modal {
    height: calc(100svh - 80px);
    padding: initial;
  }
}
#top_page #top_goods .modal .close_button {
  position: absolute;
  z-index: 1;
  top: 144px;
  right: 29px;
  display: flex;
  width: 72px;
  height: 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.902px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2.16px solid #499CD1;
  background: #499CD1;
  box-shadow: 0 2.16px 0 0 #005D98;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .modal .close_button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .modal .close_button {
    top: 15px;
  }
}
#top_page #top_goods .modal .close_button:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#top_page #top_goods .modal .modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  padding: 100px 56px;
  background: #FFF7E1;
  position: relative;
  gap: 30px;
  max-height: calc(100svh - 120px);
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .modal .modal_container {
    padding: 70px 90px;
  }
}
@media screen and (max-width: 1024px) {
  #top_page #top_goods .modal .modal_container {
    flex-direction: column;
    gap: unset;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .modal .modal_container {
    padding: 0 10px;
    overflow-y: scroll;
    height: 100%;
    max-height: initial;
  }
}
#top_page #top_goods .modal .modal_container .image_viewer {
  width: 61.11svh;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #top_page #top_goods .modal .modal_container .image_viewer {
    width: 330px;
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .modal .modal_container .image_viewer {
    padding-top: 70px;
  }
}
#top_page #top_goods .modal .modal_container .image_viewer .current_image {
  width: 100%;
  height: 51.11svh;
  max-height: 460px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  #top_page #top_goods .modal .modal_container .image_viewer .current_image {
    width: 330px;
    height: 280px;
  }
}
#top_page #top_goods .modal .modal_container .image_viewer .current_image .main_image {
  border-radius: 9px;
  width: 100%;
  object-fit: cover;
  opacity: 1;
  transition: 0.3s;
}
#top_page #top_goods .modal .modal_container .image_viewer .current_image .main_image.fade_out {
  opacity: 0;
}
#top_page #top_goods .modal .modal_container .image_viewer .thumbnail_container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#top_page #top_goods .modal .modal_container .image_viewer .thumbnail_container .active {
  border: 2px solid #499CD1;
}
#top_page #top_goods .modal .modal_container .image_viewer .thumbnail_container .thumb_wrapper {
  width: 20%;
}
#top_page #top_goods .modal .modal_container .image_viewer .thumbnail_container .thumb_wrapper .thumb_img {
  width: 100%;
  display: block;
  border-radius: 3px;
}
#top_page #top_goods .modal .modal_container .modal_text {
  width: 500px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_goods .modal .modal_container .modal_text {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_goods .modal .modal_container .modal_text {
    padding-bottom: 70px;
    margin-bottom: 100px;
  }
}
#top_page #top_goods .modal .modal_container .modal_text p {
  display: block;
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 25px;
  text-align: initial;
  white-space: pre-line;
}
#top_page #top_goods .modal .modal_container .modal_text .modal_goods_name {
  font-weight: 800;
}
#top_page #top_goods .modal .modal_container .modal_text .modal_goods_price {
  margin: 0 0 25px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #top_page #top_goods .modal .modal_container .modal_text .modal_goods_price {
    margin: 0 0 15px;
  }
}
#top_page #top_goods .modal .modal_container .modal_text .annotation {
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  #top_page #top_goods .modal .modal_container .modal_text .annotation {
    margin: 15px 0 0;
  }
}
#top_page #top_goods .modal .modal_container .modal_text .border_line {
  padding: 0;
}
#top_page #top_store {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store {
    margin-bottom: 0;
  }
}
#top_page #top_store .store_title {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 45px 0 90px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_store .store_title {
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 45px 0 20px;
  }
}
#top_page #top_store .store_title .title_container {
  position: relative;
  height: 184px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_container {
    height: 120px;
  }
}
#top_page #top_store .store_title .title_container::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: calc(50% + 10px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 16px;
  border: 4px solid #EE552F;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_container::after {
    height: 120px;
    border: 2px solid #EE552F;
    top: 5px;
    left: calc(50% + 5px);
  }
}
#top_page #top_store .store_title .title_container .title_wrapper {
  position: relative;
  width: max-content;
  height: 184px;
  border-radius: 16px;
  border: 4px solid #EE552F;
  background: #FFFADB;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 120px 15px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_store .store_title .title_container .title_wrapper {
    padding: 10px 20px 15px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_container .title_wrapper {
    border: 2px solid #EE552F;
    width: 250px;
    height: 120px;
    padding: 10px 0 14px;
  }
}
#top_page #top_store .store_title .title_container .title_wrapper .decorate {
  position: absolute;
  top: -78px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_container .title_wrapper .decorate circle {
    stroke-width: 2;
  }
  #top_page #top_store .store_title .title_container .title_wrapper .decorate svg path {
    stroke-width: 2;
  }
}
#top_page #top_store .store_title .title_container .title_wrapper .left {
  left: 20px;
}
#top_page #top_store .store_title .title_container .title_wrapper .right {
  right: 20px;
}
#top_page #top_store .store_title .title_container .title_wrapper h3 {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: #EE552F;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 45px */
  letter-spacing: 2.25px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_container .title_wrapper h3 {
    text-align: center;
    text-shadow: 1.926px 1.926px 0 rgba(0, 0, 0, 0.1);
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
#top_page #top_store .store_title .title_caption {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 1280px) {
  #top_page #top_store .store_title .title_caption {
    width: 40%;
    margin: auto 0;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_caption {
    width: 100%;
    margin: 0;
  }
}
#top_page #top_store .store_title .title_caption p {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  flex: 1;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_caption p {
    display: block;
    width: 89.74%;
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_caption p .pc_only {
    display: none;
  }
}
#top_page #top_store .store_title .title_caption .store_button {
  display: flex;
  width: 329px;
  height: 67px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #EE552F;
  box-shadow: 0 8px 0 0 #E10629;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_caption .store_button {
    display: none;
  }
}
#top_page #top_store .store_title .title_caption .store_button span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #FFF;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#top_page #top_store .store_title .title_caption .store_button:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_store .store_title .title_caption .store_button_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_title .title_caption .store_button_sp {
    display: flex;
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: #EE552F;
    box-shadow: 0 8px 0 0 #E10629;
    transition: 0.3s;
    margin: 0 auto 41px;
  }
  #top_page #top_store .store_title .title_caption .store_button_sp span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #FFF;
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
    font-style: normal;
    line-height: 120%; /* 31.2px */
  }
}
#top_page #top_store .store_title .title_caption .store_button_sp:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#top_page #top_store .store_swiper {
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_swiper {
    height: 210px;
  }
}
#top_page #top_store .store_swiper .swiper-wrapper {
  width: 100%;
  height: 380px;
  transition-timing-function: linear;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_swiper .swiper-wrapper {
    height: 210px;
  }
}
#top_page #top_store .store_swiper .swiper-wrapper .swiper-slide {
  width: 420px;
  height: 350px;
  margin: 0 0 30px;
  background: #FFF7E1;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_swiper .swiper-wrapper .swiper-slide {
    width: 215px;
    height: 180px;
    border-radius: 10px;
    gap: 8px;
  }
}
#top_page #top_store .store_swiper .swiper-wrapper .swiper-slide span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #EE552F;
  font-size: 30px;
  font-style: normal;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_swiper .swiper-wrapper .swiper-slide span {
    font-size: 18px;
  }
}
#top_page #top_store .store_swiper .swiper-wrapper .swiper-slide img {
  width: 380px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #top_page #top_store .store_swiper .swiper-wrapper .swiper-slide img {
    width: 195px;
    height: 130px;
    border-radius: 10px;
  }
}
#top_page #top_store .store_swiper .swiper-wrapper .down {
  margin: 30px 0 0;
}

#news_container {
  width: 100vw;
  overflow: hidden;
  position: relative;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  padding: 330px 0 15px;
}
#news_container .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#news_container .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title {
    height: 105px;
  }
}
#news_container .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #E10629;
  }
}
#news_container .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #E10629;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #E10629;
    padding: 40px 45px 25px;
  }
}
#news_container .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#news_container .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#news_container .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#news_container .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#news_container .page_title_container .title .title_container .title_wrapper h1 {
  color: #E10629;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #news_container .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #news_container .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #news_container {
    padding: 150px 0 15px;
  }
}
#news_container .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #news_container .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#news_container .pankuzu_list a, #news_container .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #news_container .pankuzu_list a, #news_container .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#news_container .pankuzu_list a {
  cursor: pointer;
}
#news_container .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #news_container .bg_flex {
    top: -50px;
  }
}
#news_container .bg_flex img {
  height: 100%;
}
#news_container .news_contents {
  padding-top: 198px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents {
    padding-top: 84px;
  }
}
#news_container .news_contents .contents_wrapper {
  width: 89.74%;
  margin: 0 auto;
}
#news_container .news_contents .contents_wrapper .news_category {
  height: initial;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper .category_btn {
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 188px;
  height: 50px;
  color: #5A301D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 3px solid #857E00;
  border-radius: 50px;
  background: #FFD900;
  transition: 0.2s;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper .category_btn:hover {
  transform: translateY(3px);
  border-bottom: 0 solid #857E00;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper .show_all {
  width: 154px;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper .active {
  color: #FFFFFF;
  border-bottom: 3px solid #710012;
  background: #E10629;
}
#news_container .news_contents .contents_wrapper .news_category .category_wrapper .active:hover {
  border-bottom: 0 solid #710012;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_category {
    display: none;
  }
}
#news_container .news_contents .contents_wrapper .sp_news_category {
  height: 30px;
  display: none;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .selected_wrapper {
  margin: 0 auto;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .selected_wrapper .selected {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  width: 160px;
  height: 30px;
  color: #FFFFFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-bottom: 3px solid #710012;
  border-radius: 50px;
  background: #E10629;
  transition: 0.2s;
  padding: 0 13px;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .selected_wrapper .selected:hover {
  transform: translateY(3px);
  border-bottom: 0 solid #710012;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .selected_wrapper .selected .arrow {
  transition: transform 0.3s ease; /* 回転にアニメーションを付ける */
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .selected_wrapper .selected .rotate_180 {
  transform: rotate(180deg);
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .category_aco {
  width: 160px;
  opacity: 0;
  pointer-events: none;
  margin-top: 3px;
  background: #FFFFFF;
  transition: opacity 0.3s ease-in;
  border: 1px solid black;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .category_aco .category_btn {
  padding: 10px 20px;
  cursor: pointer;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .category_aco .category_btn:hover {
  background: #0000FF;
  color: white;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .opacity_off {
  opacity: 0;
  pointer-events: none;
}
#news_container .news_contents .contents_wrapper .sp_news_category .sp_category_wrapper .opacity_on {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease-in;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .sp_news_category {
    display: block;
  }
}
#news_container .news_contents .contents_wrapper .news_cites {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites {
    gap: 0;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper {
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  border-radius: 10px;
  width: 386px;
  background: #FFFFFF;
  overflow: hidden;
  transition: 0.3s;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper {
    margin-top: 20px;
  }
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:nth-of-type(1) {
    margin-top: 34px;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:hover .cites_detail {
  transition: 0.3s;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:hover .cites_detail .news_button .btn--shadow {
  transform: translateY(3px);
  border-bottom: 0 solid #9f000c;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:hover .cites_detail .date_category .date {
  color: #8D7265;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper:hover .cites_detail .news_title {
  color: #8D7265;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_img {
  width: 100%;
  overflow: hidden;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_img img {
  pointer-events: none;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 4/3;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail {
  padding: 14px 19px 14px 26px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .date_category {
  display: flex;
  align-items: center;
  gap: 24px;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .date_category .date {
  color: #5A301D;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .date_category .date {
    font-size: 14px;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .date_category .category {
  display: flex;
  width: 140px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E10629;
  background: #FFF;
  color: #E10629;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .date_category .category {
    font-weight: 500;
    width: 126.943px;
    height: 27.188px;
    font-size: 16px;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_title {
  padding-top: 13px;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_title {
    padding-top: 5.81px;
    font-size: 16px;
    line-height: 120%;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_button {
  margin-top: auto;
  margin-left: auto;
  padding-top: 7px;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_button .news_btn {
  width: 43px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_button .news_btn {
    width: 39.43px;
    height: 39.43px;
  }
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_button .btn--shadow {
  border-bottom: 3px solid #710012;
}
#news_container .news_contents .contents_wrapper .news_cites .cites_wrapper .cites_detail .news_button .btn--radius {
  border-radius: 22.5px;
  background: #E10629;
}
#news_container .news_contents .contents_wrapper .news_cites .hidden {
  display: none;
}
#news_container .news_contents .contents_wrapper .news_cites .inactive {
  display: none;
}
#news_container .news_contents .contents_wrapper .news_cites .flex_sort {
  width: 386px;
  height: 0;
}
#news_container .news_contents .contents_wrapper .news_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_pages .text {
    display: none;
  }
}
#news_container .news_contents .contents_wrapper .news_pages .back_button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 44px;
  color: #5A301D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_pages .back_button {
    width: 46px;
    height: 40px;
  }
}
#news_container .news_contents .contents_wrapper .news_pages .page_button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 44px;
  color: #5A301D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_pages .page_button {
    width: 40px;
    height: 40px;
  }
}
#news_container .news_contents .contents_wrapper .news_pages .active {
  background: #E10629 !important;
  color: #FFF !important;
  border-bottom: 3px solid #710012 !important;
}
#news_container .news_contents .contents_wrapper .news_pages .active:hover {
  transform: translateY(3px) !important;
  border-bottom: 0 solid #710012 !important;
}
#news_container .news_contents .contents_wrapper .news_pages .next_button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  height: 44px;
  color: #5A301D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #news_container .news_contents .contents_wrapper .news_pages .next_button {
    width: 46px;
    height: 40px;
  }
}
#news_container .news_contents .contents_wrapper .news_pages .btn--shadow {
  border-bottom: 3px solid #857E00;
}
#news_container .news_contents .contents_wrapper .news_pages .btn--shadow:hover {
  transform: translateY(3px);
  border-bottom: 0 solid #857E00;
}
#news_container .news_contents .contents_wrapper .news_pages .btn--radius {
  border-radius: 22.5px;
  background: #FFD900;
  transition: 0.2s;
}
#news_container .border_line {
  padding-top: 107px;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#news_container .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #news_container .border_line svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  #news_container .border_line {
    padding-top: 48px;
  }
}

#company {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#company .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #company .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#company .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title {
    height: 105px;
  }
}
#company .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #00C033;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #00C033;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #00C033;
  }
}
#company .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #00C033;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #00C033;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #00C033;
    padding: 40px 45px 25px;
  }
}
#company .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #00C033;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #00C033;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #00C033;
  }
}
#company .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #00C033;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #00C033;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #00C033;
  }
}
#company .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#company .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#company .page_title_container .title .title_container .title_wrapper h1 {
  color: #00C033;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #company .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #company .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #company {
    padding: 150px 0 15px;
  }
}
#company .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #company .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#company .pankuzu_list a, #company .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #company .pankuzu_list a, #company .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#company .pankuzu_list a {
  cursor: pointer;
}
#company .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #company .bg_flex {
    top: -50px;
  }
}
#company .bg_flex img {
  height: 100%;
}
#company .company_profile {
  padding-top: 175px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 85px;
}
#company .company_profile .profile_wrapper {
  width: 72%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1280px) {
  #company .company_profile .profile_wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper {
    width: 90%;
  }
}
#company .company_profile .profile_wrapper .sub_tile {
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 85px;
}
@media screen and (max-width: 1280px) {
  #company .company_profile .profile_wrapper .sub_tile {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .sub_tile {
    margin-bottom: 34px;
  }
}
#company .company_profile .profile_wrapper .sub_tile h2 {
  color: #5A301D;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 60px */
  flex-shrink: 0;
  padding-right: 33px;
}
@media screen and (max-width: 1280px) {
  #company .company_profile .profile_wrapper .sub_tile h2 {
    font-size: 32px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .sub_tile h2 {
    font-size: 24px;
    padding-right: 8px;
  }
}
#company .company_profile .profile_wrapper .sub_tile .line {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .sub_tile .line svg {
    width: 14px;
    height: 14px;
  }
}
#company .company_profile .profile_wrapper .profile_content_container {
  width: min(818px, 60vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  #company .company_profile .profile_wrapper .profile_content_container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container {
    max-width: 560px;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content {
  width: 100%;
  display: flex;
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content:last-child .caption {
  border-bottom: 0 solid #00C033;
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content:last-child .element {
  border-bottom: 0 solid #00C033;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content {
    border-bottom: 1px solid #BABABA;
    flex-direction: column;
    align-items: start;
  }
  #company .company_profile .profile_wrapper .profile_content_container .profile_content:last-child {
    border-bottom: 0;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .caption {
  width: 170px;
  padding: 20px 0;
  border-bottom: 1px solid #00C033;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content .caption {
    width: 100%;
    border-bottom: 0 solid #00C033;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .caption span {
  display: block;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content .caption span {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.85px;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element {
  flex-grow: 1;
  padding: 20px 0 20px 60px;
  border-bottom: 1px solid #BABABA;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content .element {
    border-bottom: 0;
    padding: 0 0 11px;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element p {
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content .element p {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element .overview-map {
  padding: 13px 0 0 0;
  height: 224px;
}
@media screen and (max-width: 768px) {
  #company .company_profile .profile_wrapper .profile_content_container .profile_content .element .overview-map {
    width: 100%;
    height: 146px;
    max-width: 313px;
    margin: auto;
    aspect-ratio: 1;
  }
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element .overview-map iframe {
  width: 100%;
  height: 100%;
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element a {
  color: #5A301D;
}
#company .company_profile .profile_wrapper .profile_content_container .profile_content .element .store-link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#company .company_message {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 108px;
}
#company .company_message .message_wrapper {
  width: 72%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_message .message_wrapper {
    width: 90%;
  }
}
#company .company_message .message_wrapper .sub_tile {
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 85px;
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .sub_tile {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_message .message_wrapper .sub_tile {
    margin-bottom: 34px;
  }
}
#company .company_message .message_wrapper .sub_tile h2 {
  color: #5A301D;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 60px */
  flex-shrink: 0;
  padding-right: 33px;
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .sub_tile h2 {
    font-size: 32px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_message .message_wrapper .sub_tile h2 {
    font-size: 24px;
    padding-right: 8px;
  }
}
#company .company_message .message_wrapper .sub_tile .line {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  #company .company_message .message_wrapper .sub_tile .line svg {
    width: 14px;
    height: 14px;
  }
}
#company .company_message .message_wrapper .message_content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #5A301D;
}
#company .company_message .message_wrapper .message_content .text {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  line-height: 150%; /* 37.5px */
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .message_content .text {
    font-size: 21px;
  }
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .message_content .text {
    font-size: 18px;
    text-align: start;
  }
}
#company .company_message .message_wrapper .message_content .representative {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 33px */
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .message_content .representative {
    font-size: 19px;
  }
}
@media screen and (max-width: 1280px) {
  #company .company_message .message_wrapper .message_content .representative {
    font-size: 16px;
    text-align: end;
  }
}
#company .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#company .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #company .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#contact {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#contact .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#contact .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title {
    height: 105px;
  }
}
#contact .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #5A301D;
  }
}
#contact .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #5A301D;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #5A301D;
    padding: 40px 45px 25px;
  }
}
#contact .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#contact .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#contact .page_title_container .title .title_container .title_wrapper h1 {
  color: #5A301D;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #contact .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #contact .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    padding: 150px 0 15px;
  }
}
#contact .border_line {
  padding-top: 100px;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#contact .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact .border_line svg {
    width: 14px;
    height: 14px;
  }
}
#contact .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #contact .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#contact .pankuzu_list a, #contact .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact .pankuzu_list a, #contact .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#contact .pankuzu_list a {
  cursor: pointer;
}
#contact .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #contact .bg_flex {
    top: -50px;
  }
}
#contact .bg_flex img {
  height: 100%;
}
#contact .contact_content {
  padding-top: 175px;
  width: 65%;
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #contact .contact_content {
    width: 85%;
    max-width: initial;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_content {
    width: 90%;
    padding-top: 120px;
  }
}
#contact .contact_content .contact_exp {
  margin-bottom: 55px;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 1280px) {
  #contact .contact_content .wpcf7 form {
    max-width: 865px;
    margin: 0 auto;
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container {
  height: fit-content;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container {
    flex-direction: column;
    gap: 5px;
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption {
  width: 227.5px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption {
    width: initial;
    justify-content: flex-start;
    gap: 10px;
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption label {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption label {
    font-size: 17px;
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption .attention {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #5A301D;
  font-size: 13px;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .form_caption .required {
  padding: 6px 15px;
  border-radius: 99px;
  background: #E10629;
  color: white;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 15px;
  font-style: normal;
  line-height: 15px; /* 18px */
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .wpcf7-form-control-wrap {
  height: 40px;
  width: 508px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container .wpcf7-form-control-wrap {
    width: calc(100% - 10px);
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .wpcf7-form-control-wrap:has(textarea) {
  height: 120px;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .wpcf7-form-control-wrap input {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 15px;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .select_container {
  border-radius: 5px;
  position: relative;
  height: 40px;
  width: 508px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container .select_container {
    width: calc(100% - 10px);
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .select_container::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 15px solid #5A301D;
  pointer-events: none;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .select_container select {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .select_container select option {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 15px;
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container textarea {
  border-radius: 5px;
  border: none;
  height: 120px;
  width: 508px;
  resize: none;
}
@media screen and (max-width: 1280px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container textarea {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .form_container textarea {
    width: 100%;
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .form_container .wpcf7-form-control {
  appearance: none;
  padding: 5px 10px;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy {
  display: flex;
  justify-content: center;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy .wpcf7-form-control-wrap {
  padding-top: 20px;
  padding-bottom: 55px;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-left: 0;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy label {
  display: flex;
  align-items: center;
  gap: 17px;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy label input {
  width: 23px;
  height: 23px;
  margin: auto;
  border: 1px solid #5A301D;
  background: #FFF7E1;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy label .wpcf7-list-item-label {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  line-height: 150%;
}
#contact .contact_content .wpcf7 .wpcf7-form .privacy label .wpcf7-list-item-label a {
  color: #5A301D;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#contact .contact_content .wpcf7 .wpcf7-form .submit {
  position: relative;
  display: flex;
  width: 329px;
  height: 67px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #FFD900;
  box-shadow: 0 8px 0 0 #857E00;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .submit {
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .submit:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#contact .contact_content .wpcf7 .wpcf7-form .submit span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #5A301D;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
@media screen and (max-width: 768px) {
  #contact .contact_content .wpcf7 .wpcf7-form .submit span {
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
  }
}
#contact .contact_content .wpcf7 .wpcf7-form .submit .wpcf7-spinner {
  display: none;
}
#contact .contact_content .wpcf7 .wpcf7-form .submit input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  opacity: 0;
}

#contact_confirm {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#contact_confirm .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#contact_confirm .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title {
    height: 105px;
  }
}
#contact_confirm .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #5A301D;
  }
}
#contact_confirm .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #5A301D;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #5A301D;
    padding: 40px 45px 25px;
  }
}
#contact_confirm .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact_confirm .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact_confirm .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#contact_confirm .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#contact_confirm .page_title_container .title .title_container .title_wrapper h1 {
  color: #5A301D;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm {
    padding: 150px 0 15px;
  }
}
#contact_confirm .border_line {
  padding-top: 100px;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#contact_confirm .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact_confirm .border_line svg {
    width: 14px;
    height: 14px;
  }
}
#contact_confirm .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#contact_confirm .pankuzu_list a, #contact_confirm .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .pankuzu_list a, #contact_confirm .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#contact_confirm .pankuzu_list a {
  cursor: pointer;
}
#contact_confirm .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .bg_flex {
    top: -50px;
  }
}
#contact_confirm .bg_flex img {
  height: 100%;
}
#contact_confirm .contact_content {
  padding-top: 175px;
  width: 65%;
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  #contact_confirm .contact_content {
    width: 85%;
    max-width: initial;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content {
    width: 90%;
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 1280px) {
  #contact_confirm .contact_content .wpcf7 form {
    max-width: 865px;
    margin: 0 auto;
  }
}
#contact_confirm .contact_content .wpcf7 .form_container {
  height: fit-content;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .form_container {
    flex-direction: column;
    gap: 8px;
  }
}
#contact_confirm .contact_content .wpcf7 .form_container .form_caption {
  width: 227.5px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .form_container .form_caption {
    width: initial;
    justify-content: flex-start;
    gap: 10px;
  }
}
#contact_confirm .contact_content .wpcf7 .form_container .form_caption label {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: #8D7265;
  font-size: 18px;
  font-style: normal;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .form_container .form_caption label {
    font-size: 16px;
  }
}
#contact_confirm .contact_content .wpcf7 .form_container span {
  word-break: break-word;
  min-height: 40px;
  width: 508px;
  text-align: start;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .form_container span {
    width: 100%;
  }
}
#contact_confirm .contact_content .wpcf7 .form_container p {
  min-height: 40px;
  width: min(508px, 35.3vw);
  text-align: start;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0.9px;
}
#contact_confirm .contact_content .wpcf7 .submit {
  position: relative;
  display: flex;
  width: 329px;
  height: 67px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #FFD900;
  box-shadow: 0 8px 0 0 #857E00;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .submit {
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
  }
}
#contact_confirm .contact_content .wpcf7 .submit:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#contact_confirm .contact_content .wpcf7 .submit span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #5A301D;
  font-size: 26px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
@media screen and (max-width: 768px) {
  #contact_confirm .contact_content .wpcf7 .submit span {
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
  }
}
#contact_confirm .contact_content .wpcf7 .submit .wpcf7-spinner {
  display: none;
}
#contact_confirm .contact_content .wpcf7 .submit input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  opacity: 0;
}
#contact_confirm .contact_content .back_btn_container {
  width: 100%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
#contact_confirm .contact_content .back_btn_container .back_btn {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 25px;
  color: #5A301D;
  cursor: pointer;
}

#contact_thanks {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#contact_thanks .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#contact_thanks .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title {
    height: 105px;
  }
}
#contact_thanks .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #5A301D;
  }
}
#contact_thanks .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #5A301D;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #5A301D;
    padding: 40px 45px 25px;
  }
}
#contact_thanks .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact_thanks .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#contact_thanks .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#contact_thanks .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#contact_thanks .page_title_container .title .title_container .title_wrapper h1 {
  color: #5A301D;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks {
    padding: 150px 0 15px;
  }
}
#contact_thanks .border_line {
  padding-top: 100px;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#contact_thanks .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contact_thanks .border_line svg {
    width: 14px;
    height: 14px;
  }
}
#contact_thanks .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #contact_thanks .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#contact_thanks .pankuzu_list a, #contact_thanks .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #contact_thanks .pankuzu_list a, #contact_thanks .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#contact_thanks .pankuzu_list a {
  cursor: pointer;
}
#contact_thanks .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #contact_thanks .bg_flex {
    top: -50px;
  }
}
#contact_thanks .bg_flex img {
  height: 100%;
}
#contact_thanks .contact_content {
  padding-top: 175px;
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contact_thanks .contact_content {
    padding-top: 120px;
  }
}
#contact_thanks .contact_content p {
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  color: #5A301D;
  font-size: 25px;
  line-height: 200%;
}
@media screen and (max-width: 1280px) {
  #contact_thanks .contact_content p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contact_thanks .contact_content p {
    font-size: 16px;
  }
}
#contact_thanks .contact_content p .inline_block {
  display: inline-block;
}

#goods {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
  height: auto;
}
#goods .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#goods .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title {
    height: 105px;
  }
}
#goods .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #499CD1;
  }
}
#goods .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #499CD1;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #499CD1;
    padding: 40px 45px 25px;
  }
}
#goods .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#goods .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#goods .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#goods .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#goods .page_title_container .title .title_container .title_wrapper h1 {
  color: #499CD1;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #goods .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #goods {
    padding: 150px 0 15px;
  }
}
#goods .page_title_container .title .title_container {
  padding: 40px 35px 25px;
}
#goods .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #goods .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#goods .pankuzu_list a, #goods .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #goods .pankuzu_list a, #goods .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#goods .pankuzu_list a {
  cursor: pointer;
}
#goods .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #goods .bg_flex {
    top: -50px;
  }
}
#goods .bg_flex img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #goods .page_title_container .title {
    width: 317px;
  }
}
#goods .goods_contents {
  width: 90%;
  max-width: 1214px;
  margin: 0 auto;
  padding-top: 206px;
}
@media screen and (max-width: 768px) {
  #goods .goods_contents {
    padding-top: 100px;
  }
}
#goods .goods_contents p {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%; /* 30px */
  white-space: pre-line;
}
#goods .goods_contents .goods_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 26px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #goods .goods_contents .goods_flex {
    gap: 25px;
  }
}
#goods .goods_contents .goods_flex .item {
  width: 297px;
  padding-top: 42px;
}
@media screen and (max-width: 768px) {
  #goods .goods_contents .goods_flex .item {
    padding-top: 15px;
  }
}
#goods .goods_contents .goods_flex .item .goods_list_thumbnail {
  width: 100%;
  height: 248px;
  border-radius: 10px;
  overflow: hidden;
}
#goods .goods_contents .goods_flex .item .goods_list_thumbnail .goods_image {
  width: 100%;
  scale: 1.1;
  transition: 0.3s;
}
#goods .goods_contents .goods_flex .item .goods_description {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
#goods .goods_contents .goods_flex .item .goods_description p {
  text-align: initial;
}
#goods .goods_contents .goods_flex .item .goods_description p span {
  align-self: stretch;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 22px;
  line-height: 100%; /* 22px */
}
#goods .goods_contents .goods_flex .item .goods_description .view_button {
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  gap: 10.976px;
  aspect-ratio: 1/1;
  right: 3.5px;
  bottom: 4px;
  border-radius: 60px;
  background: var(--yellow, #FFD900);
  box-shadow: 0 3px 0 0 #857E00;
  cursor: pointer;
  transition: 0.3s;
}
#goods .goods_contents .goods_flex .flex_sort {
  width: 297px;
  height: 0;
}
#goods .goods_contents .goods_flex .item:hover .goods_image {
  scale: 1;
}
#goods .goods_contents .goods_flex .item:hover p {
  color: #8D7265;
}
#goods .goods_contents .goods_flex .item:hover .view_button {
  box-shadow: none;
  transform: translateY(6px);
}
#goods .goods_contents .button_flex {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 63px 0 89px 0;
}
#goods .goods_contents .button_flex #button {
  display: flex;
  width: 329px;
  height: 67px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #499CD1;
  box-shadow: 0 8px 0 0 #005D98;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #goods .goods_contents .button_flex #button {
    width: clamp(230px, 7.649rem + 26.9vw, 329px);
    height: clamp(44px, 1.188rem + 6.25vw, 67px);
  }
}
#goods .goods_contents .button_flex #button p {
  color: #FFF;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #goods .goods_contents .button_flex #button p {
    font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
  }
}
#goods .goods_contents .button_flex #button:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#goods .layer {
  width: 100vw;
  height: 100svh;
  background: rgba(255, 217, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#goods .layer.open {
  opacity: 1;
  visibility: visible;
  padding-bottom: 88px;
}
#goods .modal {
  width: 90%;
  max-width: 1200px;
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #goods .modal {
    height: calc(100svh - 80px);
    margin-top: 80px;
    padding: initial;
  }
}
#goods .modal .close_button {
  position: absolute;
  z-index: 1;
  top: 144px;
  right: 29px;
  display: flex;
  width: 72px;
  height: 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.902px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2.16px solid #499CD1;
  background: #499CD1;
  box-shadow: 0 2.16px 0 0 #005D98;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  #goods .modal .close_button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .close_button {
    top: 15px;
  }
}
#goods .modal .close_button:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#goods .modal .modal_container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  padding: 100px 56px;
  background: #FFF7E1;
  position: relative;
  gap: 30px;
  max-height: calc(100svh - 120px);
}
@media screen and (max-width: 1280px) {
  #goods .modal .modal_container {
    padding: 70px 90px;
  }
}
@media screen and (max-width: 1024px) {
  #goods .modal .modal_container {
    flex-direction: column;
    gap: unset;
    border-radius: 30px;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .modal_container {
    padding: 0 10px;
    overflow-y: scroll;
    height: 100%;
    max-height: initial;
    justify-content: flex-start;
  }
}
#goods .modal .modal_container .image_viewer {
  width: 61.11svh;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #goods .modal .modal_container .image_viewer {
    width: 330px;
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .modal_container .image_viewer {
    max-width: 330px;
    width: 100%;
    padding-top: 70px;
  }
}
#goods .modal .modal_container .image_viewer .current_image {
  width: 100%;
  height: 51.11svh;
  max-height: 460px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  #goods .modal .modal_container .image_viewer .current_image {
    width: 330px;
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .modal_container .image_viewer .current_image {
    width: 100%;
    height: initial;
  }
}
#goods .modal .modal_container .image_viewer .current_image .main_image {
  border-radius: 9px;
  width: 100%;
  object-fit: cover;
  opacity: 1;
  transition: 0.3s;
}
#goods .modal .modal_container .image_viewer .current_image .main_image.fade_out {
  opacity: 0;
}
#goods .modal .modal_container .image_viewer .thumbnail_container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#goods .modal .modal_container .image_viewer .thumbnail_container .active .thumb_img {
  border: 2px solid #499CD1;
}
#goods .modal .modal_container .image_viewer .thumbnail_container .thumb_wrapper {
  width: 20%;
}
#goods .modal .modal_container .image_viewer .thumbnail_container .thumb_wrapper .thumb_img {
  border-radius: 3px;
  width: 100%;
  display: block;
}
#goods .modal .modal_container .modal_text {
  width: 500px;
}
@media screen and (max-width: 1280px) {
  #goods .modal .modal_container .modal_text {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .modal_container .modal_text {
    padding-bottom: 70px;
  }
}
#goods .modal .modal_container .modal_text p {
  display: block;
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 25px;
  text-align: initial;
}
#goods .modal .modal_container .modal_text .modal_goods_name {
  font-weight: 800;
}
#goods .modal .modal_container .modal_text .modal_goods_price {
  margin: 0 0 25px;
}
@media screen and (max-width: 1024px) {
  #goods .modal .modal_container .modal_text .modal_goods_price {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 768px) {
  #goods .modal .modal_container .modal_text .modal_goods_price {
    font-size: 20px;
  }
}
#goods .modal .modal_container .modal_text .annotation {
  margin: 25px 0 0;
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  #goods .modal .modal_container .modal_text .annotation {
    margin: 15px 0 0;
  }
}
#goods .modal .modal_container .modal_text .border_line {
  padding: 0;
}
#goods .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#goods .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #goods .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#flyer {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#flyer .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#flyer .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title {
    height: 105px;
  }
}
#flyer .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #F04BB3;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #F04BB3;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #F04BB3;
  }
}
#flyer .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #F04BB3;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #F04BB3;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #F04BB3;
    padding: 40px 45px 25px;
  }
}
#flyer .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #F04BB3;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #F04BB3;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #F04BB3;
  }
}
#flyer .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #F04BB3;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #F04BB3;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #F04BB3;
  }
}
#flyer .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#flyer .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#flyer .page_title_container .title .title_container .title_wrapper h1 {
  color: #F04BB3;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #flyer .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #flyer .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #flyer {
    padding: 150px 0 15px;
  }
}
#flyer .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #flyer .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#flyer .pankuzu_list a, #flyer .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #flyer .pankuzu_list a, #flyer .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#flyer .pankuzu_list a {
  cursor: pointer;
}
#flyer .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #flyer .bg_flex {
    top: -50px;
  }
}
#flyer .bg_flex img {
  height: 100%;
}
#flyer .page_title_container .title .title_container {
  padding: 40px 35px 25px;
}
#flyer #flyer_content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content {
    width: 94.9%;
  }
}
#flyer #flyer_content .page_midasi {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-style: normal;
  line-height: 150%; /* 30px */
  display: block;
  padding: 200px 0 63px;
  margin: auto;
  width: 500px;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content .page_midasi {
    width: 90%;
    padding: 90px 0 55px 0;
  }
}
#flyer #flyer_content .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
  overflow: initial;
}
#flyer #flyer_content .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content .border_line svg {
    width: 14px;
    height: 14px;
  }
}
#flyer #flyer_content #common {
  width: 100%;
  max-width: 1200px;
  margin: 0 0 85px;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common {
    margin: 0 0 54px;
  }
}
#flyer #flyer_content #common #common_article {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article {
    height: 100%;
  }
}
#flyer #flyer_content #common #common_article .content_header {
  width: 100%;
}
#flyer #flyer_content #common #common_article #common_contents {
  width: 100%;
  margin: 14px auto 0 auto;
  height: fit-content;
  background: #FFF;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents {
    height: 648px;
    margin: 0 auto;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide {
    width: 100%;
    height: 100%;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper {
    width: 94vw;
    margin: auto;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper {
  width: 100%;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 27px;
  margin: 21px 0 9px 0;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi {
    margin: 15px 0 7px 0;
    gap: 15px;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi .img_title {
  color: #F04BB3;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 26px;
  font-style: normal;
  line-height: 150%; /* 39px */
  display: block;
  padding: 0 27px;
  border-right: solid 1px #F04BB3;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi .img_title {
    font-size: 22px;
    font-style: normal;
    line-height: 150%; /* 33px */
    padding: 0 15px 0 0;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi .term {
  color: #F04BB3;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 26px;
  font-style: normal;
  line-height: normal;
  display: block;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .swiper_midasi .term {
    font-size: 22px;
    font-style: normal;
    line-height: 150%; /* 33px */
    padding: 0;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper {
  justify-content: space-between;
  width: 75%;
  margin: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 33px;
}
@media (max-width: 1050px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper {
    flex-direction: column;
    margin: 0 auto;
    gap: 7px;
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper {
    width: 350px;
    flex-direction: column;
    margin: 0 auto;
    gap: 7px;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper a {
  width: 50%;
  height: auto;
  aspect-ratio: 445/312;
  object-fit: cover;
}
@media (max-width: 1050px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper a {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper a {
    width: 100%;
    height: 100%;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-wrapper .swiper-slide .slide-img_wrapper a img {
  width: 100%;
  object-fit: cover;
  object-position: top;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next,
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
    top: 610px;
    width: 45px;
    height: 45px;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next .button-prev,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next .button-next,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev .button-prev,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev .button-next {
  border: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #F04BB3;
  box-shadow: 0 5px 0 #9F0065;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next .button-prev:hover,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next .button-next:hover,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev .button-prev:hover,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev .button-next:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next svg,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev svg {
  width: 22px;
  height: 18px;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next span,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev span {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100px;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next span p,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev span p {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  margin: 0;
  text-align: center;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next::after,
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev::after {
  display: none;
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next {
  right: 55px;
}
@media (max-width: 1050px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next {
    right: 11%;
  }
}
@media (max-width: 950px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next {
    right: 9%;
  }
}
@media (max-width: 850px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next {
    right: 7%;
  }
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-next {
    right: 120px;
  }
}
#flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
  left: 55px;
}
@media (max-width: 1050px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
    left: 11%;
  }
}
@media (max-width: 950px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
    left: 9%;
  }
}
@media (max-width: 850px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
    left: 7%;
  }
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #common #common_article #common_contents .lp-slide .lp-slide_wrapper .swiper .swiper-button-prev {
    left: 120px;
  }
}
#flyer #flyer_content #limited {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited {
    margin: 0 0 85px;
  }
}
#flyer #flyer_content #limited #limited_article {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article {
    width: 95%;
    margin: auto;
  }
}
#flyer #flyer_content #limited #limited_article #limited_contents {
  margin: 44px auto 0;
  width: 95.2%;
  max-width: 1142px;
  display: grid;
  grid-template-columns: 50% 50%;
  row-gap: 34px;
  column-gap: 30px;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article #limited_contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin: 0 auto 0;
  }
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  background: #FFF;
  padding: 16px 31px;
  border-radius: 10px;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article #limited_contents .limited_content {
    gap: 0;
    padding: 10px 12px;
  }
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card {
  position: relative;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-inner {
  width: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-front,
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-back {
  width: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-front img,
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-back img {
  width: 100%;
  object-fit: cover;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .flip-card-back {
  transform: rotateY(180deg);
  position: absolute;
  top: 0;
  left: 0;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info {
  display: flex;
  justify-content: space-between;
  gap: 26px;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .img_title {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;
  font-style: normal;
  line-height: 120%; /* 28.8px */
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .img_title {
    color: var(--, #5A301D);
    font-size: 22px;
    font-style: normal;
    line-height: 120%; /* 26.4px */
  }
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .term {
  color: #F04BB3;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 26px;
  font-style: normal;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .term {
    color: var(--, #F04BB3);
    font-size: 20px;
    font-style: normal;
    line-height: normal;
  }
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 86px;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex .button_text {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex .button_text.disabled {
  opacity: 0.4;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex .button_back {
  border: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #F04BB3;
  box-shadow: 0 5px 0 #9F0065;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex .button_back:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#flyer #flyer_content #limited #limited_article #limited_contents .limited_content .limited_article_info .button_back_flex.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
#flyer #flyer_content #limited #limited_article #limited_contents .hidden {
  display: none;
}
#flyer #flyer_content #limited #limited_article .no-content-message {
  text-align: center;
  margin: 40px 0;
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  font-style: normal;
  line-height: 120%; /* 28.8px */
}
#flyer #flyer_content #limited #limited_article #viewMoreBtn {
  display: flex;
  margin: 90px auto;
  width: 325px;
  height: 70px;
  padding: 21.951px 13.171px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 3px solid #F04BB3;
  background: #F04BB3;
  box-shadow: 0px 8px 0px 0px #9F0065;
  color: #FFF;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 25px;
  font-style: normal;
  line-height: normal;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content #limited #limited_article #viewMoreBtn {
    margin: 45px auto;
    display: flex;
    width: 202px;
    height: 40px;
    padding: 12px 31px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: var(--, #F04BB3);
    box-shadow: 0px 8px 0px 0px var(--2, #9F0065);
    color: #FFF;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    font-style: normal;
    line-height: 120%; /* 24px */
  }
}
#flyer #flyer_content #limited #limited_article #viewMoreBtn:hover {
  box-shadow: none;
  transform: translate(0, 6px);
}
#flyer #flyer_content .content_header {
  width: 100%;
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content .content_header {
    margin-bottom: 15px;
  }
}
#flyer #flyer_content .content_header .dot_border {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content .content_header .dot_border {
    gap: 16px;
  }
}
#flyer #flyer_content .content_header .dot_border .dots {
  display: flex;
  gap: 11.72px;
  flex-wrap: nowrap;
}
#flyer #flyer_content .content_header .dot_border p {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 60px */
  display: block;
  width: 320px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #flyer #flyer_content .content_header .dot_border p {
    color: var(--, #5A301D);
    font-size: 24px;
    font-style: normal;
    line-height: 150%; /* 36px */
    width: 192px;
  }
}
#flyer .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
  overflow: initial;
  margin-top: 90px;
}
#flyer .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #flyer .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#app {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#app .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #app .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#app .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title {
    height: 105px;
  }
}
#app .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #5A301D;
  }
}
#app .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #5A301D;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #5A301D;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #5A301D;
    padding: 40px 45px 25px;
  }
}
#app .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#app .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #5A301D;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #5A301D;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #5A301D;
  }
}
#app .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#app .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#app .page_title_container .title .title_container .title_wrapper h1 {
  color: #5A301D;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #app .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #app .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #app {
    padding: 150px 0 15px;
  }
}
#app .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #app .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#app .pankuzu_list a, #app .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #app .pankuzu_list a, #app .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#app .pankuzu_list a {
  cursor: pointer;
}
#app .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #app .bg_flex {
    top: -50px;
  }
}
#app .bg_flex img {
  height: 100%;
}
#app .page_title_container {
  padding-top: clamp(5.375rem, 3.091rem + 9.13vw, 11.313rem);
}
#app .app_download {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
#app .app_download .download_container {
  width: min(90%, 884px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, -23.188rem + 30vw, 58px);
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
}
@media screen and (max-width: 1280px) {
  #app .app_download .download_container {
    flex-direction: column;
    gap: 20px;
  }
}
#app .app_download .download_container .icon {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#app .app_download .download_container .icon img {
  width: 74px;
  height: 74px;
}
#app .app_download .download_container .icon a {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #5A301D;
  font-size: clamp(18px, 0.582rem + 2.17vw, 26px);
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#app .app_download .download_container .download_button {
  display: flex;
  align-items: center;
  gap: 11px;
}
#app .app_download .download_container .download_button img {
  height: clamp(48px, 2.049rem + 3.8vw, 62px);
  cursor: pointer;
}
#app .app_images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 119px 0;
}
@media screen and (max-width: 768px) {
  #app .app_images {
    padding: 0 0 39px 0;
  }
}
#app .app_images img {
  width: 90%;
  max-width: 1200px;
}
#app .line {
  width: 1440px;
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: clamp(38px, 0.404rem + 7.88vw, 120px);
  margin-bottom: 10px;
}
#app .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#app .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #app .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#store {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 330px 0 15px;
}
#store .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #store .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#store .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title {
    height: 105px;
  }
}
#store .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #EE552F;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #EE552F;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #EE552F;
  }
}
#store .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #EE552F;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #EE552F;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #EE552F;
    padding: 40px 45px 25px;
  }
}
#store .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #EE552F;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #EE552F;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #EE552F;
  }
}
#store .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #EE552F;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #EE552F;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #EE552F;
  }
}
#store .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#store .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#store .page_title_container .title .title_container .title_wrapper h1 {
  color: #EE552F;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #store .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #store .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #store {
    padding: 150px 0 15px;
  }
}
#store .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #store .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#store .pankuzu_list a, #store .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #store .pankuzu_list a, #store .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#store .pankuzu_list a {
  cursor: pointer;
}
#store .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #store .bg_flex {
    top: -50px;
  }
}
#store .bg_flex img {
  height: 100%;
}
#store .store_cashless {
  padding-top: 175px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 37px;
}
@media screen and (max-width: 768px) {
  #store .store_cashless {
    padding: 90px 0 0;
  }
}
#store .store_cashless .cashless_wrapper {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #store .store_cashless .cashless_wrapper {
    width: 88.5%;
  }
}
#store .store_cashless .cashless_wrapper .background {
  width: 700px;
  height: fit-content;
  background-color: white;
  border-radius: 10px;
  padding: 13px 58px 20px;
}
@media screen and (max-width: 768px) {
  #store .store_cashless .cashless_wrapper .background {
    padding: 12px 13px 19px 13px;
  }
}
#store .store_cashless .cashless_wrapper .background .explain {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  #store .store_cashless .cashless_wrapper .background .explain {
    font-size: 18px;
    line-height: 120%;
    text-align: left;
  }
}
#store .store_cashless .cashless_wrapper .background .cashless_images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}
#store .store_cashless .cashless_wrapper .background .cashless_images img {
  display: inline-block;
  width: 27%;
  height: auto;
  min-height: 35px;
  object-fit: contain;
}
#store .store_region {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 105px;
}
#store .store_region .region_wrapper {
  width: 86.9%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper {
    width: 100%;
    padding: 10px;
  }
}
#store .store_region .region_wrapper .guide {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#store .store_region .region_wrapper .guide .guide_font {
  color: #5A301D;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .guide_font {
    line-height: 120%;
  }
}
#store .store_region .region_wrapper .guide .guide_button {
  display: flex;
  padding-top: 37px;
  gap: 35px;
  height: 87px;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .guide_button {
    gap: 25px;
  }
}
#store .store_region .region_wrapper .guide .guide_button .btn {
  width: 173px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .guide_button .btn {
    width: 133px;
    font-size: 20px;
  }
}
#store .store_region .region_wrapper .guide .guide_button .btn--shadow {
  border-bottom: 3px solid #B42400;
}
#store .store_region .region_wrapper .guide .guide_button .btn--shadow:hover {
  margin-top: 3px;
  border-bottom: 0 solid #9f000c;
}
#store .store_region .region_wrapper .guide .guide_button .btn--radius {
  border-radius: 50px;
  background: #EE552F;
  transition: 0.2s;
}
#store .store_region .region_wrapper .guide .parent_area {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  align-items: center;
  margin: 40px 0 0;
}
#store .store_region .region_wrapper .guide .parent_area_name {
  margin: 0 23px;
  color: #5A301D;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .parent_area_name {
    font-size: 22px;
  }
}
#store .store_region .region_wrapper .guide .child_area {
  width: 100%;
}
#store .store_region .region_wrapper .guide .child_area .district {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 30px 0 10px;
}
#store .store_region .region_wrapper .guide .child_area .district p {
  color: #5A301D;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .district p {
    font-size: 20px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 8px;
  margin: 0 0 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper {
    height: fit-content;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl {
    gap: 6px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_image {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_image {
    width: 147px;
    height: auto;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_image img {
  width: 100%;
  object-fit: cover;
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    height: 100%;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .store_name {
  color: #5A301D;
  font-size: clamp(14px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: inline-block;
  min-width: 60px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .store_name {
    font-size: 17px;
    min-width: unset;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry {
  display: flex;
  align-items: center;
  gap: clamp(3px, 1.5vw, 20px);
}
@media screen and (max-width: 1024px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry {
    gap: 3px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .inquiry_font {
  color: #5A301D;
  font-size: clamp(12px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .inquiry_font {
    font-size: 14px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .address::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("assets/images/store/address.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .address::before {
    width: 18px;
    height: 18px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .phone::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("assets/images/store/phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .phone::before {
    width: 18px;
    height: 18px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .time::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("assets/images/store/opening_hours.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper dl .store_caption .inquiry .time::before {
    width: 18px;
    height: 18px;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper .shop_btn {
  width: 43px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  flex-shrink: 0;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper .shop_btn {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  #store .store_region .region_wrapper .guide .child_area .store_wrapper .shop_btn {
    display: none;
  }
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper .btn--shadow {
  border-bottom: 3px solid #B42400;
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper .btn--radius {
  border-radius: 22.5px;
  background: #EE552F;
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper:hover {
  box-shadow: 0 0 5px 5px rgba(238, 85, 47, 0.2);
  transition: 0.3s;
}
#store .store_region .region_wrapper .guide .child_area .store_wrapper:hover .btn--shadow {
  transform: translateY(3px);
  border-bottom: 0 solid #9f000c;
}
#store .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#store .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #store .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#single_store {
  width: 100vw;
  overflow: hidden;
  position: relative;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  padding: 190px 0 15px;
  width: 100%;
}
#single_store .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#single_store .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title {
    height: 105px;
  }
}
#single_store .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #E10629;
  }
}
#single_store .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #E10629;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #E10629;
    padding: 40px 45px 25px;
  }
}
#single_store .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#single_store .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#single_store .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#single_store .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#single_store .page_title_container .title .title_container .title_wrapper h1 {
  color: #E10629;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #single_store .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #single_store .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #single_store {
    padding: 100px 0 15px;
  }
}
#single_store .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
  top: -24px;
}
@media screen and (max-width: 768px) {
  #single_store .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#single_store .pankuzu_list a, #single_store .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #single_store .pankuzu_list a, #single_store .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#single_store .pankuzu_list a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #single_store .pankuzu_list {
    top: -18px;
  }
}
#single_store .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #single_store .bg_flex {
    top: -50px;
  }
}
#single_store .bg_flex img {
  height: 100%;
}
#single_store .fv_container {
  max-width: 530px;
  width: 80%;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 1280px) {
  #single_store .fv_container {
    width: 100%;
    padding: 40px 10px 0;
    gap: 20px;
  }
}
#single_store .fv_container img {
  width: 100%;
  border-radius: 10px;
}
#single_store .fv_container .fv_store_name {
  display: flex;
  gap: 45px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #single_store .fv_container .fv_store_name {
    flex-direction: column;
    gap: 20px;
  }
}
#single_store .fv_container .fv_store_name h2 {
  color: #EE552F;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 150%; /* 60px */
}
#single_store .fv_container .fv_store_name .flyer_btn {
  display: flex;
  width: 250px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 3px solid #EE552F;
  background: #EE552F;
  box-shadow: 0 3px 0 0 #B42400;
}
#single_store .fv_container .fv_store_name .flyer_btn span {
  color: white;
  font-size: 18px;
  font-weight: 500;
}
#single_store .store_detail_container {
  width: min(818px, 60vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1280px) {
  #single_store .store_detail_container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container {
    max-width: 560px;
    padding: 0 10px;
  }
}
#single_store .store_detail_container .first_item {
  border-top: 1px solid #EE552F;
}
#single_store .store_detail_container .store_item {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #EE552F;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item {
    border-bottom: 1px solid #EE552F;
    flex-direction: column;
    align-items: start;
  }
}
#single_store .store_detail_container .store_item .caption {
  width: 171px;
  height: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .caption {
    width: 100%;
    padding: 25px 0 5px;
  }
}
#single_store .store_detail_container .store_item .caption span {
  display: block;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .caption span {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.85px;
  }
}
#single_store .store_detail_container .store_item .element {
  flex-grow: 1;
  padding: 40px 0 40px 60px;
}
#single_store .store_detail_container .store_item .element:has(.img_wrapper) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .element {
    width: 100%;
    padding: 0 0 25px;
  }
}
#single_store .store_detail_container .store_item .element p {
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .element p {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}
#single_store .store_detail_container .store_item .element .img_wrapper {
  width: 15%;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .element .img_wrapper {
    width: 100px;
  }
}
#single_store .store_detail_container .store_item .element .img_wrapper img {
  width: 100%;
}
#single_store .store_detail_container .store_item .element h3 {
  color: #5A301D;
}
#single_store .store_detail_container .store_item .element .map_container {
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  #single_store .store_detail_container .store_item .element .map_container {
    width: initial;
  }
}
#single_store .store_detail_container .store_item .element .map_container .map_frame {
  margin: 15px 0;
}
@media screen and (max-width: 1280px) {
  #single_store .store_detail_container .store_item .element .map_container .map_frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
  }
}
@media screen and (max-width: 1280px) {
  #single_store .store_detail_container .store_item .element .map_container .map_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#single_store .store_detail_container .store_item .element .map_container .map_button {
  margin-left: auto;
  display: flex;
  width: 240px;
  height: 38px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  border: 1px solid rgba(144, 137, 0, 0.15);
  background: #FFD900;
  box-shadow: 0 3px 0 0 #A9A334;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .element .map_container .map_button {
    display: none;
  }
}
#single_store .store_detail_container .store_item .element .map_container .map_button span {
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #5A301D;
  font-size: 18px;
  font-style: normal;
  line-height: 120%; /* 31.2px */
}
#single_store .store_detail_container .store_item .element .map_container .map_button:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#single_store .store_detail_container .store_item .element .map_container .map_button_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #single_store .store_detail_container .store_item .element .map_container .map_button_sp {
    display: flex;
    width: 192px;
    height: 38px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(144, 137, 0, 0.15);
    background: #FFD900;
    box-shadow: 0 3px 0 0 #A9A334;
    transition: 0.3s;
    margin: 0 0 0 auto;
  }
  #single_store .store_detail_container .store_item .element .map_container .map_button_sp span {
    font-family: "M PLUS Rounded 1c", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #5A301D;
    font-size: 16px;
    font-style: normal;
    line-height: normal; /* 31.2px */
  }
}
#single_store .store_detail_container .store_item .element .map_container .map_button_sp:hover {
  transform: translateY(6px);
  box-shadow: none;
  transition: 0.3s;
}
#single_store .store_detail_container .credit .element .img_wrapper {
  max-width: 100px;
}
#single_store .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
  padding-top: 200px;
}
#single_store .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #single_store .border_line svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  #single_store .border_line {
    padding-top: 110px;
  }
}

#single_news {
  width: 100vw;
  overflow: hidden;
  position: relative;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  padding: 190px 0 15px;
}
#single_news .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#single_news .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title {
    height: 105px;
  }
}
#single_news .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #E10629;
  }
}
#single_news .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #E10629;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #E10629;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #E10629;
    padding: 40px 45px 25px;
  }
}
#single_news .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#single_news .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #E10629;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #E10629;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #E10629;
  }
}
#single_news .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#single_news .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#single_news .page_title_container .title .title_container .title_wrapper h1 {
  color: #E10629;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #single_news {
    padding: 100px 0 15px;
  }
}
#single_news .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
  top: -24px;
  flex-wrap: wrap;
  padding-right: 35px;
}
@media screen and (max-width: 768px) {
  #single_news .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#single_news .pankuzu_list a, #single_news .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #single_news .pankuzu_list a, #single_news .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#single_news .pankuzu_list a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #single_news .pankuzu_list {
    top: -18px;
  }
}
#single_news .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #single_news .bg_flex {
    top: -50px;
  }
}
#single_news .bg_flex img {
  height: 100%;
}
#single_news .page_title_container {
  width: 100%;
}
#single_news .page_title_container .news_contents {
  width: 72%;
  margin: 0 auto;
  padding-top: 43px;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .news_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .news_contents {
    width: 94.6%;
  }
}
#single_news .page_title_container .news_contents .category_container {
  display: flex;
  gap: 10px;
}
#single_news .page_title_container .news_contents .category_container .category {
  width: 140px;
  display: flex;
  height: 35px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #E10629;
  background: #FFF;
  margin-bottom: 12px;
}
#single_news .page_title_container .news_contents .category_container .category span {
  color: #E10629;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
#single_news .page_title_container .news_contents .news_title {
  font-size: 28px;
  color: #5A301D;
  font-weight: 800;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .news_contents .news_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .news_contents .news_title {
    font-size: 20px;
  }
}
#single_news .page_title_container .news_contents .date {
  text-align: right;
  color: #5A301D;
  font-size: 17px;
  font-weight: 400;
  padding-bottom: 10px;
}
#single_news .page_title_container .news_contents .top_image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
}
#single_news .page_title_container .news_contents .border_line {
  margin-top: 36px;
  margin-bottom: 75px;
  padding-top: 0;
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .news_contents .border_line {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .news_contents .border_line {
    margin-top: 28px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #single_news .page_title_container .news_contents .border_line .tb_responsive {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .news_contents .border_line .sp_responsive {
    display: none;
  }
}
#single_news .page_title_container .news_contents .text {
  color: #5A301D;
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #single_news .page_title_container .news_contents .text {
    font-size: 16px;
  }
}
#single_news .page_title_container .news_contents .image_container {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
#single_news .page_title_container .news_contents .image_container .image {
  width: 66%;
  object-fit: cover;
}
#single_news .page_title_container .news_contents .pdf {
  width: 100%;
}
#single_news .page_title_container .news_contents .pdf img {
  width: 100%;
  height: auto;
}
#single_news .border_line {
  padding-top: 107px;
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#single_news .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #single_news .border_line svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 768px) {
  #single_news .border_line {
    padding-top: 48px;
  }
}

#basic_policy {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 190px 0 15px;
  height: auto;
}
#basic_policy .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#basic_policy .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title {
    height: 105px;
  }
}
#basic_policy .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #499CD1;
  }
}
#basic_policy .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #499CD1;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #499CD1;
    padding: 40px 45px 25px;
  }
}
#basic_policy .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#basic_policy .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#basic_policy .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#basic_policy .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#basic_policy .page_title_container .title .title_container .title_wrapper h1 {
  color: #499CD1;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #basic_policy .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #basic_policy {
    padding: 100px 0 15px;
  }
}
#basic_policy .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
  top: -24px;
}
@media screen and (max-width: 768px) {
  #basic_policy .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#basic_policy .pankuzu_list a, #basic_policy .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #basic_policy .pankuzu_list a, #basic_policy .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#basic_policy .pankuzu_list a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #basic_policy .pankuzu_list {
    top: -18px;
  }
}
#basic_policy .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #basic_policy .bg_flex {
    top: -50px;
  }
}
#basic_policy .bg_flex img {
  height: 100%;
}
#basic_policy .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
}
#basic_policy .page_title_container .basic_content {
  width: 90%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 100px 0 150px;
}
#basic_policy .page_title_container .basic_content h1 {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  #basic_policy .page_title_container .basic_content h1 {
    font-size: 30px;
  }
}
#basic_policy .page_title_container .basic_content p {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}
#basic_policy .page_title_container .basic_content ol {
  list-style: auto;
  list-style-position: inside;
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 20px;
}
#basic_policy .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#basic_policy .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #basic_policy .border_line svg {
    width: 14px;
    height: 14px;
  }
}

#privacy_policy {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding: 190px 0 15px;
  height: auto;
}
#privacy_policy .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
  box-shadow: 0 10px 5px 0 rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container {
    border-radius: 45px 45px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container {
    border-radius: 30px 30px 0 0;
  }
}
#privacy_policy .page_title_container .title {
  width: max-content;
  height: 230px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title {
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title {
    height: 105px;
  }
}
#privacy_policy .page_title_container .title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 230px;
  top: 12px;
  left: calc(50% + 14px);
  transform: translate(-50%, 0);
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title::after {
    height: 190px;
    top: 10px;
    left: calc(50% + 12px);
    border-radius: 15px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title::after {
    height: 105px;
    top: 8px;
    left: calc(50% + 10px);
    border-radius: 9px;
    border: 2px solid #499CD1;
  }
}
#privacy_policy .page_title_container .title .title_container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 65px 80px 40px;
  border-radius: 20px;
  border: 4px solid #499CD1;
  background: #FFFADB;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title .title_container {
    border-radius: 15px;
    border: 3px solid #499CD1;
    padding: 50px 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title .title_container {
    border-radius: 9px;
    border: 2px solid #499CD1;
    padding: 40px 45px 25px;
  }
}
#privacy_policy .page_title_container .title .title_container::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  left: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title .title_container::before {
    top: 13px;
    left: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title .title_container::before {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#privacy_policy .page_title_container .title .title_container::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 30px;
  border: 4px solid #499CD1;
  background: #FFA8AA;
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title .title_container::after {
    top: 13px;
    right: 25px;
    width: 23px;
    height: 23px;
    border: 3px solid #499CD1;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title .title_container::after {
    top: 11px;
    right: 20px;
    width: 14px;
    height: 14px;
    border: 2px solid #499CD1;
  }
}
#privacy_policy .page_title_container .title .title_container .title_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
  margin-bottom: 42px;
}
#privacy_policy .page_title_container .title .title_container .title_wrapper svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title .title_container .title_wrapper svg {
    width: 50px;
    height: 50px;
  }
}
#privacy_policy .page_title_container .title .title_container .title_wrapper h1 {
  color: #499CD1;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: clamp(80px, 6.9vw, 100px);
  line-height: 100%;
  letter-spacing: 5px;
}
@media screen and (max-width: 1280px) {
  #privacy_policy .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 60px;
    letter-spacing: 3.5px;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .title .title_container .title_wrapper h1 {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  #privacy_policy {
    padding: 100px 0 15px;
  }
}
#privacy_policy .pankuzu_list {
  position: relative;
  top: -165px;
  left: 7.8%;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 15px;
  top: -24px;
}
@media screen and (max-width: 768px) {
  #privacy_policy .pankuzu_list {
    gap: 5px;
    top: -70px;
    left: 4.8%;
  }
}
#privacy_policy .pankuzu_list a, #privacy_policy .pankuzu_list p {
  color: #5A301D;
  text-align: center;
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  #privacy_policy .pankuzu_list a, #privacy_policy .pankuzu_list p {
    font-size: 14px;
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
    text-align: left;
  }
}
#privacy_policy .pankuzu_list a {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #privacy_policy .pankuzu_list {
    top: -18px;
  }
}
#privacy_policy .bg_flex {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  top: 67px;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #privacy_policy .bg_flex {
    top: -50px;
  }
}
#privacy_policy .bg_flex img {
  height: 100%;
}
#privacy_policy .page_title_container {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #FFF7E1;
  position: relative;
}
#privacy_policy .page_title_container .privacy_content {
  width: 90%;
  max-width: 1296px;
  margin: 0 auto;
  padding: 100px 0 150px 0;
}
#privacy_policy .page_title_container .privacy_content h1 {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 160%;
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  #privacy_policy .page_title_container .privacy_content h1 {
    font-size: 30px;
  }
}
#privacy_policy .page_title_container .privacy_content h2 {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 160%;
  font-size: 20px;
}
#privacy_policy .page_title_container .privacy_content p {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 160%;
  font-size: 20px;
}
#privacy_policy .page_title_container .privacy_content ul {
  list-style: unset;
  list-style-position: inside;
}
#privacy_policy .page_title_container .privacy_content ul li {
  color: #5A301D;
  font-family: "M PLUS Rounded 1c", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 20px;
}
#privacy_policy .border_line {
  width: 100%;
  display: flex;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  padding-bottom: 12px;
}
#privacy_policy .border_line svg {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #privacy_policy .border_line svg {
    width: 14px;
    height: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

body {
  width: 100%;
  min-height: 100svh;
  overflow-x: hidden;
  background: #FFD900;
}

img,
label {
  display: inline-block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
