@charset "UTF-8";

.wrap {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media only screen and (max-width: 767px) {
  .wrap {
    display: block;
  }
}

/* =======================================

  Main Visual

======================================= */
.mv_wrapper {
  width: 50%;
  height: 100vh;
  margin-top: 70px;
  position: fixed;
  background: #080002;
  background-image: url(/media/main_visual_bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  z-index: 1;
}

.mv_wrapper::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url(/media/mv_bg_horizontal_stripes_c.svg);
  background-size: auto 5px;
  background-position: left;
  background-repeat: repeat-y;
  opacity: 0.1;
  z-index: 2;
}

.main_visual {
  width: 100%;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  .mv_wrapper {
    width: 100%;
    height: 100%;
    padding-top: 80px;
    position: relative;
    background-size: contain;
    background-position: center 60px;
  }

  .main_visual {
    object-position: center;
  }
}

/* =======================================

  Contents Area

======================================= */
main {
  width: 50%;
  margin-top: 70px;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  main {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}

.inner {
  width: 90%;
  max-width: 506px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.img_mark {
  width: 120px;
  height: 120%;
  margin-bottom: 30px;
}

.title_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.title_wrapper h2 {
  font-size: 2rem;
  letter-spacing: 0.025em;
}

.title_wrapper p {
  line-height: 1;
  font-family: sans-serif;
  font-size: 1.4rem;
}

.caution_statement_txt_area {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #767676;
  color: #c30d23;
  text-align: center;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.caution_statement_txt_area .ch {
  font-size: 1.1rem;
}

.statement_txt_area {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #767676;
  text-align: center;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.statement_txt_area .ch {
  font-size: 1.1rem;
}


/* アコーディオン */
.accordion_wrapper {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.accordion {
  width: 100%;
  border: solid #7676763b;
  border-width: 0 0 0.5px;
  background: #FFF;
  transition: 0.3s ease-out;
}

.accordion:first-child {
  border-width: 0.5px 0;
}

.accordion[open] .toggle_arrow {
  transform: rotate(180deg);
}

.accordion_trigger {
  padding: 20px 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  letter-spacing: 0.025em;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) {
  .accordion_trigger:hover {
    opacity: 0.6;
  }
}

.toggle_arrow {
  position: relative;
  display: inline-block;
  width: 11.3px;
  height: 8.4px;
  transition: 0.3s ease-out;
}

.toggle_arrow::before,
.toggle_arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - .5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - .5px);
}

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

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

.accordion_target {
  background: #FFF;
  overflow: hidden;
}

.accordion_target_inner {
  margin: 8px 40px 40px;
}

.country_link_ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.country_link_ul .ch {
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
}

.country_link_ul .kr {
  font-family: "Noto Serif KR", serif;
  font-size: 1.6rem;
}

.country_link_ul a {
  padding-left: 30px;
  position: relative;
  text-decoration: none;
  color: #231815;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) {
  .country_link_ul a:hover {
    opacity: 0.6;
  }
}

.country_link_ul a::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: calc(50% - 0.325em);
  display: inline-block;
  background: url(/media/icon_purchase.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Regional websites */
.regional_websites_area {
  width: 100%;
  margin-top: 88px;
}

.regional_websites_area .country_link_ul {
  gap: 16px;
}

.regional_websites_area .cont_wrapper {
  width: 100%;
  margin-top: 16px;
  padding: 50px 40px;
  border-top: 1px solid #7676763b;
}

/* sns_area*/
.sns_area {
  width: auto;
  display: inline-flex;
  flex-flow: row nowrap;
  gap: 0;
  justify-content: center;

  li {
    width: 60px;
    height: 50px;
    text-align: center;
    a {
      display: block;
      width: 100%;
      height: 100%;
      padding: 10px;
      transition: all 0.3s ease-in-out;
      img {
        height: 100%;
        width: auto;
      }

      &:hover {
        opacity: 0.5;
      }
    }
  }

}