@charset "UTF-8";
/* Scss Document */
/*--------------------------------------------------
設定
--------------------------------------------------*/
/* Scss Document */
.l_base {
  position: relative;
  opacity: 1;
  max-width: 1200px;
  margin: auto;
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .l_base {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

/* Scss Document */
/*
Copyright (c) 2015 Brenden Palmer
https://codepen.io/brenden/pen/VLjKMQ
Released under the MIT license
https://opensource.org/licenses/mit-license.php
*/
@media screen and (min-width: 769px) {
  .outer-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1326px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .checkbox-toggle {
    display: none;
  }
  .menuList {
    padding-top: 15px;
    display: flex;
  }
  .menuList__item {
    white-space: nowrap;
    margin: 0 1vw;
  }
  .menuList__item a {
    opacity: 1;
    transition: opacity 0.3s;
  }
  .menuList__item a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu {
    z-index: 1;
  }
  .outer-menu .checkbox-toggle {
    position: absolute;
    top: 0;
    left: calc(100vw - 60px);
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div {
    transform: rotate(135deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:before {
    top: 0;
    transform: rotate(90deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
    opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu {
    pointer-events: auto;
    visibility: visible;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.75s;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
  }
  .outer-menu .hamburger {
    position: absolute;
    top: 0;
    left: calc(100% - 60px);
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 15px;
    background: #2C2C2C;
    border-radius: 0 0.12em 0.12em 0;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #FEFEFE;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .hamburger > div:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all 0.4s ease;
  }
  .outer-menu .hamburger > div:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: inherit;
    transition: all 0.4s ease;
    top: 10px;
  }
  .outer-menu .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .menu .menu__wrap1 {
    width: 300vw;
    height: 300vw;
    color: #202020;
    background: url(../../image/festival/bg_concept.png);
    border-radius: 50%;
    transition: all 0.4s ease;
    flex: none;
    transform: scale(0);
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
  }
  .outer-menu .menu .menu__wrap1 .menu__wrap2 {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    flex: none;
    padding-top: 13.3333333333vw;
    padding-bottom: 8vw;
  }
  .outer-menu .menuList {
    list-style: none;
    padding: 0 2.6666666667vw;
    margin: 16vw 0 0;
    display: block;
    max-height: 100vh;
    width: 100%;
  }
  .outer-menu .menuList__item {
    padding: 0;
    margin: 2.6666666667vw;
    font-size: 4.2666666667vw;
    display: block;
  }
  .outer-menu .menuList__item > a {
    position: relative;
    display: block;
    cursor: pointer;
    transition: color 0.4s ease, border 0.4s ease;
    padding: 2.6666666667vw;
    border-bottom: 1px solid #202020;
    font-family: "Noto Sans JP", sans-serif;
  }
  .outer-menu .menuList__item > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translate(0, -50%) rotate(45deg);
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 2px solid #202020;
    border-right: 2px solid #202020;
  }
}
/* clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: ".";
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none;
  }
}

/* base style
--------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  color: #202020;
  font-size: 4.8vw;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}
body.is_fixed {
  position: fixed;
}
@media screen and (max-width: 768px) {
  body.is_fixed .main {
    position: relative;
    z-index: -2;
    margin-top: 0;
  }
}

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

.gHead {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1111;
}
@media screen and (min-width: 769px) {
  .gHead {
    background: rgba(44, 44, 44, 0.4);
  }
}
.gHead__inner {
  width: calc(100% - 60px);
  color: #fff;
  position: relative;
  height: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding-left: 2.6666666667vw;
}
@media screen and (max-width: 768px) {
  .gHead__inner {
    background: rgba(44, 44, 44, 0.4);
  }
}
@media screen and (max-width: 768px) {
  .gHead__inner picture {
    display: flex;
    align-items: center;
  }
}
.gHead__inner a {
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .gHead__inner a:hover {
    opacity: 0.7;
  }
}

.headLogo {
  display: block;
  width: 10vw;
}
@media screen and (max-width: 768px) {
  .headLogo {
    width: 30vw;
  }
}

.headSns {
  width: 100%;
  padding: 0 5.3333333333vw;
  display: flex;
  justify-content: space-between;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .headSns {
    display: none;
  }
}
.headSns a {
  width: 7%;
}
.headSns a img {
  max-width: none;
  width: 100%;
}

.gFoot {
  background: #3C2388;
  color: #fff;
  text-align: center;
  padding: 21.3333333333vw 0 13.3333333333vw;
}
@media screen and (min-width: 769px) {
  .gFoot {
    padding: 5.8565153734vw 0 2.196193265vw;
  }
}
.gFoot__copy {
  font-size: 3.7333333333vw;
  margin-top: 8vw;
}
@media screen and (min-width: 769px) {
  .gFoot__copy {
    font-size: min(1.0248901903vw, 1.4rem);
    margin-top: 0;
  }
}
.gFoot__link {
  position: relative;
  font-size: 4.2666666667vw;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .gFoot__link {
    font-size: 1.6rem;
  }
}
.gFoot__link::after {
  content: "";
  position: relative;
  top: 1.3vw;
  margin-left: 2vw;
  display: inline-block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .gFoot__link::after {
    max-width: 10px;
    max-height: 10px;
    top: 4px;
  }
}
@media screen and (min-width: 769px) {
  .gFoot__link:hover {
    opacity: 0.7;
  }
  .gFoot__link:hover::after {
    opacity: 0.7;
  }
}

.footSns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 769px) {
  .footSns {
    max-width: 557.17px;
    margin: 5.8565153734vw auto 1.4641288433vw;
  }
}
.footSns a {
  width: 7%;
}
@media screen and (min-width: 769px) {
  .footSns a {
    max-width: 44px;
    transition: all 0.3s;
  }
  .footSns a:hover {
    opacity: 0.7;
  }
}
.footSns a img {
  max-width: none;
  width: 100%;
}

.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../../image/festival/mv_pc.jpg) no-repeat center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .mv {
    background: url(../../image/festival/mv_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}
.mv__txt {
  max-width: 700px;
}
.mv__scroll {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #3C2388;
}
.mv__scroll img {
  position: relative;
  width: 36px;
  display: block;
  margin-bottom: 8px;
  transform: rotate(90deg);
  animation-name: scrollIco;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-out;
}

@keyframes scrollIco {
  0% {
    top: 0;
  }
  100% {
    top: 10px;
  }
}
.secBg {
  position: relative;
  background: url(../../image/festival/bg_concept.png) center top;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .secBg {
    background-size: auto;
  }
}
.secBg.v-info {
  background: url(../../image/festival/bg_info3.png) center top;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .secBg.v-info {
    background-size: auto;
  }
}
.secBg.v-info::before {
  content: "";
  background: url(../../image/festival/bg_info2.png) no-repeat center top;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .secBg.v-info::before {
    background: url(../../image/festival/bg_info2.png) no-repeat right top;
    background-size: 200%;
  }
}
.secBg.v-access {
  background: url(../../image/festival/bg_access.png) center top;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .secBg.v-access {
    background-size: auto;
  }
}
.secBg.v-voice {
  background: url(../../image/festival/bg_voice.png) center top;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .secBg.v-voice {
    background-size: auto;
  }
}
.secBg.v-partner {
  background: url(../../image/festival/bg_partner.png) center top;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  .secBg.v-partner {
    background-size: auto;
  }
}

/* ttl */
.m_ttl1 {
  position: relative;
  color: #fff;
  background: #3C2388;
  display: inline-block;
  font-size: 6rem;
  padding: 8px 24px;
  margin-top: 34px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .m_ttl1 {
    font-size: 11.7333333333vw;
    margin-top: 9.0666666667vw;
  }
}
.m_ttl1 span {
  position: absolute;
  display: flex;
  align-items: center;
  background: #664497;
  font-size: 1.8rem;
  padding: 10px;
  left: 0;
  top: -34px;
  height: 34px;
}
@media screen and (max-width: 768px) {
  .m_ttl1 span {
    font-size: 4.8vw;
    height: 9.0666666667vw;
    top: -9.0666666667vw;
  }
}

.m_ttl2 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  margin-top: 80px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .m_ttl2 {
    font-size: 6.4vw;
  }
}

.concept {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .concept {
    display: block;
  }
}
.concept__ph {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(42% - 60px);
}
@media screen and (max-width: 768px) {
  .concept__ph {
    width: 100%;
  }
}
.concept__ph--ph1 {
  max-width: 340px;
  margin-left: 80px;
}
.concept__ph--ph2 {
  max-width: 200px;
}
.concept__txt {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .concept__txt {
    width: 100%;
  }
}
.concept__txt p + p {
  margin-top: 40px;
}

.prevArea {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  text-align: center;
  padding: 24px;
  margin-top: 48px;
}
.prevArea__ttl {
  font-weight: 700;
  padding-bottom: 16px;
}
.prevArea__link {
  color: #3C2388;
  text-decoration: underline;
}
.prevArea a {
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .prevArea a:hover {
    opacity: 0.7;
  }
}

.schedule {
  border-radius: 5px;
  background: url(../../image/festival/bg_schedule.png);
  text-align: center;
  padding: 0 20px 32px;
}
@media screen and (max-width: 768px) {
  .schedule {
    padding-bottom: 1px;
  }
}
.schedule__ttl {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  background: #DBB621;
  color: #fff;
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .schedule__ttl {
    font-size: 9.6vw;
  }
}
.schedule__name {
  color: #664497;
  margin-top: 16px;
  font-size: clamp(30px, 2.9282576867vw, 40px);
}
@media screen and (max-width: 768px) {
  .schedule__name {
    font-size: 10.6666666667vw;
  }
}
.schedule__date {
  font-size: clamp(40px, 3.6603221083vw, 50px);
}
@media screen and (max-width: 768px) {
  .schedule__date {
    font-size: 13.3333333333vw;
    line-height: 1.2;
  }
}
.schedule__date p {
  display: inline;
  background: linear-gradient(transparent 70%, #DBB621 70%);
}
.schedule__date span {
  font-size: clamp(16px, 1.756954612vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .schedule__date span {
    font-size: 6.4vw;
  }
}
.schedule__other {
  font-size: clamp(16px, 1.756954612vw, 2.4rem);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .schedule__other {
    font-size: 6.4vw;
    margin-top: 5.3333333333vw;
  }
}
.schedule__other--price {
  color: #CB5553;
}

.sponsorship {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .sponsorship {
    display: block;
  }
}
.sponsorship__item {
  width: 32.33%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sponsorship__item {
    width: 100%;
  }
}
.sponsorship dt {
  background: #3C2388;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  padding: 0 20px;
  margin-bottom: 16px;
}
.sponsorship dd {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sponsorship dd {
    margin-bottom: 8vw;
  }
}
.sponsorship dd picture {
  width: 30%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.storeCategory {
  background: url(../../image/festival/balloon_orange.svg) no-repeat;
  background-size: contain;
  width: 345px;
  height: 70px;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 8px 0 0 25px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .storeCategory {
    width: 100%;
    font-size: 5.8666666667vw;
    height: 18.6666666667vw;
  }
}
.storeCategory.v-yellow {
  background: url(../../image/festival/balloon_yellow.svg) no-repeat;
  background-size: contain;
}
.storeCategory.v-red {
  background: url(../../image/festival/balloon_red.svg) no-repeat;
  background-size: contain;
}

.storeListWrap {
  position: relative;
  padding-bottom: 50px;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .storeListWrap {
    padding-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .storeListWrap {
    padding-right: 0;
    margin-bottom: 64px;
  }
}

.storeList {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .storeList {
    margin-bottom: 10.6666666667vw;
  }
}
.storeList__item {
  width: 208px !important;
  height: auto !important;
  min-width: 208px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 0 16px;
  margin-right: 32px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .storeList__item {
    width: 50% !important;
  }
}
.storeList__item--img {
  overflow: hidden;
}
.storeList__item--img img {
  transition: scale 0.3s ease-in-out;
  object-fit: cover;
  width: 100%;
  height: 138.67px;
}
@media screen and (max-width: 768px) {
  .storeList__item--img img {
    height: 36.9786666667vw;
  }
}
.storeList__item--name {
  margin-top: 16px;
  padding: 0 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.storeList__item--txt {
  font-size: 1.6rem;
  padding: 24px 8px 0;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .storeList__item--txt {
    font-size: 4.2666666667vw;
    padding: 6.4vw Vw(8) 0;
  }
}
@media screen and (min-width: 769px) {
  .storeList__item:hover .storeList__item--img img {
    scale: 1.1;
  }
}

.organizationsListWrap {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .organizationsListWrap {
    padding-left: 2.6666666667vw;
  }
}

.organizationsList {
  display: flex;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .organizationsList {
    flex-wrap: nowrap;
    margin-bottom: 6.4vw;
  }
}
.organizationsList__item {
  width: 180px !important;
  height: auto !important;
  min-width: 180px;
  padding: 0 0 16px;
  margin-right: 32px;
  cursor: pointer;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .organizationsList__item {
    width: 48vw !important;
  }
}
.organizationsList__item--img {
  border-radius: 10px;
  overflow: hidden;
}
.organizationsList__item--img img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .organizationsList__item--img img {
    width: 100%;
    height: 32vw;
  }
}
.organizationsList__item--name {
  margin-top: 16px;
  padding: 0 8px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .organizationsList__item--name {
    margin-top: 4.2666666667vw;
    padding: 0 2.1333333333vw;
  }
}
.organizationsList__item--txt {
  font-size: 1.6rem;
  padding: 8px 8px 0;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .organizationsList__item--txt {
    padding: 2.1333333333vw 2.1333333333vw 0;
    font-size: 4.2666666667vw;
  }
}

.access {
  color: #fff;
}

.accessInfo {
  margin-bottom: 32px;
}
.accessInfo dt {
  background: #3C2388;
  display: inline-block;
  padding: 0 16px;
  margin-bottom: 8px;
}
.accessInfo dd {
  margin-bottom: 16px;
}

.gMap {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 16px;
}
.gMap iframe {
  width: 100%;
  aspect-ratio: 16/7;
}
@media screen and (max-width: 768px) {
  .gMap iframe {
    aspect-ratio: 1/1;
  }
}

.trainInfo li {
  margin-left: 16px;
  text-indent: -1em;
  padding-left: 1em;
}

.voiceSlide {
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .voiceSlide {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.voiceSlide__item {
  background: #fff;
  border-radius: 20px;
  margin: 0 24px;
  padding: 40px 48px;
  font-size: 1.6rem;
  font-weight: 400;
}
.voiceSlide__item--prof {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.voiceSlide__item--prof picture {
  width: 80px;
}
.voiceSlide__item--prof p {
  background: #E28F4F;
  color: #fff;
  width: calc(100% - 100px);
  text-align: center;
  font-weight: 500;
}

.partnerList {
  display: flex;
}
@media screen and (min-width: 769px) {
  .partnerList {
    margin: 0 -1%;
  }
}
@media screen and (max-width: 768px) {
  .partnerList {
    display: block;
  }
}
.partnerList__item {
  background: #fff;
  border-radius: 5px;
  width: 31.33%;
  margin: 0 1%;
  padding: 24px 16px;
}
@media screen and (max-width: 768px) {
  .partnerList__item {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}
.partnerList__item--img {
  max-width: calc(100% - 16px);
  margin-bottom: 24px;
  display: block;
  margin: auto;
}
.partnerList__item--name {
  margin-bottom: 8px;
}
.partnerList__item--txt {
  font: 1.4rem;
  font-weight: 400;
}

.contactArea {
  padding: 64px 0 80px;
  text-align: center;
}
.contactArea__ttl {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.contactArea a {
  position: relative;
  background: #3C2388;
  color: #fff;
  font-weight: 700;
  text-align: center;
  max-width: 650px;
  margin: auto;
  display: block;
  border-radius: 50px;
  padding: 16px;
  opacity: 1;
  transition: opacity 0.3s;
}
.contactArea a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .contactArea a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top: 0.5333333333vw solid #fff;
    border-right: 0.5333333333vw solid #fff;
    right: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .contactArea a:hover {
    opacity: 0.7;
  }
}

.swiper-scrollbar {
  max-width: 1160px;
}

.swiper-scrollbar {
  background-color: #EFEFEF !important;
}

.swiper-scrollbar-drag {
  background-color: #3C2388 !important;
}

/* modal */
body.is_active {
  position: fixed;
  width: 100%;
  margin: auto;
}

.libHdc_modalArea {
  display: none;
  position: fixed;
  z-index: 99999; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.libHdc_modalArea .libHdc_modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(44, 44, 44, 0.75);
}
.libHdc_modalArea .libHdc_modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 60px 40px 40px;
  background-color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  border-radius: 20px;
}
.libHdc_modalArea .libHdc_modalWrapper.v-map {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .libHdc_modalArea .libHdc_modalWrapper.v-map {
    max-width: 1500px;
    max-height: 90vh;
  }
}
@media screen and (max-width: 768px) {
  .libHdc_modalArea .libHdc_modalWrapper {
    padding: 12.8vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  }
}
.libHdc_modalArea .libHdc_modalArea .libHdc_modalContents {
  height: 80vh;
  overflow-y: scroll;
}
.libHdc_modalArea .libHdc_closeModal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .libHdc_modalArea .libHdc_closeModal:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .libHdc_modalArea .libHdc_closeModal {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    max-width: 40px;
    min-height: 40px;
  }
}

.modalHead {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .modalHead {
    flex-wrap: wrap;
    margin-bottom: 10.6666666667vw;
  }
}
.modalHead__img {
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modalHead__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2.6666666667vw;
  }
}
.modalHead__txt {
  width: calc(100% - 340px);
}
@media screen and (max-width: 768px) {
  .modalHead__txt {
    width: 100%;
  }
}
.modalHead__txt--name {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .modalHead__txt--name {
    margin-bottom: 1.3333333333vw;
  }
}
