@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000000;
  --white-color: #fff;
  --gray-color: #bababa;
  --text-black-color: #333333;
  --text-gray-color: #707070;
  --primary-color: #33886a;
  --sub-color: #92ad9b;
  --bg-beige-color: #5198c8;
  --event-gray1-color: #595959;
  --event-gray2-color: #ababab;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width: 350px;
  --content-large-width: 390px;
  --content-pc-width: 500px;
  --content-pc-large-width: 910px;
  --content-pc-x-large-width: 1200px;
}

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

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: normal;
  letter-spacing: 0.02em;
}

.event_body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: normal;
  letter-spacing: 0.02em;
}

body.is-active {
  overflow: hidden;
}

.form_body {
  background-color: var(--bg-beige-color);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

/* ---------- utility ---------- */
.u_br {
  display: none;
}

@media screen and (max-width: 376px) {
  .u_br {
    display: block;
  }
}

/* ---------- layout ---------- */

.l_container,
.l_container_large {
  margin: 0 auto;
  padding: 0 16px;
}

.l_container {
  max-width: var(--content-pc-width);
}

.l_container_large {
  max-width: var(--content-pc-large-width);
}

@media screen and (max-width: 450px) {
  .l_container .l_container_large {
    max-width: var(--content-width);
    padding: 0;
  }
}

@media screen and (max-width: 450px) {
  .l_container_large {
    max-width: var(--content-width);
    padding: 0;
  }
}

.l_header {
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  padding: 0 28px;
  justify-content: space-between;
  transition: transform 0.3s 0.3s;
  background-color: #5198c8;
}

.l_header.hidden {
  transform: translateY(-75px);
}

@media screen and (max-width: 450px) {
  .l_header {
    justify-content: space-between;
  }
}

.l_header-nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 450px) {
  .l_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-index-header);
    background-color: var(--white-color);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }
}

.l_header-logo_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
}

.l_header-logo_text {
  width: 150px;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.03em;
  font-weight: bold;
}

@media screen and (max-width: 450px) {
  .l_header-logo_text {
    font-size: 25px;
  }
}

.l_header-language_wrapper_sp {
  display: none;
}

@media screen and (max-width: 450px) {
  .l_header-language_wrapper_sp {
    display: flex;
    padding-right: 70px;
  }

  .l_header-language_icon_sp {
    width: 24px;
    height: 24px;
  }
}

.l_header-nav_list {
  display: flex;
  gap: 0 32px;
  font-weight: 500;
  margin-left: auto;
  height: 100%;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .l_header-nav_list {
    background-color: var(--white-color);
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 32px 0;
    width: 70%;
    margin: 0 auto;
    align-items: flex-start;
  }
}

.l_header-nav_item {
  display: flex;
  gap: 48px;
  position: relative;
  height: 100%;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .l_header-nav_item {
    height: auto;
    flex-direction: column;
    gap: 0;
  }
}

.l_header-nav_link {
  letter-spacing: 0.05em;
  transition: 0.2s;
  height: 100%;
}

.l_header-nav_link_text {
  display: flex;
  align-items: center;
  transition: 0.2s;
  height: 100%;
}

.l_header-nav_link_text:hover {
  opacity: 0.6;
}

.l_header-nav_link_text {
  font-size: 16px;
  text-align: center;
}

.l_header-nav_link:has(.l_header-nav_item_language_icon) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 450px) {
  .l_header-nav_link:has(.l_header-nav_item_language_icon) {
    gap: 8px;
  }
}

.l_header-nav_item_language_icon {
  margin-top: 4px;
  width: 20px;
  height: 20px;
}

.l_header-nav_link_pd {
  display: none;
  position: absolute;
  flex-direction: column;
  top: 75px;
  background-color: var(--bg-beige-color);
  width: 100%;
}

.l_header-nav_item:hover > .l_header-nav_link_pd {
  display: flex;
}

.l_header-nav_link_pd:hover {
  display: flex;
}

.l_header-nav_link_pd_item:hover {
  opacity: 0.7;
  color: var(--primary-color);
  background-color: #f0f3ea;
}

.l_header-nav_link_pd_item_link {
  display: flex;
  padding: 16px 0;
  margin-left: 4px;
}

@media screen and (max-width: 450px) {
  .l_header-nav_link_pd_item a {
    display: inline;
    margin-left: 0px;
  }

  .l_header-nav_link_pd_item:hover {
    opacity: 0.7;
    color: var(--black-color);
    background-color: var(--white-color);
  }
}

@media screen and (max-width: 450px) {
  .l_header-nav_link_pd {
    display: flex;
    top: 0;
    flex-direction: column;
    position: relative;
    background-color: var(--white-color);
    border-radius: 0px;
    gap: 8px;
    padding: 0;
    width: 100%;
    margin-top: 4px;
  }
}

.l_header-sns-icons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

@media screen and (max-width: 450px) {
  .l_header-sns-icons {
    background-color: var(--white-color);
    align-items: center;
    justify-content: center;
    gap: 0 16px;
    width: 100vw;
  }
}

.l_header-sns-icon_link {
  transition: 0.2s;
}

.l_header-sns-icon_link:hover {
  opacity: 0.6;
}

.l_header-sns-icon_img_wrapper {
  width: 24px;
}

.l_section {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 450px) {
  .l_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l_footer {
  padding: 16px;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 450px) {
  .l_footer {
    padding: 8px;
  }
}

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

.m_hamburger {
  display: none;
}

@media screen and (max-width: 450px) {
  .m_hamburger {
    display: block;
    width: 40px;
    height: 20px;
    position: absolute;
    z-index: var(--z-index-menu);
    right: 28px;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 3px;
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  transition: 0.2s;
  border-radius: 4px;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

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

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

/* shopsite_kv */
.shopsite_kv {
  max-height: 750px;
  display: grid;
}

@media screen and (max-width: 450px) {
  .shopsite_kv {
    margin-top: 24px;
  }
}

.shopsite_kv_img {
  height: 750px;
  object-fit: cover;
  grid-area: 1/-1;
  min-height: 0;
}

@media screen and (max-width: 450px) {
  .shopsite_kv_img {
    height: auto;
  }
}

.shopsite_kv_wrapper {
  position: relative;
  grid-area: 1/-1;
}

.shopsite_kv_copy_wrapper {
  max-width: 360px;
  grid-area: 1/-1;
  z-index: 1;
  margin: auto;
  white-space: nowrap;
  text-align: center;
}

.shopsite_kv_copy_heading {
  font-weight: 500;
  color: var(--white-color);
  font-size: 22px;
  background-color: var(--primary-color);
  padding: 4px 33px;
  border-radius: 25px;
  position: relative;
  line-height: 1.5;
}

.shopsite_kv_copy_heading::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-color: transparent var(--primary-color) var(--primary-color)
    transparent;
  border-width: 20px;
  top: 5px;
  left: 44%;
  border-radius: 10px;
  transform: scaleX(0.5) rotate(45deg);
  z-index: -1;
}

.shopsite_kv_copy_sub {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.shopsite_kv_copy_sub::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  margin-top: 7px;
}

.shopsite_kv_copy_main {
  margin-top: 12px;
  font-size: 45px;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.shopsite_sp_slider {
  margin-top: -140px;
}

@media screen and (max-width: 450px) {
  .shopsite_sp_slider {
    margin-top: -80px;
  }
}

@media screen and (max-width: 449px) {
  .shopsite_sp_slider {
    margin-top: -55px;
  }
}

@media screen and (max-width: 450px) {
  .swiper-wrapper {
    transition-timing-function: linear !important;
  }
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: linear;
}

.swiper-slide {
  width: 150px;
}

@media screen and (max-width: 450px) {
  .swiper-slide {
    width: 104px;
  }
}

.shopsite_sp_slide_image_wrapper {
  width: 180px;
  height: auto;
}

@media screen and (max-width: 450px) {
  .shopsite_sp_slide_image_wrapper {
    width: 105px;
  }
}

/* shopsite_problem */

@media screen and (max-width: 376px) {
  .shopsite_problem.l_container.l_section {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.shopsite_problem_heading {
  font-weight: 500;
  color: var(--white-color);
  font-size: 22px;
  background-color: var(--primary-color);
  padding: 8px 22px;
  border-radius: 25px;
  position: relative;
  line-height: 1.5;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .shopsite_problem_heading {
    padding: 4px 22px;
  }
}

.shopsite_problem_heading::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-color: transparent var(--primary-color) var(--primary-color)
    transparent;
  border-width: 20px;
  top: 14px;
  left: 46%;
  border-radius: 10px;
  transform: scaleX(0.5) rotate(45deg);
  z-index: -1;
}

@media screen and (max-width: 450px) {
  .shopsite_problem_heading::after {
    top: 5px;
  }
}

.shopsite_problem_list {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 40px;
  justify-content: center;
}

@media screen and (max-width: 450px) {
  .shopsite_problem_list {
    margin-top: 24px;
    gap: 15px;
  }
}

.shopsite_problem_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--sub-color);
  padding-bottom: 15px;
  width: calc((100% / 2) - 40px);
}

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

.shopsite_problem_item_image {
  width: 75px;
  height: auto;
}

.shopsite_problem_item_desc {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-black-color);
}

.shopsite_problem_item_desc2 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-black-color);
  background:linear-gradient(transparent 60%, #ff6 60%);
}

/* shopsite_merit */

.shopsite_merit {
  background-color: var(--sub-color);
  padding: 0 16px 35px;
}

.shopsite_merit_heading {
  width: 330px;
  height: 65px;
  display: flex;
  justify-content: center;
  margin: 32.5px auto 0;
  font-weight: 600;
  color: var(--white-color);
  font-size: 28px;
  background-color: var(--primary-color);
  border-radius: 33px;
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  top: -32.5px;
  line-height: 2.2;
}

.shopsite_merit_heading::before {
  content: url(../img/point.png);
  display: block;
  position: absolute;
  top: -50px;
  left: 28%;
  z-index: 1;
  transform: scale(0.3);
}

.shopsite_merit_heading::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  border-color: transparent var(--primary-color) var(--primary-color)
    transparent;
  border-width: 20px;
  top: 38px;
  left: 44%;
  border-radius: 10px;
  transform: scaleX(-0.4) rotate(45deg);
}

.shopsite_merit_list {
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  margin: -22px auto 0;
  padding: 22px 26px;
  border-radius: 10px;
  max-width: var(--content-pc-large-width);
  gap: 18px;
}

@media screen and (max-width: 450px) {
  .shopsite_merit_list {
    max-width: var(--content-large-width);
    display: flex;
    flex-direction: column;
    background-color: var(--white-color);
    margin: -22px auto 0;
    padding: 16px 20px;
    border-radius: 10px;
    gap: 10px;
  }
}

.shopsite_merit_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sub-color);
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 450px) {
  .shopsite_merit_item {
    font-size: 18px;
  }
}

.shopsite_merit_item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.shopsite_merit_item_inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 75%;
}

@media screen and (max-width: 915px) {
  .shopsite_merit_item_inner {
    width: 85%;
  }
}

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

.shopsite_merit_item_number {
  font-size: 30px;
  color: var(--white-color);
  background-color: var(--primary-color);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  line-height: 1.4;
  border-radius: 10px;
  flex-shrink: 0;
}

.shopsite_merit_item:nth-child(1) .shopsite_merit_item_number {
  padding-right: 4px;
}

/* shopsite_icons_list */
.shopsite_icons_list_wrapper {
  margin: 80px auto 0;
  padding-bottom: 40px;
}

@media screen and (max-width: 450px) {
  .shopsite_icons_list_wrapper {
    margin: 40px auto 0;
    padding-bottom: 0px;
  }
}

.shopsite_icons_list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 24px 0;
}

.shopsite_icons_list_item {
  width: calc(100% / 3);
  text-align: center;
  transition: 0.3s;
}

.shopsite_icons_list_item:hover {
  opacity: 0.7;
}

.shopsite_icons_list_item_icon {
  max-width: 120px;
  height: auto;
}

@media screen and (max-width: 450px) {
  .shopsite_icons_list_item_icon {
    max-width: 80px;
    height: auto;
  }
}

.shopsite_icons_list_item_title {
  font-weight: 500;
}

@media screen and (max-width: 450px) {
  .shopsite_icons_list_item_title {
    font-size: 15px;
  }
}

/* shopsite_plan */
.shopsite_plan {
  background-color: var(--bg-beige-color);
  padding: 50px 16px;
}

@media screen and (max-width: 450px) {
  .shopsite_plan {
    padding: 50px 0;
  }
}

.shopsite_plan_heading {
  font-size: 22px;
  color: var(--text-gray-color);
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}

.shopsite_plan_heading:nth-of-type(2) {
  margin-top: 36px;
}

@media screen and (max-width: 450px) {
  .shopsite_plan_heading:nth-of-type(2) {
    margin-top: 24px;
  }
}

.shopsite_plan_heading::before,
.shopsite_plan_heading::after {
  content: "";
  width: 2px;
  height: 30px;
  background-color: var(--text-gray-color);
  margin-bottom: -2px;
}

.shopsite_plan_heading::before {
  transform: rotate(-35deg);
}

.shopsite_plan_heading::after {
  transform: rotate(35deg);
}

.shopsite_plan_container {
  background-color: var(--primary-color);
  max-width: calc(var(--content-pc-x-large-width) - 32px);
  margin: 15px auto 0;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  gap: 0px;
  flex-wrap: wrap;
  padding: 25px 13px;
  gap: 13px;
}

@media screen and (max-width: 450px) {
  .shopsite_plan_container {
    max-width: var(--content-large-width);
    gap: 13px 10px;
  }
}

@media screen and (max-width: 376px) {
  .shopsite_plan_container {
    max-width: calc(var(--content-large-width) - 32px);
  }
}

.shopsite_plan_title {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 13px;
  margin-left: 20px;
  letter-spacing: 0.04em;
  margin-right: auto;
}

@media screen and (max-width: 450px) {
  .shopsite_plan_title {
    margin-right: 0;
  }
}

.shopsite_plan_title::after {
  content: "";
  background-color: var(--white-color);
  width: 3px;
  height: 150px;
  display: block;
  border-radius: 4px;
}

.shopsite_plan_selection_link {
  display: grid;
  max-width: calc((100% - 52px) / 5);
  height: auto;
  transition: 0.1s;
}

.shopsite_plan_selection_link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 910px) {
  .shopsite_plan_selection_link {
    max-width: calc((100% - 39px) / 4);
    height: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 750px) {
  .shopsite_plan_selection_link {
    max-width: calc((100% - 26px) / 3);
  }
}

@media screen and (max-width: 450px) {
  .shopsite_plan_selection_link {
    max-width: calc((100% - 13px) / 2);
    width: 177px;
    height: 130px;
    margin-right: 0;
  }
}

@media screen and (max-width: 376px) {
  .shopsite_plan_selection_link {
    max-width: calc((100% - 10px) / 2);
    height: auto;
    margin-right: 0;
  }
}

.shopsite_plan_selection_blank {
  background-color: var(--white-color);
  max-width: calc((100% - 52px) / 5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

@media screen and (max-width: 910px) {
  .shopsite_plan_selection_blank {
    max-width: calc((100% - 39px) / 4);
  }
}

@media screen and (max-width: 750px) {
  .shopsite_plan_selection_blank {
    max-width: calc((100% - 26px) / 3);
  }
}

@media screen and (max-width: 450px) {
  .shopsite_plan_selection_blank {
    max-width: calc((100% - 13px) / 2);
  }
}

.shopsite_plan_selection_blank_text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-gray-color);
}

.shopsite_plan_selection_image {
  grid-area: 1/-1;
  min-height: 0;
}

.shopsite_plan_selection_title {
  grid-area: 1/-1;
  z-index: 1;
  margin: 10px auto 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-gray-color);
  letter-spacing: 0.2em;
  text-align: center;
  padding-left: 4px;
}

@media screen and (max-width: 450px) {
  .shopsite_plan_selection_title {
    margin: 7px auto 0;
  }
}

.shopsite_plan_contact_wrapper {
  margin: 40px auto 0;
}

.shopsite_plan_contact_link {
  display: flex;
  background-color: var(--primary-color);
  width: 330px;
  height: 65px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
  transition: 0.1s;
  margin: 15px auto 0;
}

.shopsite_plan_contact_link:hover {
  opacity: 0.7;
}

.shopsite_plan_contact_link_icon {
  width: 30px;
  height: auto;
  margin-bottom: 2px;
}

.shopsite_plan_contact_link_text_wrapper {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.05em;
  margin-right: 15px;
}

.shopsite_plan_contact_link_text_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--white-color);
  border-right: 3px solid var(--white-color);
  transform: rotate(45deg);
  margin-top: -5px;
}

/* shopsite_problem2 */

.shopsite_problem2.l_container.l_section {
  max-width: calc(720px + 32px);
}

@media screen and (max-width: 376px) {
  .shopsite_problem2.l_container.l_section {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.shopsite_problem2_box {
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 450px) {
  .shopsite_problem2_box {
    max-width: 360px;
    gap: 12px;
  }
}

.shopsite_problem2_box_text {
  font-weight: 500;
  font-size: 18px;
}

/* shopsite_feature */

.shopsite_feature.l_container.l_section {
  max-width: calc(720px + 32px);
}

@media screen and (max-width: 376px) {
  .shopsite_feature.l_container.l_section {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.shopsite_feature_list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.shopsite_feature_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

@media screen and (max-width: 450px) {
  .shopsite_feature_item {
    max-width: 360px;
  }
}

.shopsite_feature_item_heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--sub-color);
  max-width: var(--content-pc-width);
  width: 100%;
}

.shopsite_feature_item_content {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

.shopsite_feature_item_content_text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
}

@media screen and (max-width: 450px) {
  .shopsite_feature_item_content_text {
    font-size: 15px;
  }
}

/* shopsite_faq */

.shopsite_faq.l_container.l_section {
  max-width: calc(720px + 32px);
}

.shopsite_faq_list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .shopsite_faq_list {
    gap: 24px;
  }
}

.shopsite_faq_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sub-color);
}

@media screen and (max-width: 450px) {
  .shopsite_faq_item {
    max-width: 360px;
    padding-bottom: 24px;
    gap: 4px;
  }
}

.shopsite_faq_item_question {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  max-width: var(--content-pc-large-width);
  width: 100%;
}

.shopsite_faq_item_question_text {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-black-color);
  padding-bottom: 15px;
}

@media screen and (max-width: 450px) {
  .shopsite_faq_item_question_text {
    font-size: 15px;
  }
}

.shopsite_faq_item_answer_text {
  margin-top: 45px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-left: 93px;
}

@media screen and (max-width: 450px) {
  .shopsite_faq_item_answer_text {
    font-size: 15px;
  }
}

.shopsite_faq_link_wapper {
  text-align: right;
}

.shopsite_faq_link {
  margin-top: 40px;
  display: inline-block;
  justify-content: flex-end;
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 4px;
  text-align: right;
  transition: 0.2s;
}

.shopsite_faq_link:hover {
  opacity: 0.7;
  border-bottom: transparent 1px solid;
}


@media screen and (max-width: 450px) {
  .shopsite_faq_link_wapper {
    margin: 0 auto;
    max-width: 360px;
  }
}


/* comparison-table */
.comparison-table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
  .comparison-table {
    font-size: 14px;
  }
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--gray-color);
  padding: 10px;
  font-weight: 600;
  text-align: center;
  padding: 25px;
}

@media screen and (max-width: 450px) {
  .comparison-table th,
  .comparison-table td {
    padding: 15px 5px;
  }
}

.comparison-table td:first-child {
  background: #f5f5f5;
  width: 30%;
}

.comparison-table th:nth-child(1) {
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom-color: #ccc;
  color: #fff;
}

.comparison-table th {
  background-color: var(--primary-color);
  color: #fff;
}

@media screen and (max-width: 450px) {
 .tdtitle {
    font-size: 12px;
  }
}

.marker {
  background: linear-gradient(transparent 0%, #ff6 90%);
}

.memo {
  font-size: 12px;
}

/* shopsite_owner */
.shopsite_owner {
  max-width: var(--content-pc-width);
  margin: 0px auto 40px;
  font-weight: 500;
  color: var(--text-gray-color);
  font-size: 15px;
  margin-top: 24px;
}

@media screen and (max-width: 450px) {
 .memo {
   margin-left: 6px;
    font-size: 11px;
  }
}

@media screen and (max-width: 450px) {
  .shopsite_owner {
    max-width: var(--content-width);
    font-size: 12px;
    font-weight: 500;
  }
}

.shopsite_owner_heading {
  border-top: 1px solid var(--gray-color);
  padding: 7px 0;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.shopsite_owner_table_row {
  border-bottom: dashed 1px var(--gray-color);
  border-top: dashed 1px var(--gray-color);
}

.shopsite_owner_table_row:first-child {
  border-top: solid 1px var(--gray-color);
}

.shopsite_owner_table_heading {
  padding: 16px 20px;
}

.shopsite_owner_table_data {
  padding: 16px 0 16px 28px;
}

.shopsite_owner_table_heading {
  text-align-last: justify;
  width: 84px;
  max-width: 20%;
  text-wrap: nowrap;
  font-weight: 500;
  background-color: rgba(146, 173, 155, 0.2);
}

/* footer */
.shopsite_footer_text {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-gray-color);
  margin-top: 16px;
  text-align: center;
  padding-bottom: 8px;
  letter-spacing: 0.08em;
}


/* ---------- /faq ---------- */

.faq_body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

.l_main__faq {
  margin-top: 80px;
}

.faq_contact_wrapper {
  margin: 20px auto 0;
}

.faq_footer {
  margin-top: 20px;
  grid-row-start: 2;
  grid-row-end: 3;
  width: 100%;
}

/* ---------- .form ---------- */

.contact {
  padding: 80px 12px 40px;
}

.contact.l_container,
.confirm.l_container {
  max-width: 800px;
  flex-grow: 1;
}

@media screen and (max-width: 1212px) {
  .l_container.contact,
  .l_container.confirm {
    width: 100%;
    padding: 80px 16px 40px;
  }
}

.contact_title_container {
  position: relative;
  text-align: center;
}

.contact_title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  padding: 0 16px;
  letter-spacing: 0.1em;
  position: relative;
  text-wrap: nowrap;
}

@media screen and (max-width: 1212px) {
  .contact_title {
    font-size: 32px;
  }
}

.contact_title_sub {
  top: -24px;
  left: 50%;
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  transform: translateX(-50%);
  letter-spacing: 0.16em;
}

.contact_title_sub::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background-color: var(--primary-color);
  rotate: -32deg;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_title_sub::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background-color: var(--primary-color);
  rotate: 32deg;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_list {
  margin-top: 64px;
}

.contact_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  rotate: 0.03deg;
}

.contact_form_heading:not(:first-child) {
  margin-top: 64px;
}

@media screen and (max-width: 450px) {
  .contact_form_heading:not(:first-child) {
    margin-top: 40px;
  }
}

.contact_form_heading_label {
  font-size: 14px;
  color: var(--white-color);
  padding: 2px 12px;
  border-radius: 100vw;
  margin-left: 8px;
}

.contact_form_heading_label.__optional {
  background-color: var(--gray-color);
}

.contact_form_heading_label.__required {
  background-color: var(--primary-color);
}

.contact_form_heading_desc {
  font-size: 16px;
  font-weight: normal;
  margin-left: 8px;
  rotate: 0.03deg;
}

.contact_form_selectbox {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "M PLUS 1p", sans-serif;
  width: 50%;
  rotate: 0.03deg;
}

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

.contact_form_selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--black-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.contact_form_selectbox_select {
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  background-color: var(--white-color);
  color: var(--black-color);
  cursor: pointer;
  rotate: 0.03deg;
}

.contact_form_selectbox_select:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.events_checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact_form_events_checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.contact_form_events_label {
  margin-left: 4px;
  font-weight: 500;
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.contact_form_events_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.contact_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: var(--primary-color);
}

.contact_form_detail {
  margin-top: 16px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .contact_form_detail {
    margin-top: 12px;
  }
}

.contact_form_detail__other {
  margin-top: 24px;
  rotate: 0.03deg;
}

.contact_form_detail__other.__radio {
  margin-top: 12px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .contact_form_detail__other {
    margin-top: 12px;
  }
}

.contact_form_detail_desc {
  font-size: 18px;
  rotate: 0.03deg;
}

.contact_form_detail_desc.__merchandise,
.contact_form_detail_desc.__to_be_at_gallery,
.contact_form_detail_desc.__events {
  margin-top: 12px;
  line-height: 2em;
}

@media screen and (max-width: 450px) {
  .contact_form_detail_desc.__events {
    font-size: 12px;
  }
}

.contact_form_detail_desc_accent {
  color: var(--primary-color);
}

.contact_form_radio-list {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-flow: column;
}

.contact_form_radio-item {
  display: flex;
  align-items: stretch;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  border-radius: 4px;
}

.contact_form_input.__short {
  width: 50%;
}

.contact_form_input:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.contact_form_input_files {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_form_input_file_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact_form_input_files_desc {
  font-size: 16px;
}

.contact_form_input_unit {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}

.contact_form_radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
  margin-top: 7px;
}

/* 内側のマル */
.contact_form_radio:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}
/* 選択された時の内側のマルの色 */
.contact_form_radio:checked:before {
  background: var(--primary-color);
}

.contact_form_label {
  padding-left: 12px;
  font-size: 18px;
  rotate: 0.03deg;
  line-height: 1.8em;
}

@media screen and (max-width: 450px) {
  .contact_form_label {
    font-size: 16px;
  }
}

.contact_form_label:hover {
  cursor: pointer;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  border-radius: 4px;
}

.contact_form_textarea:focus {
  outline: 2px solid var(--primary-color);
  border: 1px solid var(--white-color);
}

.contact_form_textarea::placeholder {
  color: var(--gray-color);
}

.contact_form_privacy-policy-wrapper {
  margin-top: 8px;
  border-radius: 4px;
  rotate: 0.03deg;
  background-color: rgba(235, 235, 235, 0.493);
  border: 1px solid var(--gray-color);
  padding: 8px;
}

.contact_form_privacy-policy {
  font-size: 16px;
}

@media screen and (max-width: 450px) {
  .contact_form_privacy-policy {
    font-size: 12px;
  }
}

.contact_form_agreement {
  margin-top: 24px;
}

.contact_form_agreement_desc {
  text-align: center;
  font-size: 16px;
  rotate: 0.03deg;
}

.contact_form_agreement-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(235, 235, 235, 0.493);
  margin-top: 8px;
}

.contact_form_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.contact_form_agreement-txt {
  margin-left: 16px;
  font-size: 16px;
  font-weight: bold;
  rotate: 0.03deg;
}

.contact_form_agreement-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact_form_btn-wrapper {
  margin: 56px auto 0;
  width: 140px;
  height: 50px;
}

.contact_form_button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  font-size: 18px;
  padding: 24px 0;
  background-color: var(--primary-color);
  border-radius: 100vh;
  transition: 0.8s;
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
  rotate: 0.03deg;
  letter-spacing: 0.1em;
}

.contact_form_button:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.contact_form_error {
  margin-top: 8px;
  font-size: 16px;
  color: var(--error-color);
}

/* input type = numberのスピナー非表示 */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  text-align: right;
}

/* confirm */
.confirm {
  margin: 0 auto;
  padding: 80px 12px 40px;
}

.confirm_form {
  margin-top: 80px;
}

.confirm_form_list {
  margin-top: 64px;
}

.confirm_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  rotate: 0.03deg;
}

.confirm_form_heading:not(:first-child) {
  margin-top: 64px;
}

@media screen and (max-width: 450px) {
  .confirm_form_heading:not(:first-child) {
    margin-top: 40px;
  }
}

.confirm_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 4px 8px;
  background-color: var(--primary-color);
}

.confirm_form_detail {
  margin-top: 16px;
}

@media screen and (max-width: 450px) {
  .confirm_form_detail {
    margin-top: 12px;
  }
}

.confirm_form_selectbox {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "M PLUS 1p", sans-serif;
  width: 50%;
  rotate: 0.03deg;
  pointer-events: none;
}

.confirm_form_selectbox_select {
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  border-radius: 4px;
  background-color: #e9e9e9;
  color: var(--black-color);
  cursor: pointer;
  rotate: 0.03deg;
}

.confirm_form_selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: var(--black-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.confirm_form_detail__other {
  margin-top: 24px;
  rotate: 0.03deg;
}

.confirm_form_detail__other.__radio {
  margin-top: 12px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .confirm_form_detail__other {
    margin-top: 12px;
  }
}

.confirm_img-box {
  display: flex;
  gap: 24px;
}

.confirm_img-container {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.confirm_img-wrapper {
  width: auto;
  height: 320px;
  margin-top: 4px;
  rotate: 0.03deg;
  font-size: 16px;
}

.confirm_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.confirm_img_title {
  font-size: 18px;
  text-align: left;
  rotate: 0.03deg;
}

.confirm_form_radio-list {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-flow: column;
}

.confirm_form_radio-item {
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 450px) {
  .confirm_form_radio-item {
    width: 100%;
  }
}

.confirm_form_input {
  font-size: 16px;
  width: 100%;
  height: 48px;
  padding: 8px;
  border: 1px solid var(--gray-color);
  background: #e9e9e9;
  border-radius: 4px;
}

.confirm_form_input.__short {
  width: 50%;
}

.confirm_form_input:focus {
  outline: none;
}

.confirm_form_input:hover {
  cursor: not-allowed;
}

.confirm_form_input_unit {
  margin-left: 8px;
  font-weight: bold;
  font-size: 18px;
}

.confirm_form_radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
  pointer-events: none;
  margin-top: 7px;
}

.confirm [data-lastpass-icon-root] {
  display: none !important;
}

[data-lastpass-root] {
  display: none !important;
}

/* 内側のマル */
.confirm_form_radio:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
}
/* 選択された時の内側のマルの色 */
.confirm_form_radio:checked:before {
  background: var(--gray-color);
}

.confirm_form_label {
  padding-left: 12px;
  font-size: 18px;
  rotate: 0.03deg;
  line-height: 1.8em;
}

.confirm_form_label:hover {
  pointer-events: none;
}

.confirm_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 240px;
  padding: 16px;
  border: 1px solid var(--gray-color);
  background: var(--white-color);
  background: #e9e9e9;
  border-radius: 4px;
}

.confirm_form_textarea:focus {
  outline: none;
}

.confirm_form_textarea:hover {
  cursor: not-allowed;
}

.confirm_form_agreement {
  margin-top: 64px;
  text-align: center;
  rotate: 0.03deg;
}

.confirm_form_agreement-inner {
  height: 48px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--gray-color);
}

.confirm_form_checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  appearance: checkbox;
}

.confirm_form_agreement-txt {
  margin-left: 16px;
  font-size: 16px;
  font-weight: bold;
}

.confirm_form_agreement-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.confirm_btn-container {
  display: flex;
  max-width: 640px;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .confirm_btn-container {
    flex-direction: column-reverse;
    margin-top: 56px;
    align-items: center;
    gap: 24px;
  }
}

.confirm_form_btn-wrapper {
  margin: 56px auto 0;
  width: 140px;
  height: 50px;
  rotate: 0.03deg;
}

@media screen and (max-width: 450px) {
  .confirm_form_btn-wrapper {
    margin: 0;
  }
}

.confirm_form_button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  font-size: 18px;
  padding: 24px 0;
  background-color: var(--primary-color);
  border-radius: 100vh;
  transition: 0.8s;
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
}

.confirm_form_button:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.confirm_form_button.__back {
  color: var(--primary-color);
  border: solid 1.5px var(--primary-color);
  background-color: var(--white-color);
}

.confirm_form_button.__back:hover {
  color: var(--white-color);
  border: solid 1.5px var(--primary-color);
  background-color: var(--primary-color);
}

.confirm_form_error {
  margin-top: 8px;
  font-size: 16px;
  color: var(--error-color);
}

.precautions {
  margin: 10px;
  font-size: 11px;
}

.l_footer.form_footer {
  font-size: 14px;
  background-color: var(--white-color);
}

@media screen and (max-width: 450px) {
  .l_footer.form_footer {
    font-size: 12px;
  }
}

/* send */
.send {
  padding-top: 80px;
}

.send_copy-container {
  margin-top: 80px;
}

.send_copy {
  margin-top: 80px;
  text-align: center;
  rotate: 0.03deg;
}

.send_copy-error {
  margin-top: 24px;
  text-align: center;
  rotate: 0.03deg;
}

.send_copy_top {
  margin-top: 24px;
  text-align: center;
  padding-bottom: 24px;
  rotate: 0.03deg;
}

.m_link__to-top {
  transition: 0.5s;
}

.m_link__to-top:hover {
  color: var(--primary-color);
  opacity: 0.7;
}

/* ---------- visa/language ---------- */
.visa_language {
  margin: 40px auto 0;
  padding-right: 16px;
  padding-left: 16px;
  max-width: 800px;
}

.visa_language_title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.12em;
  display: flex;
  gap: 24px;
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .visa_language_title {
    font-size: 20px;
  }
}

.visa_language_title::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--black-color);
}

.visa_language_list {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media screen and (max-width: 450px) {
  .visa_language_list {
    gap: 16px;
  }
}

@media screen and (max-width: 450px) {
  .visa_language_item {
    width: calc((100% - 32px) / 3);
  }
}

.visa_language_link {
  transition: 0.2s;
}

.visa_language_link:hover {
  opacity: 0.6;
}

/* ---------- event ---------- */
/* event_kv */
.event_kv {
  max-height: 650px;
  display: grid;
}

@media screen and (max-width: 450px) {
  .event_kv {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

.event_kv_img {
  height: 650px;
  object-fit: cover;
  grid-area: 1/-1;
  min-height: 0;
}

@media screen and (max-width: 450px) {
  .event_kv_img {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

/* event_section1 */
.event_section1.l_section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 450px) {
  .event_section1.l_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.event_section1_content_wrapper {
  max-width: 740px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .event_section1_content_wrapper {
    padding: 0 16px;
  }
}

.event_section1_heading {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.12em;
  max-width: 740px;
}

@media screen and (max-width: 450px) {
  .event_section1_heading {
    font-size: 20px;
  }
}

.event_section1_text {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .event_section1_text {
    font-size: 14px;
  }
}

/* event_img_wrapper */
.event_img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

@media screen and (max-width: 450px) {
  .event_img {
    height: 240px;
  }
}

/* sevent_section2 */
.event_section2.l_section {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .event_section2.l_section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

.event_section2_title_wrapper {
  margin: 0 auto;
  text-align: center;
}

.event_section2_title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 45px;
}

@media screen and (max-width: 450px) {
  .event_section2_title {
    font-size: 20px;
    gap: 16px;
  }
}

.event_section2_title::before,
.event_section2_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--black-color);
  flex: 1;
}

.event_section2_list {
  margin-top: 80px;
}

@media screen and (max-width: 450px) {
  .event_section2_list {
    margin-top: 40px;
  }
}

.event_section2_list_item {
  border-bottom: 1px solid var(--event-gray2-color);
  display: flex;
  flex-direction: column;
}

.event_section2_list_item_link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 0;
  transition: 0.3s;
}

@media screen and (max-width: 450px) {
  .event_section2_list_item_link {
    padding: 20px 0;
  }
}

.event_section2_list_item_link:hover {
  background-color: rgba(204, 204, 204, 0.2);
}

.event_section2_list_item_inner {
  padding: 0 12px;
}

.event_section2_list_item_date {
  font-size: 16px;
  color: var(--event-gray1-color);
}

@media screen and (max-width: 450px) {
  .event_section2_list_item_date {
    font-size: 14px;
  }
}

.event_section2_list_item_heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

@media screen and (max-width: 450px) {
  .event_section2_list_item_heading {
    font-size: 16px;
    margin-top: 6px;
  }
}

.event_section2_list_item_desc {
  margin-top: 12px;
  font-size: 16px;
  width: 100%;
  max-width: 975px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 450px) {
  .event_section2_list_item_desc {
    font-size: 12px;
  }
}

.event_section2_button a {
  font-size: 18px;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 180px;
  text-align: center;
  padding: 0px 10px 10px 0;
  margin: 80px 0 0 auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

@media screen and (max-width: 450px) {
  .event_section2_button a {
    font-size: 14px;
    margin: 40px 0 0 auto;
    max-width: 150px;
    padding: 0px 25px 10px 0;
  }
}

.event_section2_button a::before {
  content: "";
  display: block;
  position: absolute;
  width: 200px;
  height: 1px;
  background: var(--black-color);
  bottom: 0;
  transition: all 0.3s;
}

@media screen and (max-width: 450px) {
  .event_section2_button a::before {
    width: 150px;
  }
}

.event_section2_button a::after {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 1px;
  background: var(--black-color);
  rotate: 40deg;
  right: -23px;
  bottom: 8px;
  transition: all 0.3s;
}

@media screen and (max-width: 450px) {
  .event_section2_button a::after {
    right: -4px;
  }
}

.event_section2_button a:hover::after,
.event_section2_button a:hover::before {
  translate: 20px 0;
  transition: all 0.3s;
}

@media screen and (max-width: 450px) {
  .event_section2_button a:hover::after,
  .event_section2_button a:hover::before {
    translate: 8px 0;
  }
}

.event_section2_button a:hover {
  opacity: 0.7;
}

/* event_section3 */
.event_section3.l_section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 450px) {
  .event_section3.l_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.event_section3_title_wrapper {
  margin: 0 auto;
  text-align: center;
}

.event_section3_title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}

@media screen and (max-width: 450px) {
  .event_section3_title {
    font-size: 20px;
    gap: 16px;
  }
}

.event_section3_title::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background-color: var(--black-color);
}

@media screen and (max-width: 450px) {
  .event_section3_title::after {
    height: 15px;
  }
}

.event_section3_content_wrapper {
  max-width: 980px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .event_section3_content_wrapper {
    padding: 0 16px;
  }
}

.event_section3_content_text {
  font-size: 16px;
  text-align: center;
  margin-top: 32px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 450px) {
  .event_section3_content_text {
    margin-top: 16px;
  }
}

.event_section3_content_list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media screen and (max-width: 450px) {
  .event_section3_content_list {
    margin-top: 40px;
    gap: 40px;
  }
}

.event_section3_content_list_item {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .event_section3_content_list_item {
    gap: 12px;
  }
}

.event_section3_content_list_item_img {
  width: 360px;
  height: 270px;
}

@media screen and (max-width: 450px) {
  .event_section3_content_list_item_img {
    width: 180px;
    height: 135px;
  }
}

.event_section3_content_list_item_desc_heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--black-color);
  display: inline-block;
  padding-bottom: 8px;
}

@media screen and (max-width: 450px) {
  .event_section3_content_list_item_desc_heading {
    font-size: 12px;
  }
}

.event_section3_content_list_item_desc_text {
  margin-top: 20px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 450px) {
  .event_section3_content_list_item_desc_text {
    margin-top: 8px;
    font-size: 12px;
  }
}

/* event_banner */
.event_banner_wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  max-height: 350px;
  transition: 0.2s;
  aspect-ratio: 27500 / 7873;
}

.event_banner_wrapper:hover {
  opacity: 0.8;
}

@media screen and (max-width: 450px) {
  .event_banner_wrapper {
    height: 180px;
    margin-top: 0px;
  }
}

.event_banner_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 450px) {
  .event_banner_img {
    object-fit: cover;
  }
}

/* event_outline */
.event_outline.l_section {
  padding-top: 80px;
  padding-bottom: 80px;
  margin: 0 auto;
  max-width: 500px;
}

@media screen and (max-width: 450px) {
  .event_outline.l_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.event_outline_wrapper {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

@media screen and (max-width: 450px) {
  .event_outline_wrapper {
    padding: 0 16px;
    font-size: 14px;
    gap: 16px;
  }
}

.event_outline_desc_wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.event_outline_desc_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.event_outline_desc_title::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: var(--black-color);
}

/* ---------- artist ---------- */

/* artist_body */
.artist_body {
  font-family: "Zen Maru Gothic", sans-serif;
}

/* artist_header */
.artist_body .l_header {
  color: var(--black-color);
  font-size: 20px;
  height: 60px;
}

.artist_body .l_header.default-color {
  color: var(--white-color);
  background-color: transparent !important;
}

@media screen and (max-width: 450px) {
  .artist_body .l_header {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 450px) {
  .artist_body .l_header.default-color {
    color: var(--black-color);
  }
}

.artist_body .l_header-nav_link_text {
  font-size: 20px;
}

.l_header-logo.__artist {
  position: absolute;
  margin-left: 32px;
  margin-top: 32px;
}

@media screen and (max-width: 450px) {
  .l_header-logo.__artist {
    margin-left: 16px;
    margin-top: 16px;
  }
}

.artist_logo_img_wrapper {
  width: 75px;
  transition: 0.7s;
}

@media screen and (max-width: 450px) {
  .artist_logo_img_wrapper {
    width: 55px;
  }
}

.artist_logo_img_wrapper:hover {
  opacity: 0.7;
}

.artist_body .l_header-sns-icon_img {
  filter: brightness(0) saturate(0%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(0%) contrast(100%);
}

.artist_body .l_header.default-color .l_header-nav .l_header-sns-icon_img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(2%)
    hue-rotate(18deg) brightness(112%) contrast(100%);
}

@media screen and (max-width: 450px) {
  .artist_body .l_header-sns-icon_img {
    filter: brightness(0) saturate(0%) invert(0%) sepia(0%) saturate(0%)
      hue-rotate(0deg) brightness(0%) contrast(100%) !important;
  }
}

@media screen and (max-width: 450px) {
  .artist_body .l_header-nav_list {
    background-color: var(--white-color);
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 32px 0;
    width: 100vw;
    height: auto;
  }
}

.artist_body .l_header-sns-icons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

@media screen and (max-width: 450px) {
  .artist_body .l_header-sns-icons {
    background-color: var(--white-color);
    align-items: center;
    justify-content: center;
    gap: 0 16px;
    width: 100vw;
  }
}

@media screen and (max-width: 450px) {
  .artist_body .m_hamburger {
    display: block;
    width: 20px;
    height: 16px;
    position: absolute;
    z-index: var(--z-index-menu);
    right: 16px;
  }
}

.artist_body .m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--white-color);
  left: 50%;
  transition: 0.2s;
  border-radius: 4px;
}

@media screen and (max-width: 450px) {
  .artist_body .js_hamburger.is-active .m_hamburger-bar {
    background: var(--black-color);
  }
}

/* artist_kv */
.artist_kv {
  max-height: 650px;
  display: grid;
}

@media screen and (max-width: 450px) {
  .artist_kv {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

.artist_kv_img {
  height: 650px;
  object-fit: cover;
  grid-area: 1/-1;
  min-height: 0;
}

@media screen and (max-width: 450px) {
  .artist_kv_img {
    aspect-ratio: 1 / 1;
    height: auto;
  }
}

/* artist_section1 */
.artist_section1.l_section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 450px) {
  .artist_section1.l_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.artist_section1_content_wrapper {
  max-width: 740px;
  margin: 0 auto;
}

@media screen and (max-width: 450px) {
  .artist_section1_content_wrapper {
    padding: 0 16px;
  }
}

.artist_section1_heading {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.12em;
  max-width: 740px;
}

@media screen and (max-width: 450px) {
  .artist_section1_heading {
    font-size: 20px;
  }
}

.artist_section1_text {
  margin-top: 36px;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .artist_section1_text {
    font-size: 14px;
  }
}

/* artist_section2 */
.artist_section2_wrapper {
  margin-top: 40px;
  background: url(../img/artist_section2_bg_img.png) no-repeat center center;
  background-size: auto 100%;
  min-height: 1000px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 450px) {
  .artist_section2_wrapper {
    min-height: 600px;
    margin-top: 0px;
  }
}

.artist_section2 {
  max-width: 784px;
  margin: 0 auto;
}

.artist_section2_copy_wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 80px;
  position: relative;
}

@media screen and (max-width: 450px) {
  .artist_section2_copy_wrapper {
    gap: 40px;
  }
}

.artist_section2_main-copy,
.artist_section2_sub-copy {
  writing-mode: vertical-rl;
}

.artist_section2_main-copy {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.6rem;
  text-indent: -2.6em;
  line-height: 1.8em;
  position: relative;
}

@media screen and (max-width: 450px) {
  .artist_section2_main-copy {
    font-size: 16px;
    letter-spacing: 0.35rem;
  }
}

.artist_section2_sub-copy {
  line-height: 2em;
  font-size: 24px;
  margin-top: 90px;
  letter-spacing: 0.4rem;
}

@media screen and (max-width: 450px) {
  .artist_section2_sub-copy {
    font-size: 16px;
    letter-spacing: 0.35rem;
  }
}

.artist_section2_figure_wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -106px;
  right: -52%;
}

@media screen and (max-width: 450px) {
  .artist_section2_figure_wrapper {
    width: 140px;
    height: 140px;
    bottom: 10px;
    right: -24%;
  }
}

@media screen and (max-width: 376px) {
  .artist_section2_figure_wrapper {
    width: 100px;
    height: 100px;
    bottom: 24px;
    right: -10%;
  }
}

/* artist_section3 */
.artist_section3_wrapper {
  margin-top: 80px;
  background: url(../img/artist_section3_bg_img.jpg) no-repeat center center;
  background-size: cover;
  aspect-ratio: 500 / 223;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .artist_section3_wrapper {
    aspect-ratio: 4 / 3;
  }
}

.artist_section3 {
  max-width: 784px;
  margin: 0 auto;
}

.artist_section3_text_wrapper {
  color: var(--white-color);
  text-align: center;
  display: flex;
  flex-flow: column;
  gap: 32px;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 900px) {
  .artist_section3_text_wrapper {
    gap: 20px;
  }
}

@media screen and (max-width: 376px) {
  .artist_section3_text_wrapper {
    gap: 12px;
  }
}

.artist_section3_title {
  font-size: 32px;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 900px) {
  .artist_section3_title {
    font-size: 24px;
  }
}

@media screen and (max-width: 450px) {
  .artist_section3_title {
    font-size: 16px;
  }
}

.artist_section3_desc1,
.artist_section3_desc2 {
  font-size: 24px;
}

@media screen and (max-width: 900px) {
  .artist_section3_desc1,
  .artist_section3_desc2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .artist_section3_desc1,
  .artist_section3_desc2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 376px) {
  .artist_section3_desc1,
  .artist_section3_desc2 {
    letter-spacing: 0.07rem;
  }
}

.artist_section3_desc1 {
  font-weight: 500;
}

.artist_section3_desc2 {
  line-height: 1.8em;
}

/* artist_menu */
@media screen and (max-width: 900px) {
  .artist_menu {
    padding-bottom: 40px;
  }
}

.artist_menu_list {
  margin: 32px auto 0;
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 54px 40px;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .artist_menu_list {
    padding: 0 16px;
    gap: 32px 30px;
  }
}

.artist_menu_list_item {
  display: flex;
  gap: 8px;
  flex-direction: column;
  width: calc((100% - 80px) / 3);
}

@media screen and (max-width: 900px) {
  .artist_menu_list_item {
    width: calc((100% - 60px) / 2);
    gap: 4px;
  }
}

.artist_menu_list_item_desc {
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  .artist_menu_list_item_desc {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}

.artist_menu_list_item_desc.__price {
  color: var(--gray-color);
}

.artist_menu_button_wrapper {
  margin-top: 40px;
}

.artist_menu_button {
  letter-spacing: 0.1em;
  color: var(--black-color);
  font-weight: 400;
  border: 1px solid var(--black-color);
  display: flex;
  position: relative;
  box-sizing: border-box;
  max-width: 400px;
  text-align: center;
  padding: 16px 32px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .artist_menu_button {
    max-width: 320px;
  }
}

.artist_menu_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: var(--black-color);
  transition: all 0.3s ease;
}

@media screen and (max-width: 450px) {
  .artist_menu_button::after {
    width: 40px;
    right: -15px;
  }
}

.artist_menu_button:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}

.artist_menu_button_icon {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 450px) {
  .artist_menu_button_icon {
    width: 24px;
    height: 24px;
  }
}

@keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }

  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }

  50.1% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

/* artist_banner */
.artist_banner_wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  max-height: 350px;
  transition: 0.2s;
  aspect-ratio: 27500 / 7873;
}

.artist_banner_wrapper:hover {
  opacity: 0.8;
}

@media screen and (max-width: 450px) {
  .artist_banner_wrapper {
    height: 180px;
    margin-top: 0px;
  }
}

.artist_banner_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 450px) {
  .artist_banner_img {
    object-fit: cover;
  }
}

/* js */
.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

@media screen and (max-width: 450px) {
  .js_navigation {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
  }
}

.js_hamburger.is-active {
  background-color: var(--white-color);
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

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

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}
