@charset "UTF-8";
/* @use 'variables' as *; */
:root {
  --main_distance: min(180px, 18vw);
  --main_gap: clamp(12px, 2vw, 20px);
  --wrap_width: calc(92% - var(--frame_padding) * 4);
  --base_font_size: clamp(13px, 2vw, 15px);
  --base_line_height: 1.7em;
  --border_radius: clamp(10px, 1.5vw, 15px);
}

@media only screen and (max-width: 835px) {
  :root {
    --wrap_width: calc(92% - var(--frame_padding) * 2);
  }
}
/*----------------------------------------
	base
------------------------------------------*/
html.html_reset {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  text-align: center;
  color: #232323;
  font-family: "Shippori Mincho", serif;
  font-size: var(--base_font_size);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: var(--base_line_height);
  word-break: break-word;
}

.fixed-background {
  width: 100%;
  height: calc(1357 / 1920 * 100vw);
  background: url(../images/webp/ookami02-common-bg02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  inset: 0;
  z-index: -1;
  height: 100dvh;
}
@media screen and (max-width: 835px) {
  .fixed-background {
    background: url(../images/webp/ookami02-common-bg02-sp.webp);
  }
}

main {
  position: relative;
  overflow: clip;
}

a {
  color: #34bdb5;
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 835px) {
  body {
    overflow: hidden;
    min-height: 100%;
  }
  body.scroll_on {
    overflow-y: scroll;
    overflow-x: hidden;
    pointer-events: auto;
  }
}
/*----------------------------------------
	switch
------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 835px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/*----------------------------------------
	loading / opening animation
------------------------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #ff7c8a;
  z-index: 20000;
}
#loading.is_loaded {
  display: none;
}
#loading.open {
  -webkit-animation: fade_out 1s forwards;
  animation: fade_out 1s forwards;
  pointer-events: none;
}
#loading .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, 50%);
}
#loading .logo img {
  width: 100%;
}

/*----------------------------------------
	common class
------------------------------------------*/
.disactive {
  pointer-events: none;
}

.scroll_bar_delete {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll_bar_delete::-webkit-scrollbar {
  display: none;
}

/* wrap settings
-------------------------------*/
.wrap_500px {
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  width: var(--wrap_width);
}

.wrap_600px {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  width: var(--wrap_width);
}

.wrap_700px {
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  width: var(--wrap_width);
}

.wrap_800px {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: var(--wrap_width);
}

.wrap_900px {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  width: var(--wrap_width);
}

.wrap_1000px {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  width: var(--wrap_width);
}

.wrap_1050px {
  position: relative;
  margin: 0 auto;
  max-width: 1050px;
  width: var(--wrap_width);
}

.wrap_1100px {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  width: var(--wrap_width);
}

.wrap_1130px {
  position: relative;
  margin: 0 auto;
  max-width: 1130px;
  width: var(--wrap_width);
}

.wrap_1200px {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: var(--wrap_width);
}

.wrap_1300px {
  position: relative;
  margin: 0 auto;
  max-width: 1300px;
  width: var(--wrap_width);
}

.wrap_1400px {
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  width: var(--wrap_width);
}

.wrap_1500px {
  position: relative;
  margin: 0 auto;
  max-width: 1500px;
  width: var(--wrap_width);
}

.wrap_1600px {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
  width: var(--wrap_width);
}

.wrap_1700px {
  position: relative;
  margin: 0 auto;
  max-width: 1700px;
  width: var(--wrap_width);
}

.wrap_1800px {
  position: relative;
  margin: 0 auto;
  max-width: 1800px;
  width: var(--wrap_width);
}

/* common parts
-------------------------------*/
#fixed_ticket_link {
  --fixed_ticket_link_size: clamp(110px, 16vw, 270px);
  position: fixed;
  z-index: 900;
  bottom: 65px;
  right: 50px;
  width: var(--fixed_ticket_link_size);
  height: var(--fixed_ticket_link_size);
  cursor: pointer;
  transform: translate(10%, 16%);
  transition: 0.2s;
}
@media screen and (max-width: 835px) {
  #fixed_ticket_link {
    bottom: 30px;
    right: 22px;
  }
}
/* #fixed_ticket_link::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url(../images/svg/fixed_ticket_btn_bg.svg);
  background-size: contain;
  -webkit-animation: rotation 60s linear infinite;
  animation: rotation 60s linear infinite;
} */
#fixed_ticket_link img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#fixed_ticket_link:hover {
  transform: translate(8%, 14%);
}
#fixed_ticket_link.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(20%, 26%);
  pointer-events: none;
}

@media only screen and (max-width: 835px) {
  #fixed_ticket_link.fv_scroll_hide {
    transform: translate(12%, 18%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  #fixed_ticket_link.fv_scroll_hide.fv_scroll_show {
    transform: translate(10%, 16%);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #fixed_ticket_link.fv_scroll_hide.fv_scroll_show:hover {
    transform: translate(8%, 14%);
  }
  #fixed_ticket_link.fv_scroll_hide.fv_scroll_show.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(20%, 26%);
    pointer-events: none;
  }
}
.cmn_in_page_main {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: calc(var(--main_distance) * 0.8) 0 calc(var(--main_distance) * 1);
  padding: calc(var(--main_distance) * 1.3) 0 calc(var(--main_distance) * 1);
}

@media only screen and (max-width: 835px) {
  .cmn_in_page_main {
    padding: calc(var(--main_distance) * 1.2) 0 calc(var(--main_distance) * 1.2);
  }
}
.cmn_top_section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.cmn_top_section.type_1 {
  padding: calc(var(--main_distance) * 0.8) 0 calc(var(--main_distance) * 1);
  padding: calc(var(--main_distance) * 0.8) 0 0;
}
.cmn_top_section.type_2 {
  padding: calc(var(--main_distance) * 1.1) 0 calc(var(--main_distance) * 0.4);
}

.cmn_top_section_inner {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

:root {
  --cmn_section_bg_type2_wave_h: clamp(100px, 10vw, 160px);
}

.cmn_bg_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cmn_bg_layer.cmn_bg_type_1 .back_wave {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%);
  width: 100%;
  height: min(700px, 90%);
}
.cmn_bg_layer.cmn_bg_type_1 .back_wave::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cmn_bg_layer.cmn_bg_type_1 .parts_sakura_tr {
  position: absolute;
  top: 0;
  right: 0;
  width: min(690px, 40%);
  height: min(700px, 100%);
  transform: translateY(-20%);
}
.cmn_bg_layer.cmn_bg_type_1 .parts_sakura_tr::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: no-repeat top right
    url(../images/webp/ookami02-bg_type1_sakura_tr.webp);
  background-size: contain;
}
.cmn_bg_layer.cmn_bg_type_1 .parts_sakura_bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(600px, 37%);
  height: min(700px, 100%);
  transform: translateY(20%);
}
.cmn_bg_layer.cmn_bg_type_1 .parts_sakura_bl::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat bottom left
    url(../images/webp/ookami02-bg_type1_sakura_bl.webp);
  background-size: contain;
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% + var(--cmn_section_bg_type2_wave_h));
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main span {
  position: absolute;
  display: block;
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main .wave_top,
.cmn_bg_layer.cmn_bg_type_2 .bg_main .wave_bottom {
  width: 100%;
  height: var(--cmn_section_bg_type2_wave_h);
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main .wave_top {
  top: 0;
  left: 0;
  background: repeat-x center bottom
    url(../images/svg/bg_type2_back_wave_top.svg);
  background-size: contain;
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main .center {
  top: calc(var(--cmn_section_bg_type2_wave_h) - 1px);
  left: 0;
  width: 100%;
  height: calc(100% - var(--cmn_section_bg_type2_wave_h) * 1 + 2px);
  background-color: #ff95a2;
}
.cmn_bg_layer.cmn_bg_type_2 .bg_main .wave_bottom {
  bottom: 0;
  left: 0;
  background: repeat-x center top
    url(../images/svg/bg_type2_back_wave_bottom.svg);
  background-size: contain;
  transform: translateY(100%);
}
.cmn_bg_layer.cmn_bg_type_2 .bg_typo {
  position: absolute;
  top: calc(50% + var(--cmn_h_title_size) / 2);
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 70%;
}
.cmn_bg_layer.cmn_bg_type_2 .bg_typo::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeat-x center url(../images/svg/bg_type2_back_typo.svg);
  background-size: auto 100%;
}
.cmn_bg_layer.cmn_bg_type_2 .petals_tr {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 40%);
  height: min(900px, 100%);
  transform: translateY(-40%) translateX(2%);
}
.cmn_bg_layer.cmn_bg_type_2 .petals_tr::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: no-repeat top right url(../images/svg/bg_type2_sakura_tr.svg);
  background-size: contain;
}
.cmn_bg_layer.cmn_bg_type_2 .petals_bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(400px, 40%);
  height: min(900px, 100%);
  transform: translateY(50%) translateX(-2%);
}
.cmn_bg_layer.cmn_bg_type_2 .petals_bl::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat bottom left url(../images/svg/bg_type2_sakura_bl.svg);
  background-size: contain;
}

@media only screen and (max-width: 835px) {
  .cmn_bg_layer.cmn_bg_type_1 .back_wave {
    height: min(500px, 90%);
  }
  .cmn_bg_layer.cmn_bg_type_1 .parts_sakura_tr {
    width: min(600px, 60%);
    height: min(400px, 90%);
  }
  .cmn_bg_layer.cmn_bg_type_1 .parts_sakura_bl {
    width: min(600px, 60%);
    height: min(400px, 90%);
  }
  .cmn_bg_layer.cmn_bg_type_2 .bg_typo::before {
    background-position: -10% center;
    background-repeat: repeat;
    background-size: auto min(300px, 100%);
  }
  .cmn_bg_layer.cmn_bg_type_2 .petals_tr {
    width: min(600px, 60%);
    height: min(400px, 90%);
    transform: translateY(-30%) translateX(10%);
  }
  .cmn_bg_layer.cmn_bg_type_2 .petals_bl {
    width: min(600px, 60%);
    height: min(400px, 90%);
    transform: translateY(40%) translateX(-15%);
  }
}
.cmn_main_layer {
  position: relative;
}

:root {
  --cmn_h_title_size: min(170px, 16vw);
}

.cmn_h_title_outer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--wrap_width);
  height: auto;
  max-width: 1500px;
  margin: 0 auto calc(var(--cmn_h_title_size) * 0.6);
}

.cmn_h_title {
  position: relative;
  display: block;
  width: auto;
  height: var(--cmn_h_title_size);
  margin-left: -30px;
  z-index: 10;
}
.cmn_h_title span {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
}
.cmn_h_title span img {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
}
.cmn_h_title.size_row2 {
  height: calc(var(--cmn_h_title_size) * 1.38);
}

.cmn_section_title_a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
  color: #ff7c8a;
  text-align: center;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.2em;
  padding: 0.7em;
  margin-bottom: calc(var(--main_gap) * 0.5);

  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: 0.32px;
  /* position: relative; */
  background-image: url(../images/webp/ookami02-button-background.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 835px) {
  .cmn_section_title_a {
    padding: 0.5em;
  }
}

.cmn_section_title_a .main {
  font-weight: 700;
}
@media screen and (max-width: 835px) {
  .cmn_section_title_a .main {
    color: #fff;
    font-family: "Shippori Mincho";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 31.2px */
    letter-spacing: 0.24px;
  }
}
.cmn_section_title_a .sub {
  font-size: 0.5em;
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: 700;
}
@media screen and (max-width: 835px) {
  .cmn_section_title_a .sub {
    color: #fff;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 18.2px */
    letter-spacing: 0.14px;
  }
}
.cmn_link_btn_more {
  position: relative;
  display: block;
  width: min(280px, 35vw);
  height: min(280px, 35vw);
}
.cmn_link_btn_more.type_h_title {
  width: calc(var(--cmn_h_title_size) * 1.4);
  height: calc(var(--cmn_h_title_size) * 1.4);
}
.cmn_link_btn_more::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url(../images/svg/link_btn_more_circle.svg);
  background-size: contain;
  transition: 0.2s;
}
.cmn_link_btn_more::after {
  position: absolute;
  display: block;
  content: "";
  top: 0%;
  right: 0;
  width: 22%;
  height: 100%;
  background: no-repeat center right url(../images/svg/link_btn_more_arrow.svg);
  background-size: contain;
  transform: translate(40%, 0%);
  pointer-events: none;
  transition: 0.2s;
}
.cmn_link_btn_more img {
  position: relative;
  display: block;
  width: auto;
  height: 100%;
}
.cmn_link_btn_more:hover::before {
  transform: scale(1.05);
}
.cmn_link_btn_more:hover::after {
  transform: translate(60%, 0%);
}

.cmn_link_btn_more_sp_outer {
  position: relative;
  display: flex;
  justify-content: center;
}

.cmn_link_btn_a {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.5em 1em 0.6em;
  padding-right: 3.5em;
  height: auto;
  width: auto;
  min-width: min(380px, 100%);
  background-color: #34bdb5;
  line-height: 1em;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: clamp(17px, 4.5vw, 26px);
  text-decoration: initial !important;
  text-align: left;
  border: 1px solid #fff;
  transition: 0.2s;
}
.cmn_link_btn_a img {
  position: relative;
  height: 1.4em;
  width: auto;
}
.cmn_link_btn_a span {
  position: relative;
}
.cmn_link_btn_a span.main {
  font-family: YakuHanJP, "Noto Serif Display", "Shippori Mincho",
    "Noto Sans JP", "Noto Sans", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
}
.cmn_link_btn_a span.sub {
  font-family: YakuHanJP, "Zen Maru Gothic", "Noto Sans JP", "Noto Sans",
    "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 0.6em;
  line-height: 1.4em;
}
.cmn_link_btn_a::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background: no-repeat top left url(../images/svg/parts_corener_type1_w.svg);
  background-size: contain;
}
.cmn_link_btn_a::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 3em;
  height: 100%;
  transform: translate(50%, -10%);
  background: no-repeat center url(../images/svg/parts_link_arrow_r.svg);
  background-size: contain;
  transition: 0.2s;
}
.cmn_link_btn_a:hover {
  background-color: #ff7c8a;
  /* &::before {transform-origin: left top; transform: scale(1,1);} */
}
.cmn_link_btn_a:hover::after {
  transform: translate(60%, -10%);
}
.cmn_link_btn_a.type_back {
  text-align: right;
  padding: 0.5em 1em 0.6em;
  padding-left: 3.5em;
}
.cmn_link_btn_a.type_back::after {
  right: initial;
  left: 0;
  transform: translate(-50%, -10%);
  background-image: url(../images/svg/parts_link_arrow_l.svg);
}
.cmn_link_btn_a.type_back:hover {
  background-color: #ff7c8a;
}
.cmn_link_btn_a.type_back:hover::after {
  transform: translate(-60%, -10%);
}
.cmn_link_btn_a.w_100 {
  width: 100%;
}
.cmn_link_btn_a.margin_t {
  margin-top: calc(var(--main_distance) / 2);
}
.cmn_link_btn_a.disactive {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
}

.cmn_link_btn_b {
  position: relative;
  display: inline-block;
  padding: 0.7em 1.2em 0.8em;
  height: auto;
  width: auto;
  min-width: min(300px, 100%);
  background-color: #ff7c8a;
  line-height: 1em;
  font-weight: 700;
  text-decoration: initial !important;
  text-align: center;
  border-radius: 9999px;
  transition: 0.2s;

  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: #d7ba64;
  border: 1px solid transparent;
}
.cmn_link_btn_b:hover {
  background-color: #fff;
  color: #d7ba64;
  border: 1px solid #d7ba64;
}
.cmn_link_btn_b.disactive {
  pointer-events: none;
  /* filter: grayscale(1);
  opacity: 0.5; */
  background: #bdc3cd;
}

.cmn_inpage_back_btn_outer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
  margin-top: calc(var(--main_distance) / 2);
}

@media only screen and (max-width: 835px) {
  .cmn_inpage_back_btn_outer {
    margin-top: calc(var(--main_distance) / 1);
  }
}

.cmn_lang_switch {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: calc(var(--main_gap) * 2);
}
.cmn_lang_switch .switch_outer {
  position: relative;
  display: inline-block;
  margin-left: auto;
  width: auto;
  height: auto;
  gap: 0.4em;
  background-color: #fff;
  border-radius: 9999px;
  padding: 0.4em;
}
@media screen and (max-width: 835px) {
  .cmn_lang_switch .switch_outer {
    padding: 0.6em;
  }
}
.cmn_lang_switch .switch {
  display: inline-block;
  color: #41307c;
  font-weight: bold;
  font-size: clamp(15px, 2vw, 16px);
  font-weight: bold;
  line-height: 1.4em;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 0.2em 1.5em 0.3em;
  transition: 0.2s;
}
.cmn_lang_switch .switch.now,
.cmn_lang_switch .switch:hover {
  background-color: #41307c;
  color: #fff;
  border: 1px solid #41307c;
}

/* accordion
-------------------------------*/
.cmn_accordion_box .cmn_accordion_trigger {
  cursor: pointer;
}
.cmn_accordion_box .cmn_accordion_content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease;
}
.cmn_accordion_box .cmn_accordion_content.accordion_open {
  height: auto;
}

/* white box
-------------------------------*/
.cmn_white_box_outer {
  position: relative;
  display: block;
  padding: calc(var(--main_gap) * 2.5) calc(var(--main_gap) * 2.5)
    calc(var(--main_gap) * 1.4);
  margin-bottom: calc(var(--main_gap) * 2);
  background-color: #fff;
  /* border-radius: var(--border_radius); */
}

@media only screen and (max-width: 835px) {
  .cmn_white_box_outer {
    padding: calc(var(--main_gap) * 1.6) calc(var(--main_gap) * 1.1);
  }
}
.cmn_white_box {
  position: relative;
  text-align: left;
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.6em;
  width: 100%;
}
.cmn_white_box .title_box {
  position: relative;
  display: block;
  padding-bottom: calc(clamp(18px, 2vw, 22px) * 1);
  margin-bottom: 2em;
  border-bottom: 4px double #ff7c8a;
}
.cmn_white_box .date {
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.4em;
  font-weight: bold;
  margin-bottom: 0.7em;
  letter-spacing: 0.1em;
}
.cmn_white_box .title {
  position: relative;
  display: block;
  width: 100%;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.4em;
  font-weight: bold;
  color: #ff7c8a;
  font-family: YakuHanJP, "Zen Maru Gothic", "Noto Sans JP", "Noto Sans",
    "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 1.5vw, 22px);
}
.cmn_white_box .border_box {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #000;
  border: 1px solid #ff7c8a;
  padding: min(var(--main_gap) * 2, 5vw) min(var(--main_gap) * 2, 4vw);
  margin-bottom: 1.5em;
}
.cmn_white_box iframe {
  width: 100%;
}
.cmn_white_box figure {
  margin-bottom: 14px;
}
.cmn_white_box img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.cmn_white_box img.app_badge {
  width: 170px !important;
  padding-top: 5px;
}
.cmn_white_box p {
  line-height: 1.7em;
}
.cmn_white_box a {
  overflow-wrap: break-word;
  text-decoration: underline;
  font-weight: bold;
}
.cmn_white_box ul {
  margin-bottom: 1em;
}
.cmn_white_box ul li {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
}
.cmn_white_box ul li::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  transform: translateY(0.3em) scale(0.4);
  background-color: #201642;
  border-radius: 9999px;
}
.cmn_white_box ul li:last-of-type {
  margin-bottom: 0;
}
.cmn_white_box hr {
  border-top: 1px solid #d7ba64;
  border-right: none;
  border-bottom: none;
  border-left: none;
  margin-bottom: 2em;
  margin-top: 2em;
}
.cmn_white_box strong {
  font-weight: 900;
  color: #bda355;
}
.cmn_white_box .youtube_iframe_outer {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 1em;
  overflow: hidden;
}
.cmn_white_box .youtube_iframe_outer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cmn_white_box.single h2,
.cmn_white_box.in_page h3 {
  /* position: relative;
  display: block;
  padding-bottom: 0.4em;
  padding-left: 1.4em;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: bold;
  margin-top: 2em;
  line-height: 1.4em; */
  /* border-bottom: 1px solid #ff7c8a;
  border-style: dashed;
  border-top: none;
  border-left: none;
  border-right: none; */
  /* color: #ff7c8a;

  color: #bda355;
  font-family: "Shippori Mincho";
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; */
}
/* .cmn_white_box.single h2::before,
.cmn_white_box.in_page h3::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background-color: #d7ba64;
} */
/* .cmn_white_box.single h3,
.cmn_white_box.in_page h4 {
  position: relative;
  display: block;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: bold;
  margin-bottom: 0.7em;
  margin-top: 1.5em;
  line-height: 1.4em;
  padding-left: 0.7em;
  border-left: 3px solid #ff7c8a;
  color: #ff7c8a;
} */
/* .cmn_white_box.single h4,
.cmn_white_box.in_page h5 {
  position: relative;
  display: block;
  margin-top: 1.2em;
  margin-bottom: 0.2em;
  line-height: 1.4em;
  font-weight: bold;
  font-size: 1.1em;
  color: #ff7c8a;
  padding-left: 1.2em;
} */
/* @media screen and (max-width: 835px) {
  .cmn_white_box.single h4,
  .cmn_white_box.in_page h5 {
    margin-top: 1em;
  }
} */
/* .cmn_white_box.single h4::before,
.cmn_white_box.in_page h5::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background-color: #ff7c8a;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
} */

/*-- white box --*/
/*-- notes box --*/
.cmn_notes_box {
  position: relative;
  display: block;
  height: auto;
  padding: calc(var(--main_distance) / 4);
  margin: 0 auto 2em;
  border: 1px solid #232323;
  text-align: left;
  line-height: 1.6em;
  background-color: #232323;
  border: 2px solid #ff7c8a;
}
.cmn_notes_box.simple {
  border: none;
  border-top: 1px solid #ff7c8a;
  border-bottom: 1px solid #ff7c8a;
  padding: calc(var(--main_distance) / 4) 0.5em;
  background-color: transparent;
}
.cmn_notes_box.margin_bottom {
  margin-bottom: calc(var(--main_distance) / 2.5);
}
.cmn_notes_box p {
  margin-bottom: 0.6em;
}
.cmn_notes_box ul {
  margin-bottom: 0.6em;
}
.cmn_notes_box .title {
  position: relative;
  display: block;
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.7em;
  margin-top: 1.5em;
  line-height: 1.4em;
  padding-left: 0.7em;
  border-left: 3px solid #ff7c8a;
}
.cmn_notes_box .title:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 835px) {
  .cmn_notes_box {
    padding: calc(var(--main_distance) / 3) calc(var(--main_distance) / 3);
  }
}
/*-- notes box --*/
/*-- list style --*/
ul.cmn_list_asterisk li,
ul.cmn_list_circle li,
ul.cmn_list_kome li {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
}
ul.cmn_list_asterisk li:last-of-type,
ul.cmn_list_circle li:last-of-type,
ul.cmn_list_kome li:last-of-type {
  margin-bottom: 0;
}
ul.cmn_list_asterisk li {
  padding-left: 0.8em;
  font-size: 0.9em;
  line-height: 1.4em;
}
ul.cmn_list_asterisk li::before {
  position: absolute;
  display: block;
  content: "";
  content: "*";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  transform: translateY(0em);
  color: #ff7c8a;
  background: initial;
}
ul.cmn_list_kome li {
  padding-left: 1.2em;
  font-size: 0.9em;
  line-height: 1.4em;
}
ul.cmn_list_kome li::before {
  position: absolute;
  display: block;
  content: "";
  content: "※";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  transform: translateY(0em);
  color: #ff7c8a;
  background: initial;
}
ul.cmn_list_circle li::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  transform: translateY(0.3em) scale(0.4);
  background-color: #ff7c8a;
  border-radius: 9999px;
}

/*-- list style --*/
/*----------------------------------------
	header
------------------------------------------*/
header .header_logo {
  position: fixed;
  top: calc(var(--frame_padding) * 2.4);
  left: calc(var(--frame_padding) * 2.5);
  width: min(180px, 30vw);
  height: auto;
  z-index: 9999;
  transition: 0.2s;
}
header .header_logo img {
  width: 100%;
  height: auto;
}
header .header_logo:hover {
  filter: brightness(1.5);
}
@media screen and (max-width: 835px) {
  header .header_logo {
    width: min(180px, 18vw);
  }
}

/*----------------------------------------
	navigation
------------------------------------------*/
#global_nav {
  --nav_padding: clamp(36px, 6vw, 50px);
  position: fixed;
  z-index: 80;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: auto;
  height: 100dvh;
  padding: var(--nav_padding);
  padding-right: calc(var(--nav_padding) + var(--frame_padding) * 2);
  transform: translateX(100%);
  pointer-events: none;
  background-color: #384573;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 835px) {
  #global_nav {
    width: 100%;
    padding-right: 0;
  }
}
#global_nav .page_links {
  position: relative;
  text-align: left;
  margin-left: 36px;
  width: 50%;
  margin-right: auto;
}
#global_nav .page_links li a {
  position: relative;
  display: block;

  font-size: 24px;
  line-height: clamp(1.6em, 10vh, 2.9em);
  color: #fff;
  white-space: nowrap;
  padding-left: 1em;
  transform: translateX(30%);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: 26px;
  font-family: "Cinzel Decorative", serif;
  letter-spacing: 1.4px;
}
#global_nav .page_links li a::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 0.7em;
  height: 100%;
  background: no-repeat center url(../images/svg/ookami02-daiya.svg);
  background-size: 100% auto;
  transition: 0.8s ease;
}
#global_nav .page_links li a:hover::before {
  /* transform: rotateZ(360deg) scale(1.2); */
  background: no-repeat center url(../images/svg/ookami02-daiya-right-white.svg);
}
#global_nav.active {
  transform: translateX(0);
  pointer-events: initial;
}
#global_nav.active .page_links li a {
  transform: translateX(0);
  opacity: 1;
}
#global_nav.active .page_links li:nth-of-type(1) a {
  transition-delay: calc(1 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(2) a {
  transition-delay: calc(2 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(3) a {
  transition-delay: calc(3 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(4) a {
  transition-delay: calc(4 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(5) a {
  transition-delay: calc(5 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(6) a {
  transition-delay: calc(6 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(7) a {
  transition-delay: calc(7 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(8) a {
  transition-delay: calc(8 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(9) a {
  transition-delay: calc(9 * 0.05s + 0.05s);
}
#global_nav.active .page_links li:nth-of-type(10) a {
  transition-delay: calc(10 * 0.05s + 0.05s);
}
#global_nav.active .page_links li a:hover {
  transform: translateX(10px);
}

/* nav trigger
-------------------------------*/
:root {
  --nav_trigger_size: clamp(60px, 10vw, 90px);
  --nav_trigger_width_size: clamp(60px, 10vw, 100px);
  --nav_trigger_height_size: clamp(60px, 10vw, 128px);
}

.nav_trigger_outer {
  display: block;
  position: fixed;
  top: calc(var(--frame_padding) * 3);
  right: calc(var(--frame_padding) * 3);
  /* width: var(--nav_trigger_size);
  height: var(--nav_trigger_size); */
  width: 100px;
  height: 128px;
  cursor: pointer;
  border-radius: 9999px;
  z-index: 900;
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer {
    width: 61px;
    height: 81px;
  }
}
.nav_trigger_outer .bg {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nav_trigger_outer .bg::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url(../images/webp/ookami02-nav_trigger_bg.png);
  background-size: contain;
}
.nav_trigger_outer .nav_trigger_bar {
  position: absolute;
  width: 50%;
  height: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  transition: 0.6s;
}
.nav_trigger_outer .nav_trigger_bar span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(0deg);
  /* width: 100%;
  height: clamp(2px, 0.5vw, 3px); */
  height: 7px;
  width: 59px;
  display: block;
  transition: 0.2s;
  background: no-repeat center url(../images/svg/ookami02-drawer-line.svg);
  border-radius: 9999px;
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer .nav_trigger_bar span {
    background: no-repeat center url(../images/svg/ookami02-drawer-line-sp.svg);
    height: 6px;
    width: 36px;
  }
}
.nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(1) {
  top: 20%;
  /* width: 100%; */
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(1) {
    top: 14%;
  }
}
.nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(2) {
  top: 50%;
  /* width: 100%; */
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(2) {
    top: 48%;
  }
}
.nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(3) {
  top: 100%;
  /* width: 100%; */
  /* height: 40%; */
  height: 15px;
  background: no-repeat center url(../images/text/nav_trigger_menu.svg);
  background-size: contain;
  padding-inline: 1.5px;
  width: 100%;
  max-width: 39px;
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer .nav_trigger_bar span:nth-last-of-type(3) {
    background: no-repeat center
      url(../images/svg/ookami02-nav_trigger_menu-sp.svg);
    top: 94%;
    height: 13px;
    width: 35px;
  }
}
.nav_trigger_outer.active .nav_trigger_bar span:nth-last-of-type(1) {
  transform: translate(-50%, -50%) rotateZ(-160deg);
  top: 30%;
}
.nav_trigger_outer.active .nav_trigger_bar span:nth-last-of-type(2) {
  transform: translate(-50%, -50%) rotateZ(160deg);
  top: 30%;
}
.nav_trigger_outer.active .nav_trigger_bar span:nth-last-of-type(3) {
  background: no-repeat center url(../images/svg/ookami02-nav_trigger_close.svg);
  max-width: 39px;
  width: 100%;
  height: 15px;
}
@media screen and (max-width: 835px) {
  .nav_trigger_outer.active .nav_trigger_bar span:nth-last-of-type(3) {
    background: no-repeat center
      url(../images/svg/ookami02-nav_trigger_close-sp.svg);
    height: 13px;
    width: 35px;
  }
}

/*----------------------------------------
	footer
------------------------------------------*/
footer {
  position: relative;
  text-align: center;
  background: no-repeat center url(../images/webp/ookami02-footer-bg02.webp);
  background-size: cover;
  padding: calc(var(--main_distance) * 1) 0;
  border: 5px solid #bca86f;
}
@media screen and (max-width: 835px) {
  footer {
    padding: calc(var(--main_distance) * 1.5) 0;
    border: 3px solid #bca86f;
  }
}
footer::before {
  top: 70px;
}
footer::after {
  top: unset;
  bottom: 34px;
}
footer::before,
footer::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 470px;
  height: 42px;
  background: no-repeat center url(../images/svg/ookami02-footer-daia.svg);
}
@media screen and (max-width: 835px) {
  footer::before {
    top: 50px;
  }
  footer::after {
    top: unset;
    bottom: -4px;
  }
  footer::before,
  footer::after {
    background: no-repeat center url(../images/svg/ookami02-footer-daia-sp.svg);
    max-width: calc(313 / 414 * 100%);
    height: calc(29 / 414 * 100%);
  }
}
.p-footer__title {
  width: 210px;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 835px) {
  .p-footer__title {
    width: 100%;
  }
}
footer .links_outer {
  margin-bottom: calc(var(--main_distance) / 2);
}
footer .link_flex {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
  gap: 12px 3%;
}
footer .link_flex a {
  display: block;
  width: min(180px, 40%);
  height: auto;
  margin: 0;
  transition: 0.2s;
}
footer .link_flex a img {
  width: 100%;
  height: auto;
}
footer .link_flex a:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}
footer .link_flex.large a {
  width: min(180px, 40%);
}
footer .link_flex.medium a {
  width: min(180px, 40%);
}
footer .link_flex.small a {
  width: min(150px, 30%);
}
footer .link_flex.margin_b_0 {
  margin-bottom: 0;
}
footer .sponsor {
  margin-bottom: 2em;
}
footer .sponsor .link_flex {
  margin-bottom: 0;
}
footer .sponsor p {
  font-size: clamp(14px, 2vw, 16px);
  font-family: YakuHanJP, "Zen Maru Gothic", "Noto Sans JP", "Noto Sans",
    "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
}
footer .footer_subsection_title {
  position: relative;
  display: inline-block;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4em;
  margin-bottom: 0.6em;
  font-weight: bold;
  letter-spacing: 0.05em;
}
footer .footer_subsection_title::before,
footer .footer_subsection_title::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  width: min(6em, 20vw);
  height: 1px;
  background-color: #fff;
}
footer .footer_subsection_title::before {
  left: -1em;
  transform: translateX(-100%);
}
footer .footer_subsection_title::after {
  right: -1em;
  transform: translateX(100%);
}
footer p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0.6em;
  font-weight: 500;
}
footer .copywrite {
  display: inline-block;
  font-family: YakuHanJP, "Noto Sans JP", "Noto Sans", "メイリオ", "Meiryo",
    "MS PGothic", sans-serif;
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
  font-family: YakuHanJP, "Zen Maru Gothic", "Noto Sans JP", "Noto Sans",
    "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  color: #fff;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 835px) {
  footer .links_outer {
    margin-bottom: calc(var(--main_distance) / 1.7);
  }
  footer .sponsor .link_flex {
    margin-bottom: calc(var(--main_distance) / 1.7);
  }
}
/* SHARE */
.share {
  width: min(1000px, 100%);
  margin: 0 auto calc(var(--main_distance) / 2);
}
.share .share_box .title {
  font-size: clamp(28px, 2vw, 32px);
  letter-spacing: 0.05em;
  line-height: 1em;
  margin-bottom: 0.6em;
  font-family: YakuHanJP, "Noto Serif Display", "Shippori Mincho",
    "Noto Sans JP", "Noto Sans", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  color: #fff;
}
.share .share_box .title img {
  display: inline-block;
  width: min(270px, 50%);
  height: auto;
}
@media screen and (max-width: 835px) {
  .share .share_box .title img {
    width: unset;
  }
}
.share .share_box .tweet_btn {
  position: relative;
  display: block;
  width: 90%;
  max-width: 380px;
  margin: 0 auto;
  margin-bottom: 1.4em;
  transition: 0.2s;
}
@media screen and (max-width: 835px) {
  .share .share_box .tweet_btn {
    width: 95%;
  }
}
.share .share_box .tweet_btn:hover {
  transform: translateY(-3px);
}
.share .share_box .tweet_btn img {
  width: 100%;
  height: auto;
}
.share .share_box .sns_flex {
  display: flex;
  justify-content: center;
}
.share .share_box .sns_flex a {
  display: block;
  width: 50px;
  margin-right: 20px;
  transition: 0.2s;
}
.share .share_box .sns_flex a:last-of-type {
  margin-right: 0;
}
.share .share_box .sns_flex a:hover {
  transform: translateY(-3px);
}
.share .share_box .sns_flex a img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 835px) {
  .share {
    margin-bottom: calc(var(--main_distance) / 1.4);
  }
  .share .share_box:last-of-type {
    margin-bottom: 0;
  }
  .share .share_box .title {
    margin-bottom: 0.7em;
  }
  .share .share_box .sns_flex a {
    width: 50px;
  }
}
/*----------------------------------------
	frame
------------------------------------------*/
:root {
  --frame_size: clamp(40px, 8vw, 120px);
  --frame_padding: calc(var(--frame_size) / 8);
}

#over_frame {
  position: relative;
  z-index: 9998;
}
#over_frame .corner {
  position: fixed;
  width: var(--frame_size);
  height: var(--frame_size);
}
#over_frame .corner::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: calc(100% - var(--frame_padding) * 1.7);
  height: 1px;
  background-color: #fff;
}
#over_frame .corner::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(100% - var(--frame_padding) * 1.7);
  background-color: #fff;
}
#over_frame .corner span {
  display: block;
}
#over_frame .corner span:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#over_frame .corner span:nth-of-type(1)::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url(../images/svg/frame_corner_line_tl.svg);
  background-size: contain;
}
#over_frame .corner span:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--frame_padding) * 2);
  height: calc(var(--frame_padding) * 2);
  transform: translate(-20%, -20%);
}
#over_frame .corner span:nth-of-type(2)::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center url(../images/svg/parts_sakura_01_white.svg);
  background-size: contain;
  transform: rotateZ(-45deg);
}
#over_frame .corner span:nth-of-type(3),
#over_frame .corner span:nth-of-type(4),
#over_frame .corner span:nth-of-type(5),
#over_frame .corner span:nth-of-type(6) {
  position: absolute;
}
#over_frame .corner span:nth-of-type(3)::before,
#over_frame .corner span:nth-of-type(4)::before,
#over_frame .corner span:nth-of-type(5)::before,
#over_frame .corner span:nth-of-type(6)::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 9999px;
}
#over_frame .corner span:nth-of-type(3),
#over_frame .corner span:nth-of-type(4) {
  width: clamp(3px, var(--frame_padding) / 3, 6px);
  height: clamp(3px, var(--frame_padding) / 3, 6px);
}
#over_frame .corner span:nth-of-type(5),
#over_frame .corner span:nth-of-type(6) {
  width: clamp(1px, var(--frame_padding) / 4, 4px);
  height: clamp(1px, var(--frame_padding) / 4, 4px);
}
#over_frame .corner span:nth-of-type(3) {
  top: 0;
  right: 0;
  transform: translate(50%, -30%);
}
#over_frame .corner span:nth-of-type(4) {
  bottom: 0;
  left: 0;
  transform: translate(-30%, 50%);
}
#over_frame .corner span:nth-of-type(5) {
  top: 0;
  left: calc(var(--frame_padding) * 1.7);
  transform: translate(-50%, -40%);
}
#over_frame .corner span:nth-of-type(6) {
  top: calc(var(--frame_padding) * 1.7);
  left: 0;
  transform: translate(-40%, -50%);
}
#over_frame .corner.tl {
  top: var(--frame_padding);
  left: var(--frame_padding);
}
#over_frame .corner.tr {
  top: var(--frame_padding);
  right: var(--frame_padding);
  transform: rotateZ(90deg);
}
#over_frame .corner.br {
  bottom: var(--frame_padding);
  right: var(--frame_padding);
  transform: rotateZ(180deg);
}
#over_frame .corner.bl {
  bottom: var(--frame_padding);
  left: var(--frame_padding);
  transform: rotateZ(270deg);
}
#over_frame .border span {
  position: fixed;
  display: block;
  background-color: #fff;
}
#over_frame .border span:nth-of-type(1) {
  top: var(--frame_padding);
  left: calc(var(--frame_size) + var(--frame_padding) * 2);
  width: calc(100% - var(--frame_size) * 2 - var(--frame_padding) * 4);
  height: 1px;
}
#over_frame .border span:nth-of-type(2) {
  top: calc(var(--frame_size) + var(--frame_padding) * 2);
  right: var(--frame_padding);
  width: 1px;
  height: calc(100dvh - var(--frame_size) * 2 - var(--frame_padding) * 4);
}
#over_frame .border span:nth-of-type(3) {
  bottom: var(--frame_padding);
  left: calc(var(--frame_size) + var(--frame_padding) * 2);
  width: calc(100% - var(--frame_size) * 2 - var(--frame_padding) * 4);
  height: 1px;
}
#over_frame .border span:nth-of-type(4) {
  top: calc(var(--frame_size) + var(--frame_padding) * 2);
  left: var(--frame_padding);
  width: 1px;
  height: calc(100dvh - var(--frame_size) * 2 - var(--frame_padding) * 4);
}
#over_frame .text {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: max(5px, var(--frame_padding) * 0.6);
  height: 80dvh;
}
#over_frame .text::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#over_frame .text.left {
  left: calc(var(--frame_padding) * 1.7);
}
#over_frame .text.left::before {
  background: no-repeat center url(../images/svg/frame_text_l.svg);
  background-size: contain;
}
#over_frame .text.right {
  right: calc(var(--frame_padding) * 1.7);
}
#over_frame .text.right::before {
  background: no-repeat center url(../images/svg/frame_text_r.svg);
  background-size: contain;
}

/*----------------------------------------
	bg
------------------------------------------*/
#bg_canvas_outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  pointer-events: none;
}
#bg_canvas_outer #petal_canvas {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
}
#bg_canvas_outer.fv_loading {
  z-index: 20001;
}
#bg_canvas_outer.fv_loading.open {
  -webkit-animation: canvas_warp 2s forwards;
  animation: canvas_warp 2s forwards;
}
#bg_canvas_outer.fv_loading.z_initial {
  z-index: initial;
}

@media only screen and (max-width: 835px) {
  #bg_canvas_outer {
    height: calc(var(--vh, 1vh) * 110);
  }
}
#in_page_bg .back_wave {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: min(700px, 90%);
}
#in_page_bg .back_wave::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeat center url(../images/svg/bg_type1_back_texture.svg);
  background-size: clamp(50px, 10vw, 100px);
  -webkit-mask-image: url(../images/svg/bg_type1_back_clip.svg);
  mask-image: url(../images/svg/bg_type1_back_clip.svg);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: max(800px, 100%) 100%;
  mask-size: max(800px, 100%) 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
#in_page_bg .parts_sakura_tr {
  position: fixed;
  top: 0;
  right: 0;
  width: min(600px, 37%);
  height: 100%;
}
#in_page_bg .parts_sakura_tr::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: no-repeat top right
    url(../images/webp/ookami02-bg_type1_sakura_tr.webp);
  background-size: contain;
}
#in_page_bg .parts_sakura_bl {
  position: fixed;
  bottom: 0;
  left: 0;
  width: min(600px, 37%);
  height: 100%;
}
#in_page_bg .parts_sakura_bl::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat bottom left
    url(../images/webp/ookami02-bg_type1_sakura_bl.webp);
  background-size: contain;
}
#in_page_bg .petals_tr {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 40%);
  height: 100%;
  transform: translateY(-20%) translateX(2%);
}
#in_page_bg .petals_tr::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: no-repeat top right url(../images/svg/bg_type2_sakura_tr.svg);
  background-size: contain;
}
#in_page_bg .petals_bl {
  position: fixed;
  bottom: 0;
  left: 0;
  width: min(400px, 40%);
  height: 100%;
  transform: translateY(10%) translateX(-2%);
}
#in_page_bg .petals_bl::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat bottom left url(../images/svg/bg_type2_sakura_bl.svg);
  background-size: contain;
}

@media only screen and (max-width: 835px) {
  #in_page_bg .back_wave {
    height: min(500px, 90%);
  }
  #in_page_bg .parts_sakura_tr {
    width: min(600px, 60%);
  }
  #in_page_bg .parts_sakura_bl {
    width: min(600px, 60%);
  }
  #in_page_bg .petals_tr {
    width: min(600px, 40%);
    transform: translateY(-10%) translateX(2%);
  }
  #in_page_bg .petals_bl {
    width: min(600px, 40%);
    transform: translateY(10%) translateX(-2%);
  }
}
/*----------------------------------------
	modal
------------------------------------------*/
/* ---- modal layer ---- */
.modal_layer {
  --modal_btn_size: clamp(50px, 5vw, 70px);
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 11000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
}
.modal_layer .modal_bg {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.modal_layer .modal_inner {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: left;
}
.modal_layer .modal_inner img {
  width: auto;
  height: auto;
  max-width: min(1400px, 94vw);
  max-height: 75vh;
}
.modal_layer .modal_inner .yt_video_box {
  width: min(1200px, 94vw);
  padding-top: min(90vh, 56.25%);
}
.modal_layer .modal_inner .yt_video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal_layer .modal_inner .yt_video_box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.modal_layer .modal_inner .modal_textbox {
  width: min(1000px, 94vw);
  height: 75vh;
  background-color: #fcfcfc;
  padding: clamp(12px, 4vw, 50px);
  text-align: left;
  overflow: hidden;
  font-size: clamp(13px, 2vw, 16px);
}
.modal_layer .modal_inner .modal_textbox.scrollable {
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.modal_layer .modal_close_btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: var(--modal_btn_size);
  height: var(--modal_btn_size);
  background: no-repeat center url("../images/svg/cmn_parts/btn_close_v03.svg");
  background-size: contain;
  cursor: pointer;
  background-image: url(../images/svg/ookami02-modal_close_btn.svg);
  top: calc(var(--frame_padding) * 1.5);
  right: calc(var(--frame_padding) * 1.5);
  width: var(--nav_trigger_size);
  height: var(--nav_trigger_size);
}
.modal_layer.op_modal {
  display: none;
}
.modal_layer.op_modal.is_active {
  display: block;
}
.modal_layer.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide_modal .modal_inner.slide_modal_content_box .slide_modal_content {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  pointer-events: none;
}
.slide_modal
  .modal_inner.slide_modal_content_box
  .slide_modal_content.slide_visible {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.slide_modal .modal_prev_btn,
.slide_modal .modal_next_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: min(270px, 25vh);
  width: min(80px, 10vw);
  background-color: #232323;
  cursor: pointer;
  transition: 0.2s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slide_modal .modal_prev_btn::before,
.slide_modal .modal_next_btn::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 100%;
  background: no-repeat center
    url(../images/svg/cmn_parts/icon_arrow_slidemodal_02.svg);
  background-size: contain;
}
.slide_modal .modal_prev_btn.disactive,
.slide_modal .modal_next_btn.disactive {
  opacity: 0.2;
  pointer-events: none;
}
.slide_modal .modal_prev_btn:focus,
.slide_modal .modal_next_btn:focus {
  outline: none;
}
.slide_modal .modal_prev_btn {
  left: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.slide_modal .modal_prev_btn::before {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.slide_modal .modal_prev_btn:hover {
  transform: translateY(-50%) translateX(-4px);
}
.slide_modal .modal_next_btn {
  right: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.slide_modal .modal_next_btn:hover {
  transform: translateY(-50%) translateX(4px);
}

@media only screen and (max-width: 835px) {
  .slide_modal .modal_prev_btn,
  .slide_modal .modal_next_btn {
    width: 12%;
    height: 20vh;
    background-size: 30% auto;
  }
  .slide_modal .modal_prev_btn {
    left: 0;
  }
  .slide_modal .modal_next_btn {
    right: 0;
  }
}
.mono_modal_open,
.separate_mono_modal_open,
.yt_mono_modal_open,
.yt_separate_mono_modal_open,
.slide_modal_open {
  cursor: pointer;
}

/* ---- modal layer ---- */
/*----------------------------------------
	schedule_grid
------------------------------------------*/
.cmn_schedule_grid {
  --main_bg_color: #464646;
  --day_time_bg_color: #252525;
  --grid_h_bg_color: #191919;
  --saturday_bg_color: #004964;
  --sunday_bg_color: #820000;
  --closed_day_bg_color: #9b9b9b;
  --font_color: #fff;
  --border_color: #191919;
}

.cmn_schedule_grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(
    var(--sc_col_num),
    calc(100% / var(--sc_col_num))
  );
  grid-template-rows: repeat(var(--sc_row_num), 4em);
  background-color: var(--main_bg_color);
  overflow: hidden;
  grid-auto-flow: column;
  font-size: clamp(14px, 2vw, 18px);
}
.cmn_schedule_grid::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--border_color);
  z-index: 2;
}
.cmn_schedule_grid::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border_color);
  z-index: 2;
}
.cmn_schedule_grid p {
  position: relative;
  display: block;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  border-top: 1px solid var(--border_color);
  border-left: 1px solid var(--border_color);
  color: var(--font_color);
  line-height: 1.2em;
}
.cmn_schedule_grid p.grid_h {
  background-color: var(--grid_h_bg_color);
}
.cmn_schedule_grid p.day,
.cmn_schedule_grid p.time {
  background-color: var(--day_time_bg_color);
}
.cmn_schedule_grid p.sat {
  background-color: var(--saturday_bg_color);
}
.cmn_schedule_grid p.sat::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: 0;
  background-color: var(--saturday_bg_color);
  width: 100%;
  height: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
  transform: translateY(100%);
  opacity: 0.4;
}
.cmn_schedule_grid p.sun {
  background-color: var(--sunday_bg_color);
}
.cmn_schedule_grid p.sun::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: 0;
  background-color: var(--sunday_bg_color);
  width: 100%;
  height: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
  transform: translateY(100%);
  opacity: 0.4;
}
.cmn_schedule_grid p.closed::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: -1px;
  background-color: var(--closed_day_bg_color);
  width: 100%;
  height: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
  transform: translateY(100%);
  opacity: 1;
  z-index: 1;
  content: "休演日";
  writing-mode: vertical-rl;
  display: grid;
  place-items: center;
  color: #fcfcfc;
}

@media only screen and (max-width: 835px) {
  .cmn_schedule_grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(
      var(--sc_row_num),
      calc(100% / var(--sc_row_num))
    );
    grid-template-rows: repeat(var(--sc_col_num), 4em);
  }
  .cmn_schedule_grid p.sat::after {
    height: 100%;
    width: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
    transform: translateX(100%);
  }
  .cmn_schedule_grid p.sun::after {
    height: 100%;
    width: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
    transform: translateX(100%);
  }
  .cmn_schedule_grid p.closed::after {
    right: -1px;
    bottom: 0;
    width: calc(100% * var(--sc_time_num) + 1px * var(--sc_time_num));
    height: 100%;
    transform: translateX(100%);
    writing-mode: initial;
  }
}
/*----------------------------------------
	404
------------------------------------------*/
#error_404 {
  padding: calc(var(--main_distance) * 2) 0;
}
#error_404 .container_s p {
  color: #fff;
}
#error_404 .container_s .stit {
  font-size: 26px;
  line-height: 1em;
  margin-bottom: 1em;
}
#error_404 .container_s .text {
  margin-bottom: 3em;
}
#error_404 .container_s .link_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
}
#error_404 .container_s .error_toplink {
  position: relative;
  display: block;
  width: min(230px, 70%);
  height: 60px;
  display: grid;
  place-items: center;
  background-color: #e9af89;
  color: #fcfcfc;
  font-weight: bold;
  font-size: min(18px, 4vw);
  white-space: nowrap;
  letter-spacing: 0.05em;
  margin: 0 auto;
  transition: 0.2s;
  border-radius: 5px;
}
#error_404 .container_s .error_toplink:hover {
  transform: translateY(-2px);
}

.c-button {
  display: inline-block;
  width: 100%;
  max-width: 510px;
  border-radius: 50px;
  background: no-repeat url(../images/webp/ookami02-button-bg02.png);
  background-size: contain;
  border-radius: 50px;
  /* border: 1px solid #d7ba64; */
  z-index: -1;
  position: relative;
  height: 88px;
  z-index: 10;
  transition: transform 0.3s ease, right 0.3s ease;
}
@media (any-hover: hover) {
  .c-button:hover::after {
    transform: translate(-12px, -50%) scale(1.3);
  }
}
.c-button::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-circle-icon.svg);
  background: #fff;
  width: 24px;
  height: 30.5px;
}
.c-button::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-star-icon.svg);
  background: #fff;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease-in-out;
}
.c-button__line {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50px;
  /* border: 1px solid #d7ba64; */
}
@media screen and (max-width: 835px) {
  .c-button {
    max-width: calc(308 / 414 * 100vw);
    height: calc(54 / 414 * 100vw);
    max-width: 308px;
    height: 54px;
  }
  .c-button::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 29px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-circle-icon.svg);
    background: #fff;
    width: 21px;
    height: 21.2px;
  }
  .c-button::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-star-icon.svg);
    background: #fff;
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease-in-out;
  }
}

.c-button02 {
  position: relative;
  display: inline-block;
  width: 100%;
}

.c-button02__img {
  width: 100%;
}
@media (any-hover: hover) {
  .c-button02:hover::after {
    transform: translate(-12px, -50%) scale(1.3);
  }
}
.c-button02::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-circle-icon.svg);
  background: #fff;
  width: 24px;
  height: 30.5px;
}
.c-button02::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-star-icon.svg);
  background: #fff;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease-in-out;
}

.c-button03 {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  background: no-repeat url(../images/webp/ookami02-button-bg03.png);
  background-size: contain;
  z-index: -1;
  position: relative;
  height: 88px;
  z-index: 10;
  transition: transform 0.3s ease, right 0.3s ease;
}
.c-button03._newsList {
  background: no-repeat url(../images/webp/ookami02-button-bg-newsList.png);
    background-size: contain;
}
@media (any-hover: hover) {
  .c-button03:hover::after {
    transform: translate(12px, -54%) scale(1.3);
  }
}
.c-button03::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 56px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-circle-icon.svg);
  background: #fff;
  width: 24px;
  height: 30.5px;
  transform: translateY(-54%) rotateY(180deg);
}
.c-button03::after {
  position: absolute;
  content: "";
  top: 54%;
  left: 35px;
  transform: translateY(-54%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-star-icon.svg);
  background: #fff;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease-in-out;
}
.c-button03__line {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  /* border-radius: 50px; */
  border: 1px solid #d7ba64;
}
@media screen and (max-width: 835px) {
  .c-button03 {
    max-width: calc(308 / 414 * 100vw);
    height: calc(54 / 414 * 100vw);
    max-width: 308px;
    height: 58px;
    background: url(../images/webp/ookami02-button-bg03-sp.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .c-button03._newsList {
    background: no-repeat url(../images/webp/ookami02-button-bg-newsList-sp.png);
    background-size: contain;
  }
  .c-button03::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 29px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-circle-icon.svg);
    background: #fff;
    width: 21px;
    height: 21.2px;
    transform: translateY(-54%) rotateY(180deg);
  }
  .c-button03::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-star-icon.svg);
    background: #fff;
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease-in-out;
  }
}

.c-button04 {
  color: #fff;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%; /* 30px */
  background-image: url(../images/webp/ookami02-btn-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 29px;
  width: 100%;
  max-width: 346px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease-in-out;
}
.c-button04::before {
  position: absolute;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #fff;
  border-radius: 29px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-button04:hover {
  transform: translateY(-3px);
}

.c-blog {
  margin-inline: auto;
  position: relative;
  margin-left: 50px;
  z-index: 10;
}
.c-blog::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-circle-icon.svg);
  background: #41307c;
  width: 24px;
  height: 30.5px;
  transition: all 0.2s ease-in-out;
}
.c-blog::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/svg/ookami02-star-icon.svg);
  background: #41307c;
  width: 36px;
  height: 36px;
  transition: all 0.2s ease-in-out;
  transform-origin: center;
}
@media (any-hover: hover) {
  .c-blog:hover::before {
    background: #d7ba64;
  }
  .c-blog:hover::after {
    transform: translate(-12px, -51%) scale(1.3);
    background: #d7ba64;
  }
}
.c-blog__link {
  display: block;
  background: rgba(255, 255, 255, 0.84);
  transition: all 0.2s ease-in-out;
  padding: 22px 197px;
}
.c-blog:hover .c-blog__link {
  background: #fff;
}
.c-blog__date {
  position: absolute;
  top: 50%;
  left: -51px;
  transform: translateY(-50%);
  background: linear-gradient(
    293deg,
    rgba(249, 154, 170, 0.9) 14.71%,
    rgba(253, 180, 194, 0.9) 28.69%,
    rgba(255, 190, 203, 0.9) 42.66%,
    rgba(159, 213, 187, 0.9) 56.64%,
    rgba(0, 189, 176, 0.9) 70.61%,
    rgba(0, 167, 168, 0.9) 84.59%
  );
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 7px 42px 4px 25px;
}
.c-blog__date-year {
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
  font-family: "Cinzel Decorative";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
}
.c-blog__date-month,
.c-blog__date-day {
  color: #fff;
  font-family: "Cinzel Decorative";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.6px;
}
.c-blog__heading {
  color: #41307c;
  font-family: "Shippori Mincho";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.2px;
  text-align: left;
}
@media screen and (max-width: 835px) {
  .c-blog {
    margin-left: unset;
  }
  .c-blog::before {
    display: none;
  }
  .c-blog::after {
    display: none;
  }
  .c-blog__link {
    padding: 35px 49px 15px 10px;
  }
  .c-blog:hover .c-blog__link {
  }
  .c-blog__date {
    position: absolute;
    top: -21px;
    left: -5px;
    transform: translateY(0);
    display: inline-flex;
    padding: 7px 23px 4px 23px;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  .c-blog__heading {
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.14px;
    position: relative;
  }
  .c-blog__heading::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -21px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-circle-icon.svg);
    background: #41307c;
    width: 16.4px;
    height: 21.2px;
    transition: all 0.2s ease-in-out;
  }
  .c-blog__heading::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -39px;
    transform: translateY(-50%);
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-image: url(../images/svg/ookami02-star-icon.svg);
    background: #41307c;
    width: 25px;
    height: 25px;
    transition: all 0.2s ease-in-out;
    transform-origin: center;
  }
}

.cmn_main_layer._none .cmn_img_deco_1::before {
  display: none;
}

@media screen and (max-width: 835px) {
  .cmn_h_title {
    margin-left: -10px;
  }
  .p-news .cmn_main_layer {
    margin-top: calc(var(--cmn_h_title_size) * 0.8);
  }
}

/* ニュース */
.p-news .cmn_h_title {
  height: calc(var(--cmn_h_title_size) * 1.2);
}
@media screen and (max-width: 835px) {
  .p-news .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.2);
  }
}

@media screen and (max-width: 835px) {
  .p-merch .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.2);
  }
}
@media screen and (max-width: 835px) {
  .p-merch .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.2);
  }
  .p-dmb .cmn_h_title.size_row2 {
    height: calc(var(--cmn_h_title_size) * 1.5);
  }
}
@media screen and (max-width: 835px) {
  .p-album .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.2);
  }
}
@media screen and (max-width: 835px) {
  .p-album .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.2);
  }
}
@media screen and (max-width: 835px) {
  .p-videos .cmn_h_title {
    height: calc(var(--cmn_h_title_size) * 1.23);
    margin-left: 0;
  }
}

.p-album.cmn_top_section.type_2 {
  padding: calc(var(--main_distance) * 1.5) 0 calc(var(--main_distance) * 0.4);
}

@media screen and (max-width: 835px) {
  .cmn_top_section.type_1 {
    padding: calc(var(--main_distance) * 0.6) 0 0;
  }
  .cmn_top_section.type_2 {
    padding: calc(var(--main_distance) * 0.8) 0 calc(var(--main_distance) * 0.4);
  }
}

.p-videos .cmn_h_title_outer .cmn_h_title {
  margin-left: -20px;
}

.cmn_white_box.in_page {
  color: #41307c;
  font-family: "Shippori Mincho";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
@media screen and (max-width: 835px) {
  .cmn_white_box.in_page {
    color: #41307c;
    font-family: "Shippori Mincho";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
  }
}

.p-merch .cmn_img_deco_1 {
  --deco_pos: clamp(6px, 2vw, 16px);
  --deco_w: clamp(40px, 12vw, 100px);
  position: relative;
  display: block;
}
.p-merch .cmn_img_deco_1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 14px);
  height: calc(100% + 52px);
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.p-merch .cmn_img_deco_1:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -31px;
  transform: translateY(-50%);
  width: 183px;
  height: 582px;
  background: no-repeat center
    url(../images/webp/ookami02-merch-img-bg-left.webp);
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.p-merch .cmn_img_deco_1:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -31px;
  transform: translateY(-50%);
  width: 183px;
  height: 582px;
  background: no-repeat center
    url(../images/webp/ookami02-merch-img-bg-right.webp);
  z-index: 1;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1130px) {
  .p-merch .cmn_img_deco_1:before {
    width: calc(183 / 1130 * 100vw);
    height: calc(582 / 1130 * 100vw);
  }
  .p-merch .cmn_img_deco_1:after {
    width: calc(183 / 1130 * 100vw);
    height: calc(582 / 1130 * 100vw);
  }
}
@media screen and (max-width: 835px) {
  .p-merch .wrap_1000px {
    width: 84%;
  }
  .p-merch .cmn_img_deco_1:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    left: calc(-10 / 414 * 100vw);
    transform: translateY(-50%);
    width: calc(79 / 414 * 100vw);
    height: calc(214 / 414 * 100vw);
    background: no-repeat center
      url(../images/webp/ookami02-merch-img-bg-left-sp.webp);
    z-index: 1;
    background-size: cover;
    background-position: center;
  }
  .p-merch .cmn_img_deco_1:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    right: calc(-10 / 414 * 100vw);
    transform: translateY(-50%);
    width: calc(79 / 414 * 100vw);
    height: calc(214 / 414 * 100vw);
    background: no-repeat center
      url(../images/webp/ookami02-merch-img-bg-right-sp.webp);
    z-index: 1;
    background-size: cover;
    background-position: center;
  }
}

/* ============================= */
/* opening */
/* ============================= */
#opening {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  perspective: 300px;
  z-index: 999;
}

#opening .bg,
#opening .opening-bg,
#opening .flower {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-style: preserve-3d;
  will-change: transform, filter, opacity;
}

#opening .butterfly {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform-style: preserve-3d;
}

#opening .bg {
  object-fit: cover;
  z-index: 1;
  filter: blur(15px);
}

#opening .butterfly {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  width: 450px;
  z-index: 2;
  opacity: 0;
}

#opening .flower {
  object-fit: cover;
  z-index: 3;
  filter: blur(0px);
}

@media screen and (max-width: 600px) {
  #opening .butterfly {
    width: 220px;
  }
}

#opening .logo-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  background-color: #fff;
  will-change: transform, filter, opacity;
}

#opening .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 300px;
  z-index: 999;
  will-change: transform, filter, opacity;
}

#opening .logo-color {
  opacity: 0;
  transition: opacity 1s ease;
}

#opening .logo-wrapper:hover .logo-color {
  opacity: 1;
}

#opening #logo-bg {
  opacity: 1;
  transition: opacity 1s ease;
}

#opening #logo-bg.fade-out {
  opacity: 0;
}



#opening {
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* JSで付与して即非表示に */
.opening--hidden {
  opacity: 0 !important;
  pointer-events: none;
  user-select: none;
  display: none !important;
}

/* ============================= */
/* fixed-frame */
/* ============================= */
#fixed-frame {
  pointer-events: none;
  position: fixed;
  padding: 5px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 500;
  border: 5px solid #d7ba64;
}

#fixed-frame .fixed-frame__inner {
  width: 100%;
  height: 100%;
  border: 1px solid #d7ba64;
}

@media screen and (max-width: 600px) {
  #fixed-frame {
    padding: 3px;
    border: 2px solid #d7ba64;
  }

  #fixed-frame .fixed-frame__inner {
    border: 1px solid #d7ba64;
  }
}

#fixed-frame .fixed-frame__item {
  position: absolute;
  width: 164px;
  height: 163px;
}

@media screen and (max-width: 600px) {
  #fixed-frame .fixed-frame__item {
    width: 70px;
    height: 70px;
  }
}

#fixed-frame .fixed-frame__top-left-item {
  top: 20px;
  left: 15px;
}

#fixed-frame .fixed-frame__top-right-item {
  top: 20px;
  right: 15px;
}

#fixed-frame .fixed-frame__bottom-left-item {
  bottom: 20px;
  left: 15px;
}

#fixed-frame .fixed-frame__bottom-right-item {
  bottom: 20px;
  right: 15px;
}

@media screen and (max-width: 600px) {
  #fixed-frame .fixed-frame__top-left-item {
    top: 10px;
    left: 10px;
  }

  #fixed-frame .fixed-frame__top-right-item {
    top: 10px;
    right: 10px;
  }

  #fixed-frame .fixed-frame__bottom-left-item {
    bottom: 10px;
    left: 10px;
  }

  #fixed-frame .fixed-frame__bottom-right-item {
    bottom: 10px;
    right: 10px;
  }
}

/* ============================= */
/* poem */
/* ============================= */
.p-poem__content {
  perspective: 1000px;
}

.poem_text {
  padding: 0;
  margin: 20px 0;
  /* line-height: 1.8; */
}

.poem_box_inner {
  margin: 80px 0 100px;
}
@media screen and (max-width: 835px) {
  .poem_box_inner {
    margin: 4vw 0 5vw;
  }
  .poem_text._first {
    margin-top: 0;
  }
  .poem_text._second {
    margin-top: 0;
  }
  .poem_text._third {
    margin-top: 0;
  }
  .poem_text._fourth {
    margin-top: 0;
  }
  .poem_text._fifth {
    margin-top: 0;
  }
  .poem_text._sixth {
    margin-top: 0;
  }
  .poem_text._seventh {
    margin-top: 0;
  }
}

.poem_text .poem_text_secondary {
  font-family: "Shippori Mincho";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #41307c;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 1);
}

.poem_text_primary {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
#poem .cmn_main_layer .poem_box .poem_text_primary_word {
  display: inline-block;
  line-height: 1;
  transform: translate(0%, 0%) scale(1);
  margin-right: -8px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:first-of-type {
  width: 87px;
  margin-top: 15px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(2) {
  width: 91px;
  margin-right: -10px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(3) {
  width: 110px;
  margin-top: 35px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(4) {
  width: 65px;
  margin-top: 15px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(5) {
  width: 80px;
  margin-top: 10px;
  margin-right: -15px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(6) {
  width: 95px;
  margin-top: 5px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(7) {
  width: 110px;
  margin-top: 35px;
  margin-right: -30px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(8) {
  width: 78px;
  margin-top: 10px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(9) {
  width: 67px;
  margin-top: 11px;
}

#poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(10) {
  width: 70px;
  margin-top: 8px;
}

@media screen and (max-width: 835px) {
  .poem_text_primary {
    margin-top: -20px;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word {
    margin-right: -1.5vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:first-of-type {
    width: 10vw;
    margin-top: 1vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(2) {
    width: 9.8vw;
    margin-right: -1vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(3) {
    width: 10vw;
    margin-top: 3vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(4) {
    width: 7.2vw;
    margin-top: 1vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(5) {
    width: 8vw;
    margin-top: 1vw;
    margin-right: -2.5vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(6) {
    width: 10vw;
    margin-top: 0.5vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(7) {
    width: 10vw;
    margin-top: 2vw;
    margin-right: -2vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(8) {
    width: 8vw;
    margin-top: 1vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(9) {
    width: 8vw;
    margin-top: 1vw;
  }

  #poem .cmn_main_layer .poem_box .poem_text_primary_word:nth-of-type(10) {
    width: 8vw;
    margin-top: 1vw;
    margin-right: 0;
    margin-left: 1vw;
  }
}

.poem_text span.semibold {
  font-weight: 600;
}

.poem_text span.en {
  font-size: clamp(32px, 4vw, 64px);
  font-family: "Cinzel Decorative";
}

.poem_text span.size_40 {
  font-size: clamp(15px, 2.2vw, 40px);
}

.poem_text span.size_48 {
  font-size: clamp(20px, 2.2vw, 48px);
}

.poem_text span.size_56 {
  font-size: clamp(20px, 4vw, 56px);
}

.poem_text span.size_96 {
  font-size: clamp(32px, 6vw, 96px);

  font-size: clamp(40px, 6vw, 96px);
}

@media screen and (max-width: 835px) {
  .poem_text span.en {
    font-size: clamp(30px, 4vw, 64px);
    font-family: "Cinzel Decorative";
  }

  .poem_text span.size_40 {
    font-size: clamp(18px, 2.2vw, 40px);
  }

  .poem_text span.size_96 {
    letter-spacing: -0.13em;
    font-size: clamp(32px, 6vw, 96px);
  }
}

.mt-20 {
  margin-top: 20px;
}

#poem .cmn_main_layer .poem_box p {
  margin-bottom: 0 !important;
}

.fixed-ticket {
  position: fixed;
  bottom: min(82px, calc(82 / 1920 * 100vw));
  right: min(77px, calc(77 / 1920 * 100vw));
  z-index: 20;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.fixed-ticket.show {
  opacity: 1;
  pointer-events: auto;
}
.fixed-ticket img {
  width: min(211px, calc(211 / 1920 * 100vw));
  height: min(124px, calc(124 / 1920 * 100vw));
}
.fixed-ticket::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 272px;
  height: 270px;
  z-index: -1;
  animation: spin-slow 30s linear infinite;
  animation-play-state: running;
  width: min(272px, calc(272 / 1920 * 100vw));
  height: min(270px, calc(270 / 1920 * 100vw));
  background: url(../images/svg/ookami02-ticket-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fixed-ticket:hover::before {
  animation-play-state: paused;
}
@media screen and (max-width: 835px) {
  .fixed-ticket {
    position: fixed;
    bottom: 40px;
    right: 25px;
    z-index: 20;
  }
  .fixed-ticket img {
    width: 90px;
    height: 50px;
  }
  .fixed-ticket::before {
    animation: spin-slow 30s linear infinite;
    width: 110px;
    height: 120px;
  }
  .fixed-ticket:hover::before {
    animation-play-state: paused;
  }
}
.kv_layer .talent__img img {
  padding-right: min(70px, calc(70 / 1920 * 100vw));
}
@media screen and (max-width: 835px) {
  .kv_layer .talent__img img {
    padding-right: 0;
  }
}

.cmn_main_layer.wrap_1000px.video-wrap_1000px {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 835px) {
  .cmn_main_layer.wrap_1000px.video-wrap_1000px {
    max-width: 1000px;
    width: var(--wrap_width);
  }
}
