@charset "UTF-8";
/* ーーーーー リセット系 ーーーーー */
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
p,
span,
a,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-text-decoration-skip: none;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
}

li {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

:root {
  --red01: #E60012;
}

/* ーーーーー リセット系ここまで ーーーーー */
.all_wrap {
  position: relative;
}
.all_wrap .contents_wrap {
  position: relative;
  max-width: 1120px;
  display: block;
  margin: 0 auto;
  padding: 0px 10px;
}
@media screen and (max-width: 768px) {
  .all_wrap .contents_wrap {
    padding: 0 5%;
  }
}
.all_wrap .contents_wrap .content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .all_wrap .contents_wrap .content_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.all_wrap .contents_wrap .content_inner .side_content {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .all_wrap .contents_wrap .content_inner .side_content {
    width: 100%;
  }
}
.all_wrap #contents .contents_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4%;
  row-gap: 20px;
  margin-bottom: 40px;
}
.all_wrap #contents .contents_box li {
  width: 48%;
  border: 1px solid gray;
  text-align: center;
  padding: 24px 2%;
}
.all_wrap #contents .contents_box li .category_icon {
  display: block;
  width: 27%;
  margin: 0 auto 6px;
}
.all_wrap footer {
  background-color: var(--black01);
  padding: 20px 0 100px;
}
.all_wrap footer .copyright {
  font-size: 13px;
  line-height: 1.6;
  color: white;
  text-align: center;
}

.linkBtn_wrap {
  --red01: #e60012;
  width: 360px;
  max-width: 100%;
  height: 64px;
  border: 3px solid var(--red01);
  border-radius: 999px;
  background: #fff;
  color: var(--red01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .linkBtn_wrap {
    height: 54px;
    max-width: inherit;
    width: 100%;
  }
}
.linkBtn_wrap .txt {
  position: relative;
  margin: 0;
  padding-right: 34px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .linkBtn_wrap .txt {
    font-size: 14px;
  }
}
.linkBtn_wrap .txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--red01);
  border-right: 3px solid var(--red01);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s ease, border-color 0.3s ease;
  transition: right 0.3s ease, border-color 0.3s ease;
}
.linkBtn_wrap:hover {
  background: var(--red01);
  color: #fff;
}
.linkBtn_wrap:hover .txt::after {
  right: -8px;
  border-color: #fff;
}

.modal_linkBtn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal_linkBtn_wrap .linkBtn_wrap {
  background-color: var(--red01);
}
.modal_linkBtn_wrap .linkBtn_wrap .txt {
  color: white;
}
.modal_linkBtn_wrap .linkBtn_wrap .txt::after {
  border-top: 3px solid white;
  border-right: 3px solid white;
}
.modal_linkBtn_wrap .linkBtn_wrap:hover {
  background: white;
}
.modal_linkBtn_wrap .linkBtn_wrap:hover .txt {
  color: var(--red01);
}
.modal_linkBtn_wrap .linkBtn_wrap:hover .txt::after {
  right: -8px;
  border-color: var(--red01);
}

.categoryTitle {
  max-width: 915px;
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .categoryTitle {
    max-width: 500px;
    width: 77%;
  }
}
.categoryTitle .ategoryTitle02 {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .categoryTitle .ategoryTitle02 {
    margin-bottom: 23px;
  }
}

.thumb-list .thumb-item .region_name,
.name-list .region_txt,
.name-list .character_name {
  text-decoration: none;
  border-bottom: none;
  background-image: none;
}

.region_name,
.character_name,
.region_txt,
.explain,
.character-card__text {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.marugo {
  font-family: "Zen Maru Gothic", sans-serif;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .PC-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
html {
  scrollbar-gutter: stable;
}

body.menu-open {
  overflow: hidden;
}

/* メインコンテンツ */
.main-content {
  display: none;
}

/* ハンバーガーボタン */
.menu-button {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: inherit;
  cursor: pointer;
  z-index: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  border: 0;
  background-image: url("../image/menu_heart.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .menu-button {
    top: 3px;
    right: 10px;
  }
}

/* ハンバーガーメニューアイコン */
.hamburger-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.hamburger-icon span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* バツアイコン（メニュー開いた状態） */
.menu-button.open .hamburger-icon {
  width: 24px;
  height: 24px;
}

.menu-button.open .hamburger-icon span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  margin: 0;
}

.menu-button.open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.menu-button.open .hamburger-icon span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  margin: 0;
}

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100vh;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  overflow-y: auto;
  z-index: 810;
  background-image: url("../image/menu_BG_PC.png");
  background-size: 100%;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .side-menu {
    background-image: url("../image/menu_BG_sp.png");
    right: -95vw;
    width: 95vw;
    height: 100svh;
  }
}

.side-menu.active {
  right: 0;
}

/* メニューコンテンツ */
.menu-header {
  display: none;
}

.menu-section_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-top: 28vh;
  margin-left: 114px;
}
@media screen and (max-width: 768px) {
  .menu-section_wrap {
    row-gap: 40px;
    margin-top: 134px;
    margin-left: 25vw;
  }
}

.menu-section {
  position: relative;
}
.menu-section:hover {
  cursor: pointer;
}
.menu-section:hover .menu_character01 {
  display: block;
}

.menu-section-title {
  color: var(--red01);
  color: var(--, #E60012);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items a {
  color: var(--red01);
  text-decoration: none;
  font-size: 1em;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.02em;
  padding-left: 20px;
  position: relative;
}

.menu-items a:hover {
  opacity: 0.7;
}

.menu-items a::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: var(--red01);
  border-radius: 1px;
  inset: 0 auto 0 6px;
  margin: auto 0;
}

/* サブメニュー */
.submenu {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 11px;
}

/* オーバーレイ（メニュー背景のダークエリア） */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 98;
}

.menu-overlay.active {
  opacity: 0.5;
  pointer-events: auto;
}

/* スクロール時のスムーズさ */
@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable;
  }
}
/* 古いブラウザ対応用 */
@supports not (scrollbar-gutter: stable) {
  body.menu-open {
    padding-right: 17px;
  }
}
.menu_character01 {
  position: absolute;
  width: 62px;
  left: -70px;
  top: 0px;
  display: none;
}

.menu_character02 {
  position: absolute;
  width: 150px;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .menu_character02 {
    width: 140px;
    right: 8px;
  }
}

.menu_character03 {
  position: absolute;
  width: 50px;
  right: 45px;
  top: -12px;
}

#KV {
  padding: 86px 0 100px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #KV {
    padding: 57px 0 54px;
  }
}
#KV .KV_wrap {
  position: relative;
}
#KV .KV_wrap .KV_title {
  position: absolute;
  top: 37%;
  left: 50%;
  width: 66%;
  /* 中央補正＋アニメ初期状態 */
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #KV .KV_wrap .KV_title {
    top: 38%;
    width: 91%;
  }
}
#KV .KV_wrap .KV_title.is-active {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro_catch_Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .intro_catch_Box {
    margin-bottom: 27px;
  }
}
.intro_catch_Box .intro_catch_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.intro_catch_Box .txt {
  position: relative;
  font-weight: 800;
  color: #FFF;
  text-align: center;
  font-size: 53px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .intro_catch_Box .txt {
    font-size: min(6.5vw, 30px);
  }
}
.intro_catch_Box .heart {
  display: block;
  width: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .intro_catch_Box .heart {
    width: 17px;
  }
}
.intro_catch_Box .heart img {
  display: block;
}

#intro {
  overflow: hidden;
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  background-image: url("../image/intro_BG_PC.jpg");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  #intro {
    padding: 68px 0 56px;
    background-image: url("../image/intro_BG_sp.jpg");
  }
}
#intro .intro_lead {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #intro .intro_lead {
    width: 85%;
    display: block;
    margin: 0 auto 20px;
    font-size: 14px;
  }
}
#intro .intro_slider_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#intro .intro_slider_wrap .intro_slider {
  overflow: hidden;
}
#intro .intro_slider_wrap .intro_slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
#intro .intro_slider_wrap .intro_slider .slider {
  width: 220px;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  #intro .intro_slider_wrap .intro_slider .slider {
    margin: 0 5px;
    width: 120px;
  }
}
#intro .intro_slider_wrap .intro_slider .slider img {
  display: block;
  width: 100%;
  height: auto;
}

#Heartra {
  position: relative;
  z-index: 1;
  padding: 200px 0;
  margin-top: -120px;
  margin-bottom: -120px;
  background-image: url("../image/heartra_BG_PC.png");
  background-size: 100% auto;
  background-position: top;
  background-repeat: repeat-y;
  -webkit-mask-image: url("../image/heartra_BG_mask_PC.png");
  mask-image: url("../image/heartra_BG_mask_PC.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
@media screen and (max-width: 768px) {
  #Heartra {
    padding: 93px 0 120px;
    margin-top: -60px;
    margin-bottom: -60px;
    background-image: url("../image/heartra_BG_sp.png");
    -webkit-mask-image: url("../image/heartra_BG_mask_sp.png");
    mask-image: url("../image/heartra_BG_mask_sp.png");
  }
}
#Heartra::after {
  content: "";
  position: absolute;
  inset: 0;
  top: -120px;
  background: url("../image/heartra_BG_maskLine_PC.png") no-repeat top/100% 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #Heartra::after {
    top: -10px;
    background: url("../image/heartra_BG_maskLine_sp.png") no-repeat top/100% 100%;
  }
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .titleWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#Heartra .heartra_introduce .title {
  max-width: 480px;
  width: 90%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .title {
    margin-bottom: 15px;
  }
}
#Heartra .heartra_introduce .subtitle {
  color: var(--red01);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .subtitle {
    font-size: min(4.2vw, 16px);
    text-align: center;
    margin-bottom: 20px;
  }
}
#Heartra .heartra_introduce .profile-item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 18px;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .profile-item_wrap {
    row-gap: 12px;
  }
}
#Heartra .heartra_introduce .profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .profile-item.item02 {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#Heartra .heartra_introduce .button-label {
  width: 165px;
  height: 25px;
  border-radius: 50px;
  background: var(--red01);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .button-label {
    font-size: 13px;
    height: initial;
    width: 130px;
    padding: 5px 0;
    border-radius: 10px;
  }
}
#Heartra .heartra_introduce .button-content {
  width: calc(100% - 12px - 165px);
  color: var(--red01);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #Heartra .heartra_introduce .button-content {
    width: calc(100% - 12px - 130px);
    font-size: 14px;
  }
}

.KV_image {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.3;
  pointer-events: none;
}

.KV_character {
  position: absolute;
  width: 18vw;
}
@media screen and (max-width: 768px) {
  .KV_character {
    width: 27vw;
  }
}
.KV_character.character01 {
  left: 4.6%;
  bottom: 8%;
}
@media screen and (max-width: 768px) {
  .KV_character.character01 {
    left: -7.4%;
    bottom: 8%;
  }
}
.KV_character.character02 {
  left: 15%;
  bottom: -1%;
}
@media screen and (max-width: 768px) {
  .KV_character.character02 {
    left: 8%;
    bottom: 3%;
  }
}
.KV_character.character03 {
  left: 26.9%;
  bottom: 6%;
}
@media screen and (max-width: 768px) {
  .KV_character.character03 {
    left: 21%;
    bottom: 15%;
  }
}
.KV_character.character04 {
  left: 39.4%;
  bottom: 0%;
}
@media screen and (max-width: 768px) {
  .KV_character.character04 {
    left: 33.6%;
    bottom: -1.3%;
  }
}
.KV_character.character05 {
  left: 50.5%;
  bottom: 8%;
}
@media screen and (max-width: 768px) {
  .KV_character.character05 {
    left: 43.1%;
    bottom: 12.5%;
  }
}
.KV_character.character06 {
  left: 60.5%;
  bottom: -3%;
}
@media screen and (max-width: 768px) {
  .KV_character.character06 {
    left: 53.5%;
    bottom: 4%;
  }
}
.KV_character.character07 {
  left: 70.1%;
  bottom: 8.7%;
}
@media screen and (max-width: 768px) {
  .KV_character.character07 {
    left: 68.5%;
    bottom: -0.5%;
    z-index: 1;
  }
}
.KV_character.character08 {
  left: 77.4%;
  bottom: -3.1%;
}
@media screen and (max-width: 768px) {
  .KV_character.character08 {
    left: 78.4%;
    bottom: 11.2%;
  }
}
.KV_character.character09 {
  left: 0.2%;
  top: 2.1%;
}
@media screen and (max-width: 768px) {
  .KV_character.character09 {
    left: -4.2%;
    top: -0.9%;
    width: 34vw;
  }
}
.KV_character.character10 {
  left: 48.8%;
  top: 2.1%;
}
@media screen and (max-width: 768px) {
  .KV_character.character10 {
    left: 45%;
    top: 6.1%;
    width: 34vw;
  }
}
.KV_character.character11 {
  left: 77.8%;
  top: 7.1%;
}
@media screen and (max-width: 768px) {
  .KV_character.character11 {
    left: 63.5%;
    top: 13.1%;
    width: 34vw;
  }
}

.KV_cloud {
  width: 10vw;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .KV_cloud {
    width: 19vw;
    z-index: -1;
  }
}
.KV_cloud.cloud01 {
  left: -1%;
  top: 22%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud01 {
    left: -11%;
    top: 17%;
  }
}
.KV_cloud.cloud02 {
  left: 19.5%;
  top: 5.5%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud02 {
    left: 22.5%;
    top: 5.5%;
  }
}
.KV_cloud.cloud03 {
  left: 36.5%;
  top: 18%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud03 {
    left: 40.5%;
    top: 13%;
  }
}
.KV_cloud.cloud04 {
  left: 50%;
  top: 0%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud04 {
    left: 65%;
    top: 5%;
  }
}
.KV_cloud.cloud05 {
  left: 62.4%;
  top: 15.2%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud05 {
    left: 82.4%;
    top: 14.2%;
  }
}
.KV_cloud.cloud06 {
  left: 82%;
  top: 9%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud06 {
    left: 57%;
    top: 27%;
  }
}
.KV_cloud.cloud07 {
  left: 88.7%;
  top: 31%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud07 {
    left: -0.3%;
    top: 33%;
  }
}
.KV_cloud.cloud08 {
  left: 88.7%;
  top: 31%;
}
@media screen and (max-width: 768px) {
  .KV_cloud.cloud08 {
    left: 82.7%;
    top: 34%;
  }
}

.top_scroll_wrap {
  position: relative;
  width: 100%;
  height: 0px;
}

.top_scroll {
  width: 100px;
  position: absolute;
  left: 50%;
  top: -50px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top_scroll {
    width: 72px;
    top: -27px;
  }
}

.js_character_Fluffy {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
}

.js_KV_character {
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  will-change: transform;
}

.intro_fukidashi {
  position: absolute;
  width: 28%;
  top: 22%;
  right: -3%;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .intro_fukidashi {
    width: 30%;
    top: 15%;
    right: -3%;
  }
}

/* ===== ローディング全体 ===== */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: visibility 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: visibility 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease, -webkit-transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* 上にせり上がって消える */
#loading.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  visibility: hidden;
}

/* ロゴ */
.loading-inner .header_logo img {
  width: 200px;
  opacity: 0;
  -webkit-animation: logoFade 1.2s ease forwards;
          animation: logoFade 1.2s ease forwards;
}

@-webkit-keyframes logoFade {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logoFade {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* 矢印表示 */
.slick-prev:before,
.slick-next:before {
  color: rgb(92, 92, 92);
}

.slick-prev {
  left: 50px;
}

.slick-next {
  right: 50px;
}

.slick-prev,
.slick-next {
  z-index: 100;
}

/* 矢印表示ここまで */
/* スライド下のドット */
.slick-dots li button:before {
  font-family: "slick";
  font-size: 50px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* スライド下のドットここまで */
/* 複数枚のスライドをすべて表示 */
.sliderArea {
  background: #fff;
  overflow: hidden;
}

.sliderWide {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 0;
}

.sliderWide .slick-arrow {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.sliderWide:hover .slick-arrow {
  opacity: 1;
}

.slider {
  max-width: 600px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.slider .slick-list {
  overflow: visible;
}

.slider .slick-slide {
  padding: 0 10px;
  opacity: 0.5;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.slider .slick-slide.slick-current {
  opacity: 1;
}

.slider .slick-slide a {
  display: block;
}

.slider .slick-slide a:hover {
  display: block;
  opacity: 0.7;
}

.slider img {
  height: auto;
  width: 100%;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-dots {
  bottom: -33px;
}

.heartra-slider {
  position: relative;
  height: 550px;
  width: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 1150px) {
  .heartra-slider {
    height: 40vw;
    width: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .heartra-slider {
    width: 90vw;
    height: auto;
  }
}
.heartra-slider.characterSlier {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .heartra-slider.characterSlier {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.heartra-slider.characterSlier.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .heartra-slider.characterSlier.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.heartra-slider_inner {
  position: relative;
}

.circleSlider {
  width: 550px;
  height: 550px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  border: 4px solid var(--red01);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1150px) {
  .circleSlider {
    height: 40vw;
    width: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .circleSlider {
    height: 90vw;
    width: 90vw;
  }
}
.circleSlider .slick-list,
.circleSlider .slick-track,
.circleSlider .slide-item {
  height: 550px;
}
@media screen and (max-width: 1150px) {
  .circleSlider .slick-list,
  .circleSlider .slick-track,
  .circleSlider .slide-item {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .circleSlider .slick-list,
  .circleSlider .slick-track,
  .circleSlider .slide-item {
    height: 90vw;
  }
}
.circleSlider .slide-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.circleSlider .slide-item img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.circleSlider .heart_chan_name {
  position: absolute;
  left: 50%;
  bottom: 10%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: var(--red01);
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .circleSlider .heart_chan_name {
    font-size: 16px;
  }
}

.heart-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1150px) {
  .heart-arrow {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 768px) {
  .heart-arrow {
    width: 35px;
    height: 35px;
  }
}
.heart-arrow.prev {
  left: -32px;
}
@media screen and (max-width: 1150px) {
  .heart-arrow.prev {
    left: -16px;
  }
}
@media screen and (max-width: 768px) {
  .heart-arrow.prev {
    left: -16px;
  }
}
.heart-arrow.next {
  right: -32px;
}
@media screen and (max-width: 768px) {
  .heart-arrow.next {
    right: -16px;
  }
}
@media screen and (max-width: 1150px) {
  .heart-arrow.next {
    right: -16px;
  }
}
.heart-arrow img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.heart-arrow:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.intro-slider02_Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro-slider02_btn_wrap {
  width: 550px;
}
@media screen and (max-width: 1150px) {
  .intro-slider02_btn_wrap {
    width: inherit;
  }
}

.thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  row-gap: 20px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .thumb-list {
    margin: 12px auto 33px;
    width: 85%;
  }
}
.thumb-list.region {
  margin: 3px auto 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .thumb-list.region {
    margin: 12px auto 33px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
    width: 100%;
  }
}
.thumb-list .thumb-item {
  position: relative;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #979797;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
@media screen and (max-width: 1150px) {
  .thumb-list .thumb-item {
    width: 70px;
    height: 70px;
    border: 2px solid #979797;
  }
}
@media screen and (max-width: 768px) {
  .thumb-list .thumb-item {
    width: 70px;
    border: 2px solid #979797;
    width: calc((100% - 48px) / 4);
    height: inherit;
    aspect-ratio: 1/1;
  }
}
.thumb-list .thumb-item img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.thumb-list .thumb-item.is-current {
  border-color: var(--red01);
}
.thumb-list .thumb-item .region_name {
  position: absolute;
  left: 50%;
  bottom: -10px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: var(--red01);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.02em;
  width: 100%;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, 0px -2px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff, 2px 0px 0 #fff;
}
@media screen and (max-width: 768px) {
  .thumb-list .thumb-item .region_name {
    font-size: 14px;
    width: 100%;
  }
}

.region_ex .thumb-item.is-current {
  background-color: var(--red01);
}

.name-item {
  display: none;
}
.name-item.is-current {
  display: block;
}

#character {
  padding: 220px 0 0px;
  position: relative;
  background-color: white;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #character {
    padding: 110px 0 0px;
  }
}
#character .character_intro_inner {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  #character .character_intro_inner {
    padding-bottom: 90px;
  }
}
#character .characterIntro_All {
  position: relative;
  z-index: 1;
}
#character .characterIntro_Box .characterIntro_catch {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #character .characterIntro_Box .characterIntro_catch {
    margin-bottom: 35px;
  }
}
#character .characterIntro_Box .characterIntro_catch .mainTxt {
  color: var(--red01);
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  #character .characterIntro_Box .characterIntro_catch .mainTxt {
    font-size: min(8.5vw, 50px);
    line-height: 1.5;
    margin-bottom: 13px;
  }
}
#character .characterIntro_Box .characterIntro_catch .subTxt {
  color: var(--red01);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #character .characterIntro_Box .characterIntro_catch .subTxt {
    font-size: 14px;
  }
}
#character .characterIntro_lead {
  color: var(--red01);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #character .characterIntro_lead {
    font-size: min(3.8vw, 16px);
  }
}
#character .characterIntroBG {
  position: absolute;
  top: -183px;
  width: 590px;
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  #character .characterIntroBG {
    top: -90px;
    width: 209px;
  }
}
#character .characterIntroBG.BG01 {
  left: -185px;
}
@media screen and (max-width: 768px) {
  #character .characterIntroBG.BG01 {
    left: -21px;
  }
}
#character .characterIntroBG.BG02 {
  right: -195px;
}
@media screen and (max-width: 768px) {
  #character .characterIntroBG.BG02 {
    right: -62px;
    top: -48px;
  }
}

#region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
#region .region_wrap {
  background: gray;
  padding: 80px 0;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#region .region_wrap.region01 {
  background-image: url("../image/regionBG01_PC.jpg");
  border-radius: 70px 70px 0 0;
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region01 {
    background-image: url("../image/regionBG01_sp.jpg");
    border-radius: 30px 30px 0 0;
  }
}
#region .region_wrap.region02 {
  background-image: url("../image/regionBG02_PC.jpg");
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region02 {
    background-image: url("../image/regionBG02_sp.jpg");
  }
}
#region .region_wrap.region03 {
  background-image: url("../image/regionBG03_PC.jpg");
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region03 {
    background-image: url("../image/regionBG03_sp.jpg");
  }
}
#region .region_wrap.region04 {
  background-image: url("../image/regionBG04_PC.jpg");
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region04 {
    background-image: url("../image/regionBG04_sp.jpg");
  }
}
#region .region_wrap.region05 {
  background-image: url("../image/regionBG05_PC.jpg");
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region05 {
    background-image: url("../image/regionBG05_sp.jpg");
  }
}
#region .region_wrap.region06 {
  background-image: url("../image/regionBG06_PC.jpg");
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region06 {
    background-image: url("../image/regionBG06_sp.jpg");
  }
}
#region .region_wrap.region07 {
  background-image: url("../image/regionBG07_PC.jpg");
  border-radius: 0 0 70px 70px;
}
@media screen and (max-width: 768px) {
  #region .region_wrap.region07 {
    background-image: url("../image/regionBG07_sp.jpg");
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  #region .region_wrap {
    overflow: hidden;
    padding: 64px 0 32px;
  }
}
#region .characterSlier .region_ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 550px;
}
@media screen and (max-width: 1150px) {
  #region .characterSlier .region_ex {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  #region .characterSlier .region_ex {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.region_txt {
  color: var(--red01);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding-left: 25px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .region_txt {
    font-size: 14px;
  }
}
.region_txt::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../image/heart01.svg");
  background-size: 100%;
  top: 50%;
  left: 0px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.name-list .name-item .region_txt {
  margin-bottom: 16px;
}
@media screen and (max-width: 1150px) {
  .name-list .name-item .region_txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .name-list .name-item .region_txt {
    margin-bottom: 7px;
  }
}
.name-list .name-item .character_name {
  color: var(--red01);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 1150px) {
  .name-list .name-item .character_name {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .name-list .name-item .character_name {
    white-space: inherit;
    font-size: min(5.5vw, 21px);
  }
}

.heartra-slider_wrap {
  position: relative;
  z-index: 1;
}

.region_slideSub {
  position: absolute;
  width: 213px;
  top: -64px;
  left: -47px;
}
@media screen and (max-width: 1150px) {
  .region_slideSub {
    width: 149px;
    top: -55px;
    left: -36px;
  }
}
@media screen and (max-width: 768px) {
  .region_slideSub {
    width: 185px;
    top: -73px;
    left: -46px;
  }
}
.region_slideSub.reverse {
  left: inherit;
  right: -63px;
}
@media screen and (max-width: 1150px) {
  .region_slideSub.reverse {
    right: -36px;
  }
}
@media screen and (max-width: 768px) {
  .region_slideSub.reverse {
    right: -51px;
    top: -64px;
  }
}

.intro_character {
  position: absolute;
  width: 7.5vw;
  width: 115px;
}
@media screen and (max-width: 768px) {
  .intro_character {
    width: 13vw;
  }
}
.intro_character.character01 {
  left: -12%;
  top: -40%;
}
@media screen and (max-width: 768px) {
  .intro_character.character01 {
    left: 0%;
    top: -20%;
  }
}
.intro_character.character02 {
  left: 25%;
  top: -81%;
}
@media screen and (max-width: 768px) {
  .intro_character.character02 {
    left: 33%;
    top: -30%;
  }
}
.intro_character.character03 {
  left: 86%;
  top: -44%;
}
@media screen and (max-width: 768px) {
  .intro_character.character03 {
    left: 82%;
    top: 3%;
  }
}
.intro_character.character04 {
  left: 101%;
  top: 5%;
}
@media screen and (max-width: 768px) {
  .intro_character.character04 {
    left: 86%;
    top: -17%;
  }
}
.intro_character.character05 {
  left: -18%;
  top: 53%;
}
@media screen and (max-width: 768px) {
  .intro_character.character05 {
    left: -3%;
    top: 21%;
    -webkit-transform: rotate(-18deg);
            transform: rotate(-18deg);
  }
}
.intro_character.character06 {
  left: -4%;
  top: 127%;
}
@media screen and (max-width: 768px) {
  .intro_character.character06 {
    left: 76%;
    top: 101%;
  }
}
.intro_character.character07 {
  left: 5%;
  top: 69%;
}
@media screen and (max-width: 768px) {
  .intro_character.character07 {
    left: 2%;
    top: 101%;
  }
}
.intro_character.character08 {
  left: 68%;
  top: 133%;
}
@media screen and (max-width: 768px) {
  .intro_character.character08 {
    left: 20%;
    top: 113%;
  }
}
.intro_character.character09 {
  left: 86%;
  top: 75%;
}
@media screen and (max-width: 768px) {
  .intro_character.character09 {
    left: 0%;
    top: 38%;
  }
}
.intro_character.character10 {
  left: 105%;
  top: 106%;
}
@media screen and (max-width: 768px) {
  .intro_character.character10 {
    left: 89%;
    top: 88%;
  }
}

.intro_character {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(-150vh) scale(0.9);
          transform: translateY(-150vh) scale(0.9);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* 表示後 */
.intro_character.is-show {
  opacity: 1;
}

/* モーダル（矢印遷移付き）ここから */
.shop-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shop-lists li {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.js-modal-open,
.js-modal-open2 {
  cursor: pointer;
}

.modal-wrapper,
.modal-wrapper2 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(9, 9, 9, 0.7);
  z-index: 1000;
}

/* 後で復帰（モーダル）ここまで  */
/* 後で復帰（モーダル）  */
.modal-content {
  display: none;
}

/* 後で復帰（モーダル）ここまで  */
.modal-wrapper .view-window,
.modal-wrapper2 .view-window {
  padding-bottom: 120px;
}

.modal-wrapper .modal-content-wrapper,
.modal-wrapper2 .modal-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .modal-wrapper .modal-content-wrapper,
  .modal-wrapper2 .modal-content-wrapper {
    width: 90%;
    position: relative;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    margin-top: 30px;
  }
}

.modal-wrapper .modal-content-wrapper .modal-main,
.modal-wrapper2 .modal-content-wrapper .modal-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-wrapper .btn-close,
.modal-wrapper2 .btn-close {
  position: absolute;
  right: 60px;
  top: -15px;
  z-index: 20;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  cursor: pointer;
  z-index: 100;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .modal-wrapper .btn-close,
  .modal-wrapper2 .btn-close {
    right: 43px;
    top: -13px;
    width: 60px;
    height: 60px;
  }
}

.modal-wrapper .btn-prev,
.modal-wrapper2 .btn-prev {
  cursor: pointer;
  z-index: 100;
  width: 80px;
  height: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.modal-wrapper .btn-next,
.modal-wrapper2 .btn-next {
  cursor: pointer;
  z-index: 100;
  width: 80px;
  height: 50px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.modal_inner_wrapper {
  width: 100%;
  background-color: var(--blue01);
  border-radius: 10px;
  padding: 0px 0% 0;
  position: relative;
  overflow: hidden;
}
.modal_inner_wrapper .heartIcon {
  position: absolute;
  width: 31%;
  right: 1%;
  top: -7%;
}
.modal_inner_wrapper .visual {
  margin-bottom: 0px;
}
.modal_inner_wrapper .modal_exWrap {
  background: white;
  border: 1px solid black;
  padding: 23px 5% 35px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap {
    padding: 20px 5% 20px;
  }
}
.modal_inner_wrapper .modal_exWrap.styling {
  border: 0;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap.styling {
    padding: 20px 5% 6px;
  }
}
.modal_inner_wrapper .modal_exWrap .modal_exWrap_inner {
  margin-bottom: 20px;
}
.modal_inner_wrapper .modal_exWrap .name {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--blue01);
}
.modal_inner_wrapper .modal_exWrap .name.name02 {
  border-bottom: 1px solid var(--purple01);
}
.modal_inner_wrapper .modal_exWrap .name.name03 {
  border-bottom: 1px solid var(--yellow02);
}
.modal_inner_wrapper .modal_exWrap .name.name04 {
  border-bottom: 1px solid var(--pink02);
}
.modal_inner_wrapper .modal_exWrap .name.name05 {
  border-bottom: 1px solid var(--orange01);
}
.modal_inner_wrapper .modal_exWrap .name .name_img {
  display: block;
  margin: 0 auto;
  width: 46px;
}
.modal_inner_wrapper .modal_exWrap .lead {
  color: #000;
  text-align: justify;
  font-size: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.modal_inner_wrapper .modal_exWrap .explainBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 22px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .tag {
  width: 60%;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .txt {
  color: #000;
  font-size: 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 9px;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap .txt {
  padding-left: 1em;
  text-indent: -1em;
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap01 .txt {
  border-bottom: 1px solid var(--blue01);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap02 .txt {
  border-bottom: 1px solid var(--purple01);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap03 .txt {
  border-bottom: 1px solid var(--yellow02);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap04 .txt {
  border-bottom: 1px solid var(--pink02);
}
.modal_inner_wrapper .modal_exWrap .explainBox .explain .pointWrap.wrap05 .txt {
  border-bottom: 1px solid var(--orange01);
}
.modal_inner_wrapper .modal_exWrap .itemName {
  color: #000;
  text-align: left;
  font-size: 20px;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemName {
    font-size: 14px;
  }
}
.modal_inner_wrapper .modal_exWrap .itemEx {
  color: #000;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemEx {
    font-size: 12px;
  }
}
.modal_inner_wrapper .modal_exWrap .shopName {
  color: #000;
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .shopName {
    font-size: 10px;
  }
}
.modal_inner_wrapper .modal_exWrap .itemcaution {
  color: #000;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 14px */
  letter-spacing: -0.6px;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .modal_inner_wrapper .modal_exWrap .itemcaution {
    font-size: 10px;
  }
}
.modal_inner_wrapper.modal02 {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}
.modal_inner_wrapper.modal02 .visual {
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.modal_buttonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 26px;
  position: absolute;
  width: 100%;
  bottom: 5px;
  padding: 0 5%;
}

/* 背景ロック（iOS Safari対策：html固定） */
html.is-lock {
  position: fixed;
  inset: 0;
  overflow: hidden;
  width: 100%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.character-card {
  --red01: #e60012;
  position: relative;
  padding: 88px 3%;
  border: 8px solid var(--red01);
  border-radius: 40px;
  background: #fff;
  color: var(--red01);
  background-image: url("../image/modal_BG_PC.png");
  background-size: 100% auto;
  background-position: top;
  background-repeat: repeat-y;
  height: 700px;
}
@media screen and (max-width: 768px) {
  .character-card {
    background-image: url("../image/modal_BG_sp.png");
    border: 4px solid var(--red01);
    padding: 30px 3%;
    border-radius: 20px;
    height: 90svh;
    overflow: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }
  .character-card::-webkit-scrollbar {
    width: 6px;
  }
  .character-card::-webkit-scrollbar-track {
    background: transparent;
  }
  .character-card::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  .character-card::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
  }
}
.character-card__inner {
  display: grid;
  grid-template-columns: 44% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .character-card__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.character-card__visual img {
  width: 100%;
  display: block;
}
.character-card__content {
  max-width: 680px;
}
.character-card__area {
  position: relative;
  margin: 0 0 15px;
  padding-left: 32px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.character-card__area::before {
  content: "♥";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 24px;
}
.character-card__title {
  color: var(--red01);
  font-size: 36px;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  margin: 10px 0 38px;
}
@media screen and (max-width: 1150px) {
  .character-card__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .character-card__title {
    font-size: min(5.8vw, 30px);
    font-size: min(4.6vw, 25px);
    margin: 8px 0 20px;
  }
}
.character-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
}
.character-card__block .explain {
  color: var(--red01);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .character-card__block .explain {
    font-size: 16px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.character-card__text {
  padding: 20px 4%;
  border: 3px dashed var(--red01);
  background-color: white;
  border-radius: 8px;
  color: var(--red01);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .character-card__text {
    font-size: 13px;
    padding: 6px 4%;
  }
}

.character-card__content {
  height: 500px;
  padding-right: 16px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
@media screen and (max-width: 768px) {
  .character-card__content {
    height: inherit;
    overflow: inherit;
    padding-right: 0px;
    width: 94%;
  }
}
.character-card__content::-webkit-scrollbar {
  width: 6px;
}
.character-card__content::-webkit-scrollbar-track {
  background: transparent;
}
.character-card__content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.character-card__content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-height: 800px) {
  .character-card {
    height: 80vh;
  }
}
@media screen and (max-height: 800px) and (max-width: 768px) {
  .character-card {
    height: auto;
    height: 90svh;
  }
}
@media (max-height: 800px) {
  .character-card__content {
    height: 50vh;
    overflow-y: auto;
  }
}
@media screen and (max-height: 800px) and (max-width: 768px) {
  .character-card__content {
    height: auto;
    overflow-y: visible;
  }
}
.character-card__visual {
  display: block;
}
@media screen and (max-width: 768px) {
  .character-card__visual {
    width: 85%;
    margin: 0 auto 20px;
  }
}

#other {
  padding: 80px 0 0px;
  text-align: center;
}
#other .otherLink_Box .categoryTitle {
  margin-bottom: 15px;
}
#other .link_lead {
  color: var(--red01);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #other .link_lead {
    font-size: min(3.5vw, 14px);
  }
}
#other .otherLink_banner {
  display: block;
  margin: 0 auto 80px;
  max-width: 760px;
  width: 90%;
}

.social-links-box {
  border-top: 8px solid var(--red01);
  border-bottom: 8px solid var(--red01);
  padding-block: 110px;
  background-image: url("../image/snsBG_PC.jpg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .social-links-box {
    border-top: 4px solid var(--red01);
    border-bottom: 4px solid var(--red01);
    background-image: url("../image/snsBG_sp.jpg");
  }
}
.social-links-box--txt {
  color: var(--red01);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .social-links-box--txt {
    font-size: min(4vw, 18px);
  }
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

header {
  width: 100%;
  padding: 24px 0;
  background: #FFF;
  -webkit-box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.11);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 0;
  }
}
header .header_logo {
  width: 150px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  header .header_logo {
    width: 120px;
    margin-left: 10px;
  }
}

.bottom-global-nav {
  position: fixed;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 800;
  width: 100%;
  background: var(--red01);
  color: #fff;
}

.bottom-global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 28px 4%;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bottom-global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .bottom-global-nav__list::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: white;
  }
}

.bottom-global-nav__list li {
  position: relative;
  padding: 0 36px;
}
@media screen and (max-width: 768px) {
  .bottom-global-nav__list li {
    width: 25%;
    padding: 12px 0;
    text-align: center;
  }
}

.bottom-global-nav__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 26px;
  background: #fff;
  border-radius: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .bottom-global-nav__list li:not(:last-child)::after {
    width: 1px;
    height: 24px;
  }
}

.bottom-global-nav__list a {
  display: block;
  color: #fff;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 20px */
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1150px) {
  .bottom-global-nav__list a {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .bottom-global-nav__list a {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .bottom-global-nav__list li:nth-child(n+5) {
    width: 30%;
  }
  .bottom-global-nav__list li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2px;
    height: 28px;
    background: #fff;
    border-radius: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .bottom-global-nav__list li:nth-child(4)::after,
  .bottom-global-nav__list li:nth-child(7)::after {
    display: none;
  }
}
#js-global-nav {
  opacity: 0;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
}

#js-global-nav.is-show {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  pointer-events: auto;
}

/* ================================
   Footer Styles
   ================================ */
/* フッター全体のコンテナ */
.o-footer__info {
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* フッター内容の主要アイテム */
.o-footer__info_item {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

/* メインタイトル */
.o-footer__info_hdg {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/* リスト全体 */
.o-footer__info_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.o-footer__info_list::before {
  content: "";
  position: absolute;
  background: rgb(201, 201, 201);
  height: 100%;
  width: 1px;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list::before {
    content: none;
  }
}

/* リストアイテム */
.o-footer__info_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.o-footer__info_list_item {
  max-width: 350px;
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list_item {
    max-width: inherit;
    width: 80%;
  }
}

/* リストアイテムの見出し */
.o-footer__info_list_item__hdg {
  font-size: 18px;
  font-weight: bold;
  color: #d32f2f;
  margin: 0;
  text-align: center;
  margin-bottom: 14px;
}

/* ニュースレターリンク */
.o-footer__info_list_item__letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  border-radius: 10px;
  padding: 10px 3%;
  position: relative;
}
.o-footer__info_list_item__letter::before {
  content: "";
  display: block;
  z-index: 2;
  position: absolute;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  -webkit-transition: background-image 0.4s;
  transition: background-image 0.4s;
  background-image: url("../image/footer_arrow01.svg");
  width: 24px;
  bottom: 10px;
  right: 20px;
  height: 6px;
}

.o-footer__info_list_item__letter:hover {
  opacity: 0.8;
}

/* ニュースレターアイコン */
.o-footer__info_list_item__letter_icon {
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list_item__letter_icon {
    width: 150px;
  }
}

/* ニュースレターテキスト */
.o-footer__info_list_item__letter_txt {
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  position: relative;
  width: 73%;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list_item__letter_txt {
    width: auto;
  }
}

/* SNS リスト */
.o-footer__info_list_item__sns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .o-footer__info_list_item__sns {
    margin-top: 0;
  }
}

/* SNSアイテム */
.o-footer__info_list_item__sns_item {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.o-footer__info_list_item__sns_item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.o-footer__info_list_item__sns_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ロゴ */
.o-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: auto;
  margin-bottom: 50px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.o-footer__logo:hover {
  opacity: 0.8;
}

/* コピーライト */
.o-footer__copyright {
  font-size: 12px;
  color: #999;
  text-align: center;
  padding: 20px;
  margin: 0;
  width: 100%;
}

/* ユーティリティクラス */
.u-img_w100 {
  width: 100%;
  height: auto;
  display: block;
}

.u-img_w100-pc {
  display: none;
}

.u-img_w100-sp {
  display: block;
}

.o-footer__logo_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.js_fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}
.js_fadein.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js_fadein.js_fadein02 {
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.js_fadein02.is-visible {
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */
