@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
@-webkit-keyframes mask-tl {
  from {
    -webkit-mask-position: 100% 100%;
            mask-position: 100% 100%;
  }
  to {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
@keyframes mask-tl {
  from {
    -webkit-mask-position: 100% 100%;
            mask-position: 100% 100%;
  }
  to {
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
}
@-webkit-keyframes mask-br {
  from {
    -webkit-mask-position: -100% 100%;
            mask-position: -100% 100%;
  }
  to {
    -webkit-mask-position: 100% 0%;
            mask-position: 100% 0%;
  }
}
@keyframes mask-br {
  from {
    -webkit-mask-position: -100% 100%;
            mask-position: -100% 100%;
  }
  to {
    -webkit-mask-position: 100% 0%;
            mask-position: 100% 0%;
  }
}
@-webkit-keyframes mask-none {
  to {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@keyframes mask-none {
  to {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes huwahuwa {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes huwahuwa {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes kurukuru {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes kurukuru {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
}

body {
  position: relative;
  font-family: "游明朝", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/common/bg_meshgradation-sp.jpg) no-repeat center/cover;
  z-index: -5;
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: #000000;
  word-wrap: break-word;
  line-break: anywhere;
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: clip;
}

.main,
.main > * {
  overflow-x: clip;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
}

.main p,
.main dd {
  line-height: 1.666;
}
.main p a,
.main dd a {
  display: inline;
  text-decoration: underline;
  -webkit-transition-property: color;
  transition-property: color;
}
.main p a:hover,
.main dd a:hover {
  opacity: 1;
  color: #ff3355;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
  body {
    font-size: 1.8rem;
    font-size: max(1.8rem, 14px);
  }
  body::before {
    background-image: url(../images/common/bg_meshgradation-pc.jpg);
  }
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
  .inner {
    padding: 0 calc(100 / 1920 * 100%);
    width: 90%;
    max-width: 1280px;
  }
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
  .inner {
    padding: 0 100px;
  }
}
/* =====================================================================
    共通
======================================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ff-en {
  font-family: "Barlow", sans-serif;
}

.movie-embed {
  position: relative;
  padding-top: 56.25%;
}
.movie-embed iframe,
.movie-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto 8rem;
  gap: 0.2em 0;
  font-size: 2.8rem;
}
.sec-ttl .ja {
  font-weight: bold;
  color: #ff3355;
  letter-spacing: 0.2em;
}
.sec-ttl .en {
  font-family: "Barlow", sans-serif;
  font-size: 357%;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 0;
    font-size: 2.4rem;
  }
}

.btn01 {
  position: relative;
  padding: 1em 1.4em;
  padding-right: 2em;
  background-color: #42174d;
  -webkit-filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
          filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
}
@media screen and (min-width: 768px) {
  .btn01 {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .btn01:hover {
    opacity: 1;
    background-color: #ff3355;
  }
}
.btn01::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.8em;
  width: 0.5em;
  height: 0.7em;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.1 17.4"><polygon points="1.4 17.4 0 16 6.3 9.7 .7 9.7 .7 7.7 6.3 7.7 0 1.4 1.4 0 10.1 8.7 1.4 17.4"/></svg>');
          mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.1 17.4"><polygon points="1.4 17.4 0 16 6.3 9.7 .7 9.7 .7 7.7 6.3 7.7 0 1.4 1.4 0 10.1 8.7 1.4 17.4"/></svg>');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #ffffff;
}
.btn01 span {
  display: inline-block;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#b1fcf6), color-stop(50%, #ffffff), to(#f7c6d1));
  background: linear-gradient(90deg, #b1fcf6 0%, #ffffff 50%, #f7c6d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
  line-height: 1.357;
}
.btn01.nolink {
  background-color: #6c6c6c;
  pointer-events: none;
}
.btn01.nolink::after {
  display: none;
}
.btn01.nolink span {
  -webkit-filter: grayscale(1) brightness(200%) opacity(0.7);
          filter: grayscale(1) brightness(200%) opacity(0.7);
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .header {
    background-color: #ffffff;
    border-style: solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #d4c7b4 0%, #f7fffe 20%, #c0f0ec 50%, #ebd3d8 65%, #fcefca 100%);
    border-image-width: 0 0 2px 0;
  }
  .header-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    width: calc(1840 / 1920 * 100%);
  }
}
.header-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.2rem 0;
  width: 100%;
  z-index: 5;
}
.header-inner h1 {
  margin-left: calc(35 / 750 * 100%);
  width: calc(116 / 750 * 100%);
}
.header-inner h1 img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.header-inner h2 {
  margin-left: calc(40 / 750 * 100%);
  width: calc(160 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .header-inner {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    padding: 0;
    width: auto;
    max-width: initial;
  }
  .header-inner h1 {
    width: 10.4rem;
  }
  .header-inner h2 {
    margin-left: 2.8rem;
    width: 12rem;
  }
}
.header.is-active .header-inner h1 img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.header.is-active .btn-menu::after {
  content: "CLOSE";
}
.header.is-active .btn-menu span:nth-of-type(1) {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.header.is-active .btn-menu span:nth-of-type(2) {
  bottom: auto;
  top: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.btn-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.4em;
  height: 10.4em;
  font-size: 1rem;
  background-color: #000000;
}
.btn-menu::after {
  content: "MENU";
  position: absolute;
  display: block;
  bottom: 1em;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 2.2em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}
.btn-menu-inner {
  position: absolute;
  top: 2.6em;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 6.4em;
  height: 2em;
}
.btn-menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: linear-gradient(45deg, #b1fcf6 0%, #ffffff 50%, #f7c6d1 100%);
  border-radius: 0.4em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.btn-menu span:nth-of-type(2) {
  top: 2em;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 16rem 0 120px;
  background-color: rgba(255, 129, 154, 0.9);
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .nav {
    position: relative;
    display: block !important;
    background-color: transparent;
    padding: 0;
    width: auto;
    height: 100%;
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .nav-deco-l, .nav-deco-r {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .nav-deco-l::before, .nav-deco-l::after, .nav-deco-r::before, .nav-deco-r::after {
    content: "";
    position: absolute;
    display: block;
    -webkit-filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
            filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
  }
  .nav-deco-l::before {
    top: 12vh;
    left: -15.1rem;
    width: 30rem;
    height: 25.5rem;
    background: url(../images/top_common/img_biwa_parts03_L.png) no-repeat center/contain;
  }
  .nav-deco-l::after {
    top: calc(12vh + 21.7rem);
    left: -29.2rem;
    width: 46.4rem;
    height: 62.7rem;
    background: url(../images/top_common/img_biwa_parts04_L.png) no-repeat center/contain;
  }
  .nav-deco-r::before {
    top: 12vh;
    right: -15.4rem;
    width: 29.4rem;
    height: 25.1rem;
    background: url(../images/top_common/img_biwa_parts03_R.png) no-repeat center/contain;
  }
  .nav-deco-r::after {
    top: calc(12vh + 21.1rem);
    right: -27.9rem;
    width: 45rem;
    height: 63.9rem;
    background: url(../images/top_common/img_biwa_parts04_R.png) no-repeat center/contain;
  }
}
.nav > .inner {
  width: calc(410 / 750 * 100%);
}
@media screen and (min-width: 768px) {
  .nav > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    width: 100%;
    padding: 0;
    max-width: initial;
  }
}
.nav-menu {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 4rem;
}
.nav-menu > li {
  font-size: 3.5rem;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #d4c7b4 0%, #f7fffe 20%, #c0f0ec 50%, #ebd3d8 65%, #fcefca 100%);
  border-image-width: 0 0 1px 0;
}
.nav-menu > li:last-child {
  border-image-width: 0;
}
.nav-menu > li > a {
  position: relative;
  text-align: center;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.51em 0;
  width: 100%;
  min-height: 3.14em;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #ffffff;
}
.nav-menu > li > a .en {
  display: block;
  margin-top: 0.3em;
  font-family: "Barlow", sans-serif;
  font-size: 62%;
  letter-spacing: 0.1em;
  color: #581f66;
}
.nav-menu > li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .nav-menu > li {
    font-size: 2rem;
    border-image-width: 0;
  }
  .nav-menu > li > a {
    padding: 0 1.4em;
    width: auto;
    height: 100%;
    min-height: 4.8em;
    color: #000000;
    white-space: nowrap;
    -webkit-transition-property: color;
    transition-property: color;
  }
  .nav-menu > li > a:hover {
    opacity: 1;
    color: #ff3355;
  }
}
.nav-en {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 8rem;
  font-size: 3.4rem;
}
.nav-en a {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.82em;
  height: 2.82em;
  font-family: "Barlow", sans-serif;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .nav-en {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .nav-en a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .nav-en a:hover {
    opacity: 1;
    background-color: #ff3355;
  }
}
.nav-sns {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 6.4rem;
}
.nav-sns li {
  margin: 0 0.62em;
}
.nav-sns li a {
  width: 1em;
  height: 1em;
}
.nav-sns li a svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
@media screen and (min-width: 768px) {
  .nav-sns {
    margin-right: 1em;
    font-size: 2.4rem;
  }
  .nav-sns li a svg {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #000000;
  }
  .nav-sns li a:hover {
    opacity: 1;
  }
  .nav-sns li a:hover svg {
    fill: #ff3355;
  }
}

/* =====================================================================
    outline
======================================================================*/
.outline-list li {
  position: relative;
  padding: 4rem 0;
  line-height: 1.666;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #d4c7b4 0%, #f7fffe 20%, #c0f0ec 50%, #ebd3d8 65%, #fcefca 100%);
  border-image-width: 0 0 2px 0;
}
.outline-list li:first-child {
  padding-top: 0;
}
.outline-list li h3 {
  margin-bottom: 2rem;
  font-weight: bold;
  color: #42174d;
}
.outline-list li p em {
  font-style: normal;
  font-size: 133%;
  font-weight: bold;
  letter-spacing: 0;
  color: #ff3355;
}
.outline-list li p small {
  font-size: 75%;
}
.outline-list .btn-map {
  position: relative;
  display: inline-block;
  margin-top: 0.6em;
  padding: 0.2em 1.5em;
  font-size: 80%;
  border-radius: 2em;
  letter-spacing: 0;
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}
@media screen and (min-width: 768px) {
  .outline-list .btn-map:hover {
    color: #ffffff;
    background-color: #ff3355;
  }
}
@media screen and (min-width: 768px) {
  .outline-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .outline-list li h3 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 9em;
    margin: 0;
    padding-right: 1em;
  }
}
.outline-logo {
  width: auto;
  height: 1.2em;
}

/* =====================================================================
    sns
======================================================================*/
.sns {
  padding: 20rem 0;
}
@media screen and (min-width: 768px) {
  .sns {
    padding: 16rem 0;
  }
}
.sns::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 51, 85, 0.5);
}
.sns-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .sns-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .sns-grid-right {
    display: contents;
  }
}
@media screen and (min-width: 768px) {
  .sns-grid-right {
    width: calc(480 / 1080 * 100%);
  }
}
.sns-ttl {
  position: relative;
  right: -0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin: 0 auto 8rem;
  gap: 2rem 0;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sns-ttl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.sns-ttl .ja {
  font-weight: bold;
  color: #42174d;
  letter-spacing: 0.2em;
}
.sns-ttl .en {
  font-family: "Barlow", sans-serif;
  font-size: 357%;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .sns-ttl {
    right: 0;
    margin-bottom: 0;
    font-size: 2.4rem;
  }
}
.sns-widget {
  position: relative;
  padding: 5rem;
}
.sns-widget::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 0.8rem);
  height: calc(100% + 0.8rem);
  background: linear-gradient(135deg, #fcefcb 0%, #eed6d6 20%, #c1f1ec 40%, #d5c8b6 100%);
  -webkit-clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
          clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
  z-index: -1;
}
.sns-widget::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
          clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .sns-widget {
    width: calc(520 / 1080 * 100%);
  }
}
.sns-widget-tweet .twitter-tweet {
  height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
}
.sns-widget-timeline {
  height: calc(420px + 10rem);
}
.sns-list-wrap {
  position: relative;
  margin-top: 13.6rem;
}
.sns-list-wrap .sns-deco01,
.sns-list-wrap .sns-deco02 {
  position: absolute;
  -webkit-filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
          filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
  pointer-events: none;
  z-index: 1;
}
.sns-list-wrap .sns-deco01 img,
.sns-list-wrap .sns-deco02 img {
  -webkit-animation: huwahuwa 1.5s infinite alternate ease-in-out;
          animation: huwahuwa 1.5s infinite alternate ease-in-out;
}
.sns-list-wrap .sns-deco01 {
  top: -12.2rem;
  left: -10.6rem;
  width: 26.1rem;
}
@media screen and (min-width: 768px) {
  .sns-list-wrap .sns-deco01 {
    top: auto;
    bottom: -9.2rem;
    left: -8rem;
    width: 19.6rem;
  }
}
.sns-list-wrap .sns-deco02 {
  bottom: -11.6rem;
  right: -9.7rem;
  width: 24.2rem;
}
@media screen and (min-width: 768px) {
  .sns-list-wrap .sns-deco02 {
    bottom: auto;
    top: -8.8rem;
    right: -7.2rem;
    width: 18.1rem;
  }
}
.sns-list-wrap .sns-deco02 img {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sns-list li:not(:last-child) {
  margin-bottom: 4rem;
}
.sns-list li a {
  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;
  padding: 1.8em 0;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(135deg, #d4c7b4 0%, #f7fffe 20%, #c0f0ec 50%, #ebd3d8 65%, #fcefca 100%);
  border-image-width: 0.4rem;
}
.sns-list li a svg {
  margin-right: 1em;
  width: 1.4em;
  height: 1.4em;
  fill: #42174d;
}
.sns-list li a span {
  font-weight: bold;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .sns-list li a {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .sns-list li a:hover {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}

/* =====================================================================
*    banner
* =================================================================== */
.banner-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;
}
.banner-list li {
  margin-top: 2.4rem;
}
.banner-list li:first-child {
  margin-top: 0;
}
.banner-list li a {
  -webkit-filter: drop-shadow(0 0.8rem 1.6rem rgba(66, 23, 77, 0.75));
          filter: drop-shadow(0 0.8rem 1.6rem rgba(66, 23, 77, 0.75));
}
@media screen and (min-width: 768px) {
  .banner-list {
    margin-left: -10%;
    width: 120%;
  }
  .banner-list li {
    margin: 2rem 2.614379085% 0 0;
    width: 31.3725490196%;
  }
  .banner-list li:nth-child(-n+3) {
    margin-top: 0;
  }
  .banner-list li:nth-child(3n), .banner-list li:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .banner-list {
    margin-left: calc(-225 / 1080 * 100%);
    width: calc(1530 / 1080 * 100%);
  }
}

/* =====================================================================
    follow-content
======================================================================*/
.follow-content {
  display: none;
  position: fixed;
  top: 20vh;
  right: 0.8rem;
  width: 6.4rem;
  z-index: 10;
}
.follow-content a {
  -webkit-filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
          filter: drop-shadow(0 2.2rem 4.5rem rgba(66, 23, 77, 0.3));
}

/* =====================================================================
*    footer
* =================================================================== */
.footer {
  padding: 12rem 0;
  color: #ffffff;
  background: #42174d url(../images/common/bg_footer-sp.jpg) no-repeat top center/100% auto;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 17rem 0 8rem;
    background-image: url(../images/common/bg_footer-pc.jpg);
    background-size: cover;
  }
}
.footer-contact {
  text-align: center;
}
.footer-contact a,
.footer-contact button {
  display: block;
  margin: 0 auto 4rem;
  padding: 1.5em;
  width: calc(480 / 640 * 100%);
  font-size: 85%;
  letter-spacing: 0.2em;
  color: #ffffff;
  background-color: #000000;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-filter: drop-shadow(0 1.6rem 3.2rem rgba(66, 23, 77, 0.5));
          filter: drop-shadow(0 1.6rem 3.2rem rgba(66, 23, 77, 0.5));
}
.footer-contact a:last-child,
.footer-contact button:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-contact a,
  .footer-contact button {
    margin-left: calc(20 / 1080 * 100%);
    margin-right: calc(20 / 1080 * 100%);
    width: calc(320 / 1080 * 100%);
  }
  .footer-contact a:nth-last-child(-n+2),
  .footer-contact button:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .footer-contact a:hover,
  .footer-contact button:hover {
    opacity: 1;
    background-color: #ff3355;
  }
}
.footer .banner-list {
  position: relative;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .footer .banner-list {
    margin-top: 7.2rem;
  }
}
.footer-sponsor {
  text-align: center;
  margin-top: 8rem;
}
.footer-sponsor dl {
  margin-top: 0.5em;
  line-height: 1.666;
}
.footer-sponsor dl > * {
  display: inline;
}
.footer-sponsor dl dt {
  position: relative;
  font-weight: normal;
  margin-right: 0.4em;
  padding-right: 0.6em;
  border-right: 1px solid #ff3355;
}
.footer-sponsor dl dt .line {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 80%;
}
.footer-sponsor p {
  margin-top: 8rem;
  font-size: 66%;
  line-height: 2.2;
}
.footer-sponsor p span {
  color: #ff3355;
}
@media screen and (min-width: 768px) {
  .footer-sponsor dl {
    font-size: 116%;
  }
  .footer-sponsor p {
    font-size: 83%;
  }
}

.pagetop {
  position: absolute;
  top: -4.8rem;
  right: 1rem;
  width: 9.6rem;
}
.pagetop a {
  -webkit-filter: drop-shadow(0 1.6rem 3.2rem rgba(66, 23, 77, 0.4));
          filter: drop-shadow(0 1.6rem 3.2rem rgba(66, 23, 77, 0.4));
}
@media screen and (min-width: 768px) {
  .pagetop {
    top: -3.6rem;
    right: 4rem;
    width: 7.2rem;
  }
  .pagetop a {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .pagetop a:hover {
    opacity: 1;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
}

.copyright {
  margin-top: 8rem;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
}
.copyright span {
  display: inline-block;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#b1fcf6), color-stop(50%, #ffffff), to(#f7c6d1));
  background: linear-gradient(90deg, #b1fcf6 0%, #ffffff 50%, #f7c6d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.6rem;
  }
}

/* =====================================================================
*    popup
* =================================================================== */
.popup {
  position: fixed !important;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}
.popup-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}
.popup-area::-webkit-scrollbar {
  width: 0;
}
.popup-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(66, 23, 77, 0.8);
}
.popup-inner {
  position: relative;
  margin: auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: calc(680 / 750 * 100%);
}
@media screen and (max-width: 767px) {
  .popup-movie .popup-inner {
    width: 100%;
  }
}
.popup-close {
  position: absolute;
  top: -4em;
  right: 0;
  width: 3em;
  height: 3em;
  z-index: 3;
}
.popup-close::before, .popup-close::after {
  content: "";
  display: block;
  width: 1px;
  margin: 0 auto;
  padding-top: 90%;
  border-left: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.popup-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.popup-list::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 0.8rem);
  height: calc(100% + 0.8rem);
  background: linear-gradient(135deg, #fcefcb, #eed6d6, #c1f1ec, #d5c8b6);
  -webkit-clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
          clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
}
.popup-list::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
          clip-path: polygon(0% 1.6rem, 1.6rem 1.6rem, 1.6rem 0%, calc(100% - 1.6rem) 0%, calc(100% - 1.6rem) 1.6rem, 100% 1.6rem, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 1.6rem 100%, 1.6rem calc(100% - 1.6rem), 0% calc(100% - 1.6rem));
}
.popup-list > li {
  position: relative;
  display: none;
  margin: 0 auto;
  padding: 8.8235294118%;
  line-height: 1.666;
  z-index: 2;
}
.popup-ttl {
  text-align: center;
  margin-bottom: 1.2em;
  padding-bottom: 0.3em;
  font-size: 142%;
  font-weight: bold;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(90deg, #d4c7b4 0%, #f7fffe 20%, #c0f0ec 50%, #ebd3d8 65%, #fcefca 100%);
  border-image-width: 0 0 1px 0;
}
.popup-subttl {
  text-align: center;
  font-size: 128%;
  font-weight: bold;
  line-height: 1.555;
  color: #ff3355;
}
.popup-subttl small {
  display: inline-block;
  font-size: 66%;
}
.popup-address {
  margin-top: 2em;
  font-size: 114%;
}
.popup-address dl:not(:last-child) {
  margin-bottom: 1em;
}
.popup-address dl dt {
  font-weight: normal;
}
.popup-address dl dt::after {
  content: "：";
  display: inline-block;
  color: #ff3355;
}
.popup-address dl dd {
  line-break: anywhere;
}
.popup-note {
  font-size: 80%;
  color: #581f66;
}

@media screen and (min-width: 768px) {
  .popup-bg {
    cursor: pointer;
  }
  .popup-inner {
    width: 90%;
    max-width: 1080px;
  }
  .popup-movie .popup-inner {
    max-width: 120vh;
  }
  .popup-list > li {
    padding: 8rem calc(120 / 1080 * 100%);
  }
  .popup-ttl {
    font-size: 133%;
  }
  .popup-subttl {
    font-size: 116%;
  }
  .popup-address {
    font-size: 88%;
  }
  .popup-address dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .popup-address dl dt {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 1em;
    min-width: 7em;
  }
  .popup-address dl dt::after {
    position: absolute;
    top: 0;
    right: 0;
  }
}/*# sourceMappingURL=base.css.map */