@charset "UTF-8";
/* -- foundation -- */
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Noto+Sans+JP:wght@400;500;700&display=swap");
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-y {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes poyopoyo {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1);
  }
}
/* ------------------------------ */
/* -- Function -- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*-----------------------------------------------------------
reset
-------------------------------------------------------------*/
body {
  overflow-x: hidden;
  min-height: 100vh;
}

body, h1, h2, h3, h4, h5, h6, pre, ul, ol, li, dl, dt, dd, p, img {
  margin: 0;
  padding: 0;
}

a {
  outline: 0;
}
a img {
  transition: 0.3s all;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}
ul, ol {
  list-style-type: none;
}

ul li:first-child {
  /*margin-left: 0;*/
}

/*-----------------------------------------------------------
font
-------------------------------------------------------------*/
/*-----------------------------------------------------------
layout
-------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
  /*
  @media (min-width: 769px) and (max-width: 1150px) {
  	min-width: 1150px;
  	overflow-x: scroll;
  }
   */
}
@media (min-width: 769px) and (max-width: 1310px) {
  html {
    min-width: 1310px;
    overflow-x: scroll;
  }
}
@media only screen and (min-width: 769px) {
  html {
    top: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 52.5%;
    min-width: auto;
    overflow-x: hidden;
  }
  html.open {
    height: 100%;
    width: 100vw;
    position: fixed;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #5f5f68;
  line-height: 1.6;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  opacity: 0;
  animation: fade 0.6s ease-in-out 0.2s 1 normal forwards;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

a {
  color: #5f5f68;
  text-decoration: none;
  transition: 0.3s all;
}
a[href^="tel:"] {
  pointer-events: none;
}
a:hover {
  color: #95CFC8;
}
a:focus {
  color: #5f5f68;
}

strong {
  font-weight: bold;
}

sup {
  vertical-align: super;
  font-size: 73%;
  top: 0.3em;
  position: relative;
  margin-left: 2px;
}

:lang(en) {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .spsmall {
    font-size: 60%;
  }
}
.anchor {
  margin-top: -90px;
  padding-top: 90px;
}
@media only screen and (max-width: 768px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.anchor02 {
  margin-top: -190px;
  padding-top: 190px;
  position: relative;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .anchor02 {
    margin-top: -160px;
    padding-top: 160px;
  }
}

/* -- libs -- */
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
  width: 100%;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 1 !important;
  background-color: #000 !important;
}
.modaal-overlay span {
  width: 4em;
  height: 4em;
  display: block;
  position: relative;
  background-color: #b3d4e7;
  opacity: 1;
  margin: auto;
  top: 45%;
}
.modaal-overlay span::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.modaal-overlay.loadingfix span {
  display: none;
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-content {
  height: 100%;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .modaal-inner-wrapper {
    padding: 0;
  }
}
@media (min-width: 769px) and (max-width: 1150px) {
  .modaal-inner-wrapper {
    padding: 80px;
  }
}

.modaal-container {
  height: 100%;
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #717171;
  max-width: 950px;
  border-radius: 8px;
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: absolute;
  right: -66px;
  top: 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50% !important;
  border: 2px solid #b3d4e7;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #b3d4e7;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #fff;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 3px;
  height: 17px;
  border-radius: 4px;
  background: #b3d4e7;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  right: 30px;
  top: 100px;
}
@media only screen and (max-width: 768px) {
  .modaal-close {
    right: 10px;
    top: 20px;
    width: 35px;
    height: 35px;
    margin: auto;
  }
}

.modaal-content-container {
  height: 100%;
}
@media only screen and (max-width: 64em) {
  .modaal-content-container {
    padding: 0;
    height: 100%;
  }
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.12s;
  -moz-animation-delay: 0.12s;
  -webkit-animation-delay: 0.12s;
  -o-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.37s;
  -moz-animation-delay: 0.37s;
  -webkit-animation-delay: 0.37s;
  -o-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.62s;
  -moz-animation-delay: 0.62s;
  -webkit-animation-delay: 0.62s;
  -o-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* -- layout -- */
/* -- foundation -- */
/* --------------------------- */
/* Header */
.l-header {
  width: 100%;
  transition: 0.3s all;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.under .l-header {
  background-color: #fff;
}
.l-header.on-bg {
  background-color: #fff;
}
.l-header.open {
  top: 0 !important;
}
.l-header.animeNow {
  top: -100px !important;
}
.l-header__inner {
  width: 100%;
  padding: 1.8% 2.4%;
  margin: 0 auto;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.under .l-header__inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
.index .l-header__sns {
  display: none !important;
}
.l-header__sns ul {
  display: flex;
}
.l-header__sns ul li {
  width: 34px;
  margin-right: 15px;
}
.l-header__sns ul li img {
  display: block;
  width: 100%;
}
.l-header__sns ul li a {
  display: block;
}
.l-header__sns ul li a img {
  display: block;
  transition: 0.3s all;
}
.l-header__sns ul li a:hover img {
  transform: scale(1.2);
}
.l-header__color {
  justify-content: flex-end;
  align-items: center;
  top: 0.8%;
  z-index: 99;
  display: flex;
  color: #76777a;
  letter-spacing: 0.05em;
  margin-left: auto;
  font-size: 17px;
  font-size: 1.7rem;
}
@media only screen and (max-width: 1460px) {
  .l-header__color {
    font-size: 1.1643835616vw;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__color {
    font-size: 4.5333333333vw;
  }
}
.l-header__color.pc {
  display: flex !important;
}
.l-header__color.black-text {
  color: #76777a !important;
}
.l-header__color.black-text a {
  color: #76777a !important;
}
.l-header__color.white-text {
  color: #fff !important;
}
.l-header__color.white-text a {
  color: #fff !important;
}
@media (min-width: 769px) and (max-width: 1150px) {
  .l-header__color {
    right: 2%;
    left: auto;
  }
}
.l-header__color p {
  white-space: nowrap;
  cursor: pointer;
}
.l-header__color > a {
  padding-left: 1.2em;
  margin-left: 1em;
  white-space: nowrap;
  position: relative;
}
.l-header__color > a:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 3px;
  height: 21px;
  background: #d9d9d9;
}
.l-header__color ul {
  display: flex;
  align-items: center;
  margin-left: 0.9%;
  /* 旧レイアウト */
  /*
  li {
  	width: ( 25 / 1800 ) * 100vw;
  	margin-left: .2em;
  	min-width: 12px;
  	transition: .3s all;
  	&:nth-child(2) {
  		text-align: center;
  		padding: 0 2%;
  	}
  	img {
  		display: block;
  	}
  	a {
  		display: block;
  	}
  }
   */
  /* 新レイアウト */
}
.l-header__color ul li a {
  display: block;
  color: #fff;
  white-space: nowrap;
  border-radius: 21px;
  padding: 0 1.5rem;
}
.l-header__color ul li.hide {
  display: none;
}
.l-header__color ul li.monochrome a {
  background: #95CFC8;
}
.l-header__color ul li.color a {
  background: #C3C3C3;
}
.l-header__logo {
  width: 272px;
  z-index: 99;
  display: none;
}
.under .l-header__logo {
  display: block;
}
.l-header__logo img {
  display: block;
  width: 100%;
}
.l-header__spToggle {
  top: 0;
  right: 0;
  width: 1420px;
  max-width: 99%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 999999;
  border-bottom-left-radius: 60px;
  border-left: 4px solid #91c3dc;
  border-bottom: 4px solid #91c3dc;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: fixed;
}
.monochrome .l-header__spToggle {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-height: 670px) {
  .l-header__spToggle {
    height: 100%;
  }
}
.l-header__spToggle::-webkit-scrollbar {
  display: none;
}
.l-header__spToggle-inner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 6% 6% 14% 6.6%;
  background-color: #f6fcff;
}
@media (min-width: 769px) and (max-width: 1000px) {
  .l-header__spToggle-inner {
    padding: 6% 2% 14% 3.6%;
  }
}
.l-header__sNav {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
.l-header__sNav ul {
  display: flex;
}
.l-header__sNav ul li {
  width: 20px;
  margin-right: 20px;
}
.l-header__sNav ul li:last-child {
  margin-right: 0;
}
.l-header__sNav ul li a {
  display: block;
}
.l-header__sNav ul li a img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__sNav ul li a:hover {
    transform: scale(1.3);
  }
}
.l-header__spToggleTrigger {
  width: 1.6666666667vw;
  height: 1.6111111111vw;
  min-width: 20px;
  min-height: 20px;
  display: block;
  z-index: 999;
  cursor: pointer;
  transition: 0.3s all;
  position: relative;
  margin-left: 2%;
}
.l-header__spToggleTrigger.inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header__spToggleTrigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #616367;
}
.l-header__spToggleTrigger span:nth-of-type(1) {
  top: 0;
}
.l-header__spToggleTrigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-header__spToggleTrigger span:nth-of-type(3) {
  bottom: 0;
}
.l-header__spToggleTrigger.black-text span {
  background-color: #616367;
}
.l-header__spToggleTrigger.white-text span {
  background-color: #fff;
}
.l-header__spToggleTrigger.open {
  z-index: 9999999;
}
.l-header__spToggleTrigger.open span:nth-child(1) {
  top: 0;
  transform: translateY(0) rotate(44deg);
}
.l-header__spToggleTrigger.open span:nth-child(2) {
  opacity: 0;
}
.l-header__spToggleTrigger.open span:nth-child(3) {
  transform: translateY(-1.45vw) rotate(-44deg);
}
@media (min-width: 769px) and (max-width: 1150px) {
  .l-header__spToggleTrigger.open span:nth-child(3) {
    transform: translateY(-0.9em) rotate(-44deg);
  }
}
.l-header__spToggleTrigger.open.black-text span, .l-header__spToggleTrigger.open.white-text span {
  background-color: #616367;
}
.l-header__spToggleTrigger + .l-header__spToggle {
  visibility: hidden;
  opacity: 0;
}
.l-header__spToggleTrigger + .l-header__spToggle.open {
  visibility: visible;
  opacity: 1;
}
.l-header__toggleMenu {
  margin-left: 56px;
}
@media only screen and (max-width: 768px) {
  .l-header {
    min-width: 100%;
  }
  .l-header__inner {
    padding: 14px 20px;
  }
  .l-header__inner::before {
    opacity: 0;
  }
  .under .l-header__inner {
    padding: 14px 20px;
  }
  .open .l-header__inner::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0.7;
    z-index: 1;
  }
  .l-header__sns {
    margin-top: 40px;
  }
  .index .l-header__sns.sp {
    display: block !important;
  }
  .l-header__sns ul {
    justify-content: center;
  }
  .l-header__sns ul li:last-child {
    margin-right: 0;
  }
  .l-header__color {
    font-size: 2.8645833333vw;
    z-index: 9999999;
    width: 100%;
    right: auto;
    justify-content: center;
    display: flex !important;
    margin-top: 9px;
    padding-left: 30px;
  }
  .l-header__color.pc {
    display: none !important;
  }
  .l-header__color.black-text, .l-header__color.white-text {
    color: #76777a !important;
  }
  .l-header__color.black-text a, .l-header__color.white-text a {
    color: #76777a !important;
  }
  .l-header__color.open {
    display: block;
  }
  .l-header__color ul li {
    margin-left: 0;
    /*
    width: 20px;
     */
  }
  .l-header__color ul li a {
    padding: 0.8rem 1.5rem;
    line-height: 1;
  }
  .l-header__color > a {
    padding-left: 1.2em;
    margin-left: 1.2em;
  }
  .l-header__color > a:before {
    width: 2px;
    height: 70%;
  }
  .l-header__logo {
    width: 228px;
  }
  .under .l-header__logo {
    display: block;
    width: 228px;
  }
  .open .under .l-header__logo {
    display: none;
  }
  .l-header__spToggle {
    width: 97%;
    height: 85vh;
  }
  .l-header__spToggle-inner {
    padding: 70px 20px;
    display: block;
    border-width: 2px;
  }
  .l-header__sNav {
    margin-left: 0;
    margin-top: 30px;
    position: static;
  }
  .l-header__sNav ul {
    justify-content: space-between;
  }
  .l-header__sNav ul li {
    width: 32px;
    margin-right: 15px;
  }
  .l-header__toggleMenu {
    display: none;
    position: static;
    padding: 0 0 5px;
    transform: translateX(0);
    min-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .l-footer .l-header__toggleMenu {
    margin-left: 0;
  }
  .l-header__toggleMenu__inner {
    width: 100%;
  }
  .l-header__toggleMenu ul li {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .l-header__toggleMenu .p-textMenu {
    display: block;
    margin-top: 20px;
    padding: 0 10px;
  }
  .l-header__toggleMenu .p-textMenu li {
    margin-left: 0;
  }
  .l-header__toggleMenu .p-textMenu li a {
    padding: 5px 10px;
  }
  .l-header__toggleMenu__close {
    position: relative;
    width: 20px;
    height: 20px;
    right: 0;
    left: 0;
    margin: auto;
    margin-top: 20px;
  }
  .l-header__toggleMenu__close::before {
    top: 5px;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-top: 3px solid #95CFC8;
    border-right: 3px solid #95CFC8;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .cat_about .l-header__toggleMenu__close::before {
    border-color: #c8d846;
  }
  .cat_ap .l-header__toggleMenu__close::before {
    border-color: #739acf;
  }
  .cat_program .l-header__toggleMenu__close::before {
    border-color: #f6b075;
  }
  .cat_howto .l-header__toggleMenu__close::before {
    border-color: #fcd745;
  }
  .cat_hyc .l-header__toggleMenu__close::before {
    border-color: #6ebbab;
  }
  .cat_app .l-header__toggleMenu__close::before {
    border-color: #b1bdde;
  }
  .cat_support .l-header__toggleMenu__close::before {
    border-color: #f3a6b0;
  }
  .cat_info .l-header__toggleMenu__close::before {
    border-color: #a4bf1e;
  }
  .l-header__spToggleTrigger {
    position: fixed;
    right: 25px;
    top: 20px;
    left: auto;
    width: 28px;
    height: 27px;
    max-width: inherit;
    max-height: inherit;
    min-width: inherit;
    min-height: inherit;
  }
  .under .l-header__spToggleTrigger {
    position: fixed;
    right: 25px;
    top: 20px;
    left: auto;
    width: 28px;
    height: 27px;
    max-width: inherit;
    max-height: inherit;
    min-width: inherit;
    min-height: inherit;
  }
  .l-header__spToggleTrigger.open span:nth-child(1) {
    transform: translateY(12px) rotate(44deg);
  }
  .l-header__spToggleTrigger.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-44deg);
  }
}

.js-spopen {
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .js-spopen {
    display: none;
    margin-left: 0;
  }
  .js-spopen.open {
    display: block;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 9999999;
  }
}

/* -- foundation -- */
/* --------------------------- */
/* Footer */
.l-footer {
  border-top: solid 1px #95CFC8;
  position: relative;
  padding: 0 20px 50px;
}
.monochrome .l-footer {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.l-footer__inner {
  width: 1070px;
  max-width: 100%;
  margin: 0 auto;
  padding: 70px 0 10px;
  position: relative;
}
.l-footer__logo {
  width: 417px;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__sNav {
  display: flex;
  align-items: flex-end;
  margin-top: 60px;
  padding: 0 40px;
}
.l-footer__sNav-right {
  margin-left: auto;
}
.l-footer__archive {
  margin-top: 12px;
  display: flex;
}
.l-footer__archive li:nth-child(n+2) {
  margin-left: 10px;
}
.l-footer__archive li a {
  display: inline-block;
  border: 1px solid #95CFC8;
  border-radius: 5px;
  line-height: 1;
  padding: 4px 10px 5px;
  font-size: 10px;
  font-size: 1rem;
  transition: 0.3s all;
}
.l-footer__archive li a:hover {
  color: #fff;
  background-color: #95CFC8;
}
.l-footer__sns {
  display: flex;
  justify-content: flex-end;
}
.l-footer__sns li {
  width: 34px;
  margin-left: 15px;
}
.l-footer__sns li a {
  display: block;
}
.l-footer__sns li a img {
  display: block;
  transition: 0.3s all;
}
.l-footer__sns li a:hover img {
  transform: scale(1.2);
}
.l-footer__copy {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 140px 20px 60px;
    margin-top: 0;
  }
  .l-footer__inner {
    display: block;
    padding-top: 0;
  }
  .l-footer__logo {
    width: 100%;
    margin: auto;
  }
  .l-footer__sNav {
    display: block;
    padding: 0;
  }
  .l-footer__archive {
    width: 100%;
    margin: auto;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-footer__archive li {
    width: 48%;
    margin-right: 0;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .l-footer__archive li:nth-child(2n) {
    text-align: right;
  }
  .l-footer__archive li:nth-child(2n) {
    margin-left: 0;
  }
  .l-footer__archive li:nth-child(n+2) {
    margin-left: 0;
  }
  .l-footer__archive li:nth-child(n+3) {
    margin-top: 14px;
  }
  .l-footer__archive li a {
    display: block;
    text-align: center;
    padding: 6px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .l-footer__sns {
    justify-content: center;
    margin-top: 50px;
  }
  .l-footer__sns li {
    width: 40px;
    margin-left: 20px;
  }
  .l-footer__sns li:nth-child(1) {
    margin-left: 0;
  }
  .l-footer__copy {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .l-footer .l-nav__toggleMenu {
    display: none;
  }
}

/* --------------------------- */
/* nav */
.l-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-nav .label {
  margin-bottom: 20px;
  white-space: nowrap;
  display: block;
}
.l-nav .label.no-link {
  color: #ccc !important;
}
.l-nav .label.no-link span:lang(ja) {
  color: #ccc !important;
}
.l-nav .label.color01 {
  color: #739acf;
}
.l-nav .label.color01 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #739acf;
}
.l-nav .label.color02 {
  color: #f6b075;
}
.l-nav .label.color02 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #f6b075;
}
.l-nav .label.color03 {
  color: #f3a6b0;
}
.l-nav .label.color03 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #f3a6b0;
}
.l-nav .label.color04 {
  color: #aad1e5;
}
.l-nav .label.color04 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #aad1e5;
}
.l-nav .label.color05 {
  color: #6ebbab;
}
.l-nav .label.color05 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #6ebbab;
}
.l-nav .label.color06 {
  color: #b1bdde;
}
.l-nav .label.color06 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #b1bdde;
}
.l-nav .label.color07 {
  color: #fcd745;
}
.l-nav .label.color07 + .l-nav__toggleMenu ul li a span:lang(en) {
  color: #fcd745;
}
.l-nav .label.color08 {
  color: #91c3dc;
  pointer-events: all !important;
}
.l-nav .label.linksp {
  pointer-events: none;
}
.l-nav .label span {
  display: block;
}
.l-nav .label span:lang(en) {
  font-weight: 500;
  line-height: 1;
  font-size: 26px;
  font-size: 2.6rem;
}
@media only screen and (max-width: 1460px) {
  .l-nav .label span:lang(en) {
    font-size: 1.7808219178vw;
  }
}
@media only screen and (max-width: 768px) {
  .l-nav .label span:lang(en) {
    font-size: 6.9333333333vw;
  }
}
.l-nav .label span:lang(ja) {
  margin-top: 2px;
  font-size: 10px;
  font-size: 1rem;
}
@media only screen and (max-width: 1460px) {
  .l-nav .label span:lang(ja) {
    font-size: 0.6849315068vw;
  }
}
@media only screen and (max-width: 768px) {
  .l-nav .label span:lang(ja) {
    font-size: 2.6666666667vw;
  }
}
.l-nav ul li {
  font-size: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1460px) {
  .l-nav ul li {
    font-size: 1.0273972603vw;
  }
}
@media only screen and (max-width: 768px) {
  .l-nav ul li {
    font-size: 4vw;
  }
}
.l-nav ul li:nth-child(n+2) {
  margin-top: 25px;
}
.l-nav ul li a {
  position: relative;
  padding-left: 0.8em;
  display: inline-block;
}
.l-nav ul li a::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.l-nav ul li a.no-link {
  color: #d4d4d4;
  pointer-events: none;
}
.l-nav__column {
  margin-right: 2%;
}
.l-nav__column:last-child {
  margin-right: 0;
}
.l-nav__toggleMenu {
  /*
  span {
  	&:lang(en) {
  		display: none;
  	}
  }

   */
}
.l-nav__toggleMenu + .label {
  margin-top: 95px;
}
@media only screen and (max-width: 768px) {
  .l-nav {
    display: block;
    border-bottom: 1px solid #e3e1e0;
  }
  .l-nav .label {
    position: relative;
    margin-bottom: 0;
    border-top: 1px solid #e3e1e0;
    display: flex;
    align-items: center;
    padding: 15px 10px;
  }
  .l-nav .label::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    left: auto;
    transition: 0.3s all;
    width: 18px;
    height: 2px;
    background-color: #767779;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
  }
  .l-nav .label::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    transition: 0.3s all;
    width: 18px;
    height: 2px;
    left: auto;
    background-color: #767779;
  }
  .l-nav .label.active::before {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  .l-nav .label.active::after {
    background-color: transparent;
  }
  .l-nav .label span:lang(en) {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .l-nav .label span:lang(ja) {
    color: #767779;
    margin-top: 0;
    margin-left: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .l-nav .label.color01 + .l-nav__toggleMenu {
    background-color: #f0f9fe;
  }
  .l-nav .label.color02 + .l-nav__toggleMenu {
    background-color: #f8f8f9;
  }
  .l-nav .label.color03 + .l-nav__toggleMenu {
    background-color: #f8f8f9;
  }
  .l-nav .label.color04 + .l-nav__toggleMenu {
    background-color: #f2f9fd;
  }
  .l-nav .label.color05 + .l-nav__toggleMenu {
    background-color: #f8f8f9;
  }
  .l-nav .label.color06 + .l-nav__toggleMenu {
    background-color: #f2f8fd;
  }
  .l-nav .label.color07 + .l-nav__toggleMenu {
    background-color: #f6faf4;
  }
  .l-nav .label.linksp {
    pointer-events: all;
  }
  .l-nav .label.linksp::before, .l-nav .label.linksp::after {
    content: none;
  }
  .l-nav .label.linksp + .l-nav__toggleMenu {
    display: none;
  }
  .l-nav__column {
    margin-right: 0;
  }
  .l-nav__toggleMenu {
    /*
    display: none;//スマホの子カテゴリは最初から出すのでコメントアウトしてる
     */
  }
  .l-nav__toggleMenu + .label {
    margin-top: 0;
  }
  .l-nav__toggleMenu ul li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .l-nav__toggleMenu ul li:nth-child(n+2) {
    margin-top: 0;
  }
  .l-nav__toggleMenu ul li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #e3e1e0;
    padding-left: 0;
    padding: 15px 10px;
  }
  .l-nav__toggleMenu ul li a::before {
    content: none;
  }
  .l-nav__toggleMenu ul li span:lang(en) {
    display: block;
    font-weight: 400;
    margin-right: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  .l-nav__toggleMenu ul li span:lang(en) small {
    font-size: 70%;
  }
  .l-nav__toggleMenu ul li span:lang(ja) {
    margin-left: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* --------------------------- */
/* main */
.l-main {
  display: block;
  position: relative;
  width: 100%;
}
.under .l-main {
  margin-top: 77px;
}
.monochrome .l-main {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media only screen and (max-width: 768px) {
  .under .l-main {
    margin-top: 65px;
  }
}

.l-block {
  position: relative;
  padding: 0 20px;
  padding-bottom: 120px;
  width: 100%;
}
.l-block:after {
  display: table;
  content: "";
  clear: both;
}
.l-block__inner {
  padding: 20px 115px 120px;
  position: relative;
  max-width: 100%;
  width: 1300px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.l-block__inner--lineup {
  background: #FEF9F4;
  border-radius: 40px;
}
.l-block__inner--about {
  background: #F5F8FC;
  border-radius: 40px;
}
.l-block__inner--hte {
  background: #F9FCFD;
  border-radius: 40px;
}
.l-block__inner--support {
  background: #FAFAFD;
  border-radius: 40px;
}
.l-block__inner--info {
  background: #FFFCF2;
  border-radius: 40px;
}
.l-block__inner--pickup {
  background: #EDF8F7;
  border-radius: 40px;
}
.l-block__inner--program {
  background: #FEF8F9;
  border-radius: 40px;
}
.l-block__inner--app {
  background: #F5FAF9;
  border-radius: 40px;
}
.l-block__inner1415 {
  position: relative;
  max-width: 100%;
  width: 1415px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .l-block {
    padding: 0;
    padding-bottom: 120px;
  }
  .l-block__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 20px 60px;
  }
  .l-block__inner--lineup, .l-block__inner--about, .l-block__inner--hte, .l-block__inner--support, .l-block__inner--info, .l-block__inner--pickup {
    width: calc(100% - 30px);
    border-radius: 20px;
  }
}

/* -- object -- */
/* --------------------------- */
/* block */
.c-hr {
  border: none;
}

.c-block {
  background-color: #fffbdc;
  padding: 30px;
}
.c-block a {
  text-decoration: underline;
}
.c-block a:hover {
  text-decoration: none;
}
.c-block + .c-block {
  margin-top: 30px;
}
/* -- title -- */
.c-h2-heading {
  text-align: center;
}
.c-h2-heading span {
  display: block;
  line-height: 1.6;
}
.c-h2-heading span:lang(en) {
  color: #f6b075;
  line-height: 1.2;
  font-size: 52px;
  font-size: 5.2rem;
}
.c-h2-heading span:lang(ja) {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
.cat_about .c-h2-heading span:lang(en) {
  color: #739acf;
}
.cat_info .c-h2-heading span:lang(en) {
  color: #fcd745;
}
.cat_support .c-h2-heading span:lang(en) {
  color: #b1bdde;
}
.cat_howto .c-h2-heading span:lang(en) {
  color: #aad1e5;
}
.cat_app .c-h2-heading span:lang(en) {
  color: #6ebbab;
}
.cat_program .c-h2-heading span:lang(en) {
  color: #f3a6b0;
}
@media only screen and (max-width: 768px) {
  .c-h2-heading {
    margin-top: -14px;
  }
  .c-h2-heading span:lang(en) {
    font-size: 40px;
    font-size: 4rem;
  }
  .c-h2-heading span:lang(ja) {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .cat_howto .c-h2-heading {
    margin-top: 0;
  }
}

.c-h3-heading {
  margin-bottom: 40px;
}
.c-h3-heading h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-h3-heading h3 span:lang(en) {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;
  margin-right: 30px;
}
.c-h3-heading h3 span:lang(en) + :lang(ja) {
  margin-top: 7px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
.c-h3-heading h3 span:lang(en) + :lang(ja) small {
  font-size: 54%;
}
.c-h3-heading h3 span.jaOnly:lang(ja) {
  color: #a4bf1e;
  margin-top: 37px;
  font-size: 32px;
  font-size: 3.2rem;
}
.cat_about .c-h3-heading h3 span:lang(en) {
  color: #739acf;
}
.cat_ap .c-h3-heading h3 span:lang(en) {
  color: #f6b075;
}
.cat_program .c-h3-heading h3 span:lang(en) {
  color: #f6b075;
}
.cat_howto .c-h3-heading h3 span:lang(en) {
  color: #aad1e5;
}
.cat_hyc .c-h3-heading h3 span:lang(en) {
  color: #6ebbab;
}
.cat_app .c-h3-heading h3 span:lang(en) {
  color: #b1bdde;
}
.cat_support .c-h3-heading h3 span:lang(en) {
  color: #b1bdde;
}
.cat_info .c-h3-heading h3 span:lang(en) {
  color: #fcd745;
}
.cat_program .c-h3-heading h3 span:lang(en) {
  color: #f3a6b0;
}
@media only screen and (max-width: 768px) {
  .c-h3-heading {
    margin-bottom: 30px;
  }
  .c-h3-heading h3 {
    display: block;
  }
  .c-h3-heading h3 span {
    text-align: left;
    display: block;
    width: 100%;
  }
  .c-h3-heading h3 span:lang(en) {
    font-size: 43px;
    font-size: 4.3rem;
    line-height: 1;
  }
  .c-h3-heading h3 span:lang(en) + :lang(ja) {
    margin-left: 0;
    margin-top: 8px;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .c-h3-heading h3 span.jaOnly:lang(ja) {
    margin-top: 25px;
    text-align: center;
    line-height: 1.4;
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.c-heading {
  margin-bottom: 68px;
}
.c-heading h2 {
  display: flex;
  align-items: flex-end;
}
.c-heading h2 span {
  line-height: 1;
}
.c-heading h2 span:lang(en) {
  color: #fcd745;
  letter-spacing: 0.08em;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 52px;
  font-size: 5.2rem;
  line-height: 0.7;
  letter-spacing: 1px;
}
.c-heading h2 span:lang(en).cat_pickup {
  color: #95CFC8;
}
.c-heading h2 span:lang(en).cat_about {
  color: #739acf;
}
.c-heading h2 span:lang(en).cat_support {
  color: #b1bdde;
}
.c-heading h2 span:lang(ja) {
  margin-left: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0.3em;
  color: #767779;
  font-size: 18px;
  font-size: 1.8rem;
}
.c-heading h2 small {
  display: block;
  margin-top: 0.9em;
  font-size: 17px;
  font-size: 1.7rem;
}
@media only screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 40px;
  }
  .c-heading h2 {
    display: block;
  }
  .c-heading h2 span:lang(en) {
    font-size: 50px;
    font-size: 5rem;
    letter-spacing: inherit;
  }
  .c-heading h2 span:lang(ja) {
    margin-left: 0;
    margin-top: 20px;
    font-weight: bold;
    display: inline-block;
    font-size: 20px;
    font-size: 2rem;
  }
  .c-heading h2 small {
    display: inline;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.c-heading02 {
  text-align: center;
}
.c-heading02 h2 span {
  line-height: 1;
  display: block;
}
.c-heading02 h2 span:lang(en) {
  color: #95CFC8;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 60px;
  font-size: 6rem;
}
.c-heading02 h2 span:lang(ja) {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0.3em;
  font-size: 30px;
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .c-heading02 h2 span:lang(en) {
    font-size: 40px;
    font-size: 4rem;
  }
  .c-heading02 h2 span:lang(ja) {
    margin-left: 0;
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-heading04 {
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  padding-left: 1.5rem;
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 500;
  position: relative;
}
.c-heading04:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-47%);
  left: 0;
  width: 4px;
  height: 63.17%;
  background: #000;
}
.c-heading04.support:before {
  background: #b1bdde;
}
.c-heading04.info:before {
  background: #fcd745;
}
@media only screen and (max-width: 768px) {
  .c-heading04 {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .c-heading04:before {
    width: 3px;
    height: 83.17%;
  }
}

/* --------------------------- */
/* button component */
.c-btn {
  border: 2px solid #739acf;
  border-radius: 17px;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
  width: 210px;
  text-align: center;
  padding: 9px 5px;
  background-color: #fff;
}
.c-btn:hover {
  background-color: #739acf;
  color: #fff;
}
.c-btn--red {
  background-color: #d70014;
  color: #fff;
  border-color: #d70014;
}
.c-btn--red:hover {
  background-color: #fff;
  color: #d70014 !important;
}
.c-btn--long {
  width: 398px;
}
.c-btn--auto {
  width: auto;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    border-radius: 14px;
    border-width: 2px;
    padding: 8px 5px;
    width: 50%;
    margin: auto;
    min-height: 36px;
    line-height: 36px;
  }
}

.c-link {
  padding-left: 25px;
  position: relative;
  display: block;
}
.c-link::before {
  content: "";
  position: absolute;
  top: 1em;
  left: -5px;
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #aaa;
  border-right: 3px solid #aaa;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 2px;
  transition: 0.3s all;
}
.c-link :lang(en) {
  color: #5f5f68;
  display: block;
  font-size: 27px;
  font-size: 2.7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.c-link :lang(en) + :lang(ja) {
  margin-top: -9px;
}
.c-link :lang(en) small {
  display: inline;
  font-size: 12px;
  font-size: 1.2rem;
}
.c-link :lang(ja) {
  display: block;
  letter-spacing: 0.1em;
  color: #5f5f68;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-link :lang(ja) small {
  display: inline;
  font-size: 15px;
  font-size: 1.5rem;
}
.cat_about .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #c8d846;
  border-right: 3px solid #c8d846;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_about .c-link :lang(en) {
  color: #c8d846;
}
.cat_ap .c-link {
  padding-left: 0;
}
.cat_ap .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #739acf;
  border-right: 3px solid #739acf;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_ap .c-link :lang(en) {
  color: #739acf;
  margin-left: 11%;
}
.cat_program .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #f3a6b0;
  border-right: 3px solid #f3a6b0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_program .c-link :lang(en) {
  color: #f3a6b0;
}
.cat_howto .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #aad1e5;
  border-right: 3px solid #aad1e5;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_howto .c-link :lang(en) {
  color: #aad1e5;
}
.cat_hyc .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #6ebbab;
  border-right: 3px solid #6ebbab;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_hyc .c-link :lang(en) {
  color: #6ebbab;
}
.cat_app .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #b1bdde;
  border-right: 3px solid #b1bdde;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_app .c-link :lang(en) {
  color: #b1bdde;
}
.cat_support .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #f3a6b0;
  border-right: 3px solid #f3a6b0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_support .c-link :lang(en) {
  color: #f3a6b0;
}
.cat_info .c-link::before {
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #a4bf1e;
  border-right: 3px solid #a4bf1e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cat_info .c-link :lang(en) {
  color: #a4bf1e;
}
.c-link--prev::before {
  -webkit-transform: rotate(228deg) !important;
  transform: rotate(228deg) !important;
  left: 5px;
}
@media only screen and (min-width: 769px) {
  .c-link:hover::before {
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-link {
    padding-left: 20px;
  }
  .c-link::before {
    top: 1em;
    left: -5px;
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #aaa;
    border-right: 3px solid #aaa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-link :lang(en) {
    font-size: 23px;
    font-size: 2.3rem;
  }
  .c-link :lang(en) + :lang(ja) {
    margin-top: -7px;
  }
  .c-link :lang(en) + :lang(ja) {
    margin-top: -5px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .c-link :lang(en) + :lang(ja) small {
    font-size: 10px;
    font-size: 1rem;
  }
  .cat_about .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #c8d846;
    border-right: 3px solid #c8d846;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_about .c-link :lang(en) {
    color: #c8d846;
  }
  .cat_ap .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #739acf;
    border-right: 3px solid #739acf;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_ap .c-link :lang(en) {
    color: #739acf;
  }
  .cat_program .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #f6b075;
    border-right: 3px solid #f6b075;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_program .c-link :lang(en) {
    color: #f6b075;
  }
  .cat_howto .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #aad1e5;
    border-right: 3px solid #aad1e5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_howto .c-link :lang(en) {
    color: #aad1e5;
  }
  .cat_hyc .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #6ebbab;
    border-right: 3px solid #6ebbab;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_hyc .c-link :lang(en) {
    color: #6ebbab;
  }
  .cat_app .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #b1bdde;
    border-right: 3px solid #b1bdde;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_app .c-link :lang(en) {
    color: #b1bdde;
  }
  .cat_support .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #f3a6b0;
    border-right: 3px solid #f3a6b0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_support .c-link :lang(en) {
    color: #f3a6b0;
  }
  .cat_info .c-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #a4bf1e;
    border-right: 3px solid #a4bf1e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .cat_info .c-link :lang(en) {
    color: #a4bf1e;
  }
}

.c-textLink {
  text-decoration: underline;
}

.c-textLink02 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #cfdd4c;
  text-decoration: underline;
}

_:-ms-fullscreen, :root .c-btn {
  height: 50px;
  padding-top: 6px;
}

/* --------------------------- */
/* list */
.c-list {
  position: relative;
  width: 100%;
}

.c-numberList {
  counter-reset: counter01;
}
.c-numberList li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.c-numberList li::before {
  counter-increment: counter01;
  content: counter(counter01) ". ";
}
.c-numberList--brackets li {
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.c-numberList--brackets li::before {
  content: "(" counter(counter01) ") ";
}

.c-discList ul li {
  position: relative;
  padding-left: 1em;
}
.c-discList ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-noteList {
  margin-top: 10px;
}
.c-noteList ul li {
  position: relative;
  padding-left: 1em;
  line-height: 2;
}
.c-noteList ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.c-noteList--textSmall ul li {
  font-size: 14px;
  font-size: 1.4rem;
}
.c-noteList--red {
  color: #e50013;
}

.c-indentList > ol > li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.c-indentList > ol > li::before {
  content: none;
}
.c-indentList > ol > li .c-discList li {
  text-indent: 0;
}

/* --------------------------- */
/* text */
.c-text {
  line-height: 1.7;
  letter-spacing: -0.02em;
  font-size: 15px;
  font-size: 1.5rem;
}
.c-text--large {
  font-size: 18px;
  font-size: 1.8rem;
}
.c-text--base {
  font-size: 14px;
  font-size: 1.4rem;
}
.c-text--small {
  font-size: 14px;
  font-size: 1.4rem;
}
.c-text + .c-text {
  margin-top: 10px;
}

.text-underline {
  text-decoration: underline;
}

/* ---------------------------- */
/* --------------------------- */
/* under common */
.p-under--ap a:hover {
  color: #f6b075;
}
.p-under--about a:hover {
  color: #739acf;
}
.p-under--info a:hover {
  color: #fcd745;
}
.p-under--howto a:hover {
  color: #aad1e5;
}
.p-under--support a:hover {
  color: #b1bdde;
}
.p-under--program a:hover {
  color: #f3a6b0;
}
.p-under__inner {
  position: relative;
  padding-top: 106px;
}
.p-under__btn {
  text-align: center;
  margin-top: 100px;
}
.p-under__btn .c-btn {
  margin: auto;
}
.cat_ap .p-under__btn .c-btn {
  border-color: #f6b075;
}
.cat_ap .p-under__btn .c-btn:hover {
  background-color: #f6b075;
  color: #fff;
}
.cat_program .p-under__btn .c-btn {
  border-color: #f3a6b0;
}
.cat_program .p-under__btn .c-btn:hover {
  background-color: #f3a6b0;
  color: #fff;
}
.p-under__menu {
  display: none;
  margin-top: 100px;
  padding: 20px 90px;
  position: relative;
}
.p-under__menu::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 5px;
  background-color: #95CFC8;
  position: absolute;
  top: 0;
  left: 0;
}
.cat_about .p-under__menu::before {
  background-color: #c8d846;
}
.cat_ap .p-under__menu::before {
  background-color: #739acf;
}
.cat_program .p-under__menu::before {
  background-color: #f6b075;
}
.cat_howto .p-under__menu::before {
  background-color: #fcd745;
}
.cat_hyc .p-under__menu::before {
  background-color: #6ebbab;
}
.cat_app .p-under__menu::before {
  background-color: #b1bdde;
}
.cat_support .p-under__menu::before {
  background-color: #b1bdde;
}
.cat_info .p-under__menu::before {
  background-color: #a4bf1e;
}
.cat_program .p-under__menu::before {
  background-color: #f3a6b0;
}
.p-under__menu .p-arrowMenu__title {
  margin-bottom: 0;
}
.p-under__pager {
  padding: 40px 0 60px;
  margin-top: 100px;
}
.p-under__pager ol {
  display: flex;
  justify-content: center;
}
.p-under__pager ol li {
  margin-left: 10px;
  font-size: 27px;
  font-size: 2.7rem;
}
.p-under__pager ol li:first-child {
  margin-left: 0;
}
.p-under__pager ol li span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-under__pager ol li.current span {
  color: #c8d846;
}
.p-under__pager ol li.prev span {
  position: relative;
}
.p-under__pager ol li.prev span::before {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid #fcd745;
  border-right: 3px solid #fcd745;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.p-under__pager ol li.next span {
  position: relative;
}
.p-under__pager ol li.next span::before {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  content: "";
  content: "";
  width: 18px;
  height: 18px;
  border-top: 3px solid #fcd745;
  border-right: 3px solid #fcd745;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-under__pager--detail ol {
  align-items: center;
}
.p-under__pager--detail ol li {
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 60px;
  min-width: 88px;
}
.p-under__pager--detail ol li.prev {
  font-size: 27px;
  font-size: 2.7rem;
}
.p-under__pager--detail ol li.prev span {
  color: #fcd745;
  width: auto;
  height: auto;
  padding-left: 25px;
}
.p-under__pager--detail ol li.next {
  font-size: 27px;
  font-size: 2.7rem;
}
.p-under__pager--detail ol li.next span {
  color: #fcd745;
  width: auto;
  height: auto;
  padding-right: 25px;
}
.p-under .p-head {
  background-color: #fff;
  padding-bottom: 70px;
}
.p-under .p-head__bg {
  position: relative;
}
.p-under .p-head__bg img:nth-child(1) {
  width: 100%;
}
.p-under .p-head__bg img:nth-child(3) {
  width: 28%;
  max-width: 414px;
  position: absolute;
  bottom: -43px;
  left: 0;
  right: 0;
  margin: auto;
}
.p-under .p-head__inner {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-under {
    padding-bottom: 0;
  }
  .p-under__inner {
    padding-top: 50px;
  }
  .p-under__btn {
    padding: 20px 0;
    margin-top: 60px;
  }
  .p-under__menu {
    padding: 0;
    margin-top: 50px;
  }
  .p-under__menu::before {
    content: none;
  }
  .p-under__menu .p-arrowMenu {
    display: flex;
    flex-wrap: wrap;
  }
  .p-under__menu .p-arrowMenu__title {
    border-bottom: 1px solid #95CFC8;
    padding-bottom: 5px;
    margin-bottom: 5px;
    position: relative;
  }
  .p-under__menu .p-arrowMenu__title::before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #95CFC8;
    border-radius: 5px;
  }
  .cat_about .p-under__menu .p-arrowMenu__title::before {
    background-color: #c8d846;
  }
  .cat_ap .p-under__menu .p-arrowMenu__title::before {
    background-color: #739acf;
  }
  .cat_program .p-under__menu .p-arrowMenu__title::before {
    background-color: #f6b075;
  }
  .cat_howto .p-under__menu .p-arrowMenu__title::before {
    background-color: #fcd745;
  }
  .cat_hyc .p-under__menu .p-arrowMenu__title::before {
    background-color: #6ebbab;
  }
  .cat_app .p-under__menu .p-arrowMenu__title::before {
    background-color: #b1bdde;
  }
  .cat_support .p-under__menu .p-arrowMenu__title::before {
    background-color: #f3a6b0;
  }
  .cat_info .p-under__menu .p-arrowMenu__title::before {
    background-color: #a4bf1e;
  }
  .cat_program .p-under__menu .p-arrowMenu__title::before {
    background-color: #f4b877;
  }
  .p-under__menu .p-arrowMenu__title :lang(en) {
    font-size: 31px;
    font-size: 3.1rem;
  }
  .p-under__menu .p-arrowMenu__title :lang(en) + :lang(ja) {
    font-size: 14px;
    font-size: 1.4rem;
    margin-left: 6px;
  }
  .p-under__menu .p-arrowMenu li {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 50%;
    border-bottom: none !important;
  }
  .p-under__menu .p-arrowMenu li .c-link {
    padding-left: 15px;
    position: relative;
    display: block;
  }
  .p-under__menu .p-arrowMenu li .c-link::before {
    content: "";
    position: absolute;
    top: 2em;
    bottom: auto;
    left: -5px;
    right: auto;
    border-radius: 2px;
    transition: 0.3s all;
  }
  .p-under__menu .p-arrowMenu li .c-link :lang(en) {
    display: block;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .p-under__menu .p-arrowMenu li .c-link :lang(en) + :lang(ja) {
    margin-top: 0;
  }
  .p-under__menu .p-arrowMenu li .c-link :lang(en) small {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-under__menu .p-arrowMenu li .c-link :lang(ja) {
    margin-left: -15px;
  }
  .p-under__menu .p-arrowMenu li .c-link :lang(ja) small {
    display: inline;
    margin-left: 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-under__menu .p-arrowMenu li.no-link {
    pointer-events: none;
  }
  .p-under__menu .p-arrowMenu li.no-link .c-link :lang(en) {
    color: #d2d2d3;
  }
  .p-under__menu .p-arrowMenu li.no-link .c-link :lang(ja) {
    color: #d2d2d3;
  }
  .p-under__menu .p-arrowMenu li.no-link .c-link::before {
    border-color: #d2d2d3;
  }
  .p-under__menu .p-arrowMenu li.no-link .c-link:hover {
    pointer-events: none;
  }
  .p-under__menu .p-arrowMenu li.no-link .c-link:hover::before {
    left: -5px;
  }
  .p-under--support .p-under__menu .p-arrowMenu li:nth-child(1) {
    width: 65%;
  }
  .p-under--support .p-under__menu .p-arrowMenu li:nth-child(2) {
    width: 35%;
  }
  .p-under__pager {
    padding: 10px 0 20px;
  }
  .p-under__pager--detail ol li {
    margin-left: 40px;
    min-width: 60px;
  }
  .p-under__pager--detail ol li.prev {
    font-size: 27px;
    font-size: 2.7rem;
  }
  .p-under__pager--detail ol li.prev span {
    padding-left: 15px;
  }
  .p-under__pager--detail ol li.prev span::before {
    content: "";
    width: 13px;
    height: 13px;
    border-top: 3px solid #c8d846;
    border-right: 3px solid #c8d846;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .p-under__pager--detail ol li.next span {
    padding-right: 15px;
  }
  .p-under__pager--detail ol li.next span::before {
    content: "";
    width: 13px;
    height: 13px;
    border-top: 3px solid #c8d846;
    border-right: 3px solid #c8d846;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .p-under .p-head {
    margin-bottom: 0;
    padding-bottom: 30px;
  }
  .p-under .p-head__bg {
    position: relative;
  }
  .p-under .p-head__bg img:nth-child(2) {
    width: 100%;
  }
  .p-under .p-head__bg img:nth-child(3) {
    width: 70%;
    bottom: -19%;
  }
}

.p-breadcrumb {
  margin-top: 195px;
  position: relative;
  border-top: 1px solid #dcdcdc;
  padding: 5px 20px;
  display: none;
}
.p-breadcrumb ul {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.p-breadcrumb ul li::after {
  content: "|";
  margin: 0 10px;
}
.p-breadcrumb ul li:last-child::after {
  content: none;
}
.p-breadcrumb ul li a:hover {
  text-decoration: underline;
}
.p-breadcrumb ul li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 768px) {
  .p-breadcrumb {
    margin-top: 125px;
  }
  .p-breadcrumb ul li:last-child {
    width: 10em;
  }
}

.p-cs__img {
  padding: 100px 0;
  background-color: #95CFC8;
}
.p-cs__img img {
  width: 100%;
}
.p-cs .l-footer {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .p-cs__img {
    padding: 50% 0;
  }
  .p-cs__img img {
    width: 170vw;
    display: block;
    margin-left: -35vw;
    max-width: inherit;
  }
  .p-cs .l-footer .l-header__spToggle {
    padding-top: 0;
  }
}

.p-bnr__crowdfunding {
  text-align: center;
  margin-bottom: 60px;
}
.p-bnr__crowdfunding mark {
  background: linear-gradient(transparent 80%, #b1bdde 0%);
  color: #5f5f68;
}
.p-bnr__crowdfunding a {
  display: inline-block;
  border: solid 2px #b1bdde;
  border-radius: 10px;
  padding: 2rem 4rem;
  background: #fff;
}

.p-under__btn.p-under__btn--top + .p-bnr__crowdfunding {
  margin-top: -50px;
}
@media only screen and (max-width: 768px) {
  .p-under__btn.p-under__btn--top + .p-bnr__crowdfunding {
    margin-top: -25px;
  }
}

/* --------------------------- */
/* index */
.decoration {
  position: absolute;
}
.decoration img {
  width: 100%;
  display: block;
}
.decoration--1 {
  top: -19%;
  left: -15%;
  width: 387px;
  z-index: -1;
}
.decoration--2 {
  top: -29%;
  right: -31px;
  width: 204px;
}
.decoration--3 {
  width: 88px;
  top: 34%;
  left: -2%;
}
.decoration--4 {
  width: 51px;
  right: -3%;
  top: 41%;
}
.decoration--5 {
  width: 890px;
  left: -55%;
  bottom: -58%;
  z-index: -1;
}
.decoration--6 {
  width: 99px;
  left: 26%;
  bottom: -3.5%;
}
.decoration--7 {
  width: 65px;
  right: 12%;
  bottom: -2%;
}
.decoration--8 {
  width: 89px;
  right: -3%;
  top: -9%;
}
.decoration--9 {
  width: 154px;
  left: -9%;
  top: -20%;
}
.decoration--10 {
  width: 409px;
  right: -15%;
  top: -4%;
  z-index: 1;
}
.decoration--11 {
  width: 357px;
  top: -370px;
  left: -8%;
  z-index: -1;
}
.decoration--12 {
  width: 770px;
  top: -12.5%;
  right: -19%;
  z-index: -1;
}
.decoration--12sp {
  display: none;
}
.decoration--13 {
  display: none;
}
.decoration--14 {
  width: 71px;
  top: -170px;
  left: 0px;
}
.decoration--15 {
  width: 161px;
  left: 0;
  bottom: 34px;
}
.decoration--16 {
  width: 96px;
  right: 3%;
  bottom: 0.8%;
}
.decoration--17 {
  width: 70px;
  top: -9%;
  left: -1%;
}
.decoration--18 {
  width: 167px;
  top: -5%;
  right: -1%;
}
.decoration--18sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .decoration--1 {
    top: -18%;
    left: -19%;
    width: 193px;
    z-index: -1;
  }
  .decoration--2 {
    top: -29%;
    right: -27%;
    width: 162px;
  }
  .decoration--3 {
    width: 64px;
    top: 14%;
    left: -10%;
  }
  .decoration--4 {
    display: none;
  }
  .decoration--5 {
    width: 890px;
    left: -207%;
    bottom: inherit;
    top: 98%;
    z-index: -1;
  }
  .decoration--6 {
    width: 69px;
    left: inherit;
    right: 7%;
    bottom: -5.5%;
  }
  .decoration--7 {
    display: none;
  }
  .decoration--8 {
    display: none;
  }
  .decoration--9 {
    width: 87px;
    left: -11%;
    top: -2.5%;
  }
  .decoration--10 {
    width: 204px;
    right: -27%;
    top: 7%;
    z-index: 1;
  }
  .decoration--11 {
    display: none;
  }
  .decoration--12 {
    display: none;
  }
  .decoration--12sp {
    display: block;
    width: 47px;
    top: 32%;
    right: 0;
    z-index: -1;
  }
  .decoration--13 {
    display: block;
    width: 113px;
    top: -61px;
    right: -16px;
    z-index: -1;
  }
  .decoration--14 {
    width: 71px;
    top: -70px;
    left: 0px;
  }
  .decoration--15 {
    width: 161px;
    left: -9.2%;
    bottom: 0;
  }
  .decoration--16 {
    width: 96px;
    right: 6px;
    bottom: 0;
  }
  .decoration--17 {
    display: none;
  }
  .decoration--18 {
    display: none;
  }
  .decoration--18sp {
    display: none;
    width: 116px;
    top: -42%;
    right: 3%;
  }
}

/* l-block */
.deco-side {
  /*
  	img {
  		width: 100%;
  		display: block;
  	}
  */
}
.deco-side__left01 {
  position: absolute;
  top: 676px;
  left: 25px;
  width: 50px;
  height: 52px;
  background: url(/2025/assets/images/common/deco_side_left01.png) no-repeat center top;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .deco-side__left01 {
    left: -15px;
    width: 35px;
  }
}
.deco-side__left02 {
  position: absolute;
  top: 935px;
  left: 0px;
  width: 200px;
  height: 100%;
  max-height: 1014px;
  background: url(/2025/assets/images/common/deco_side_left02.png) no-repeat center top;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .deco-side__left02 {
    left: -15px;
    width: 200px;
    height: 100%;
    max-height: 1565px;
    background: url(/2025/assets/images/common/deco_side_left02_sp.png) no-repeat center top;
    background-size: 100%;
  }
}
.deco-side__right01 {
  position: absolute;
  top: 320px;
  right: 0;
  max-width: 103px;
  width: 103px;
  height: 100%;
  max-height: 1150px;
  background: url(/2025/assets/images/common/deco_side_right01.png) no-repeat center top;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .deco-side__right01 {
    top: 80px;
    width: 45px;
    height: 100%;
    max-height: 1768px;
    background: url(/2025/assets/images/common/deco_side_right01_sp.png) no-repeat center top;
    background-size: 100%;
  }
}
.deco-side__right02 {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 96px;
  height: 148px;
  background: url(/2025/assets/images/common/deco_side_right02.png) no-repeat center top;
  background-size: contain;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .deco-side__right02 {
    bottom: 55px;
    width: 75px;
    height: 80px;
    background: url(/2025/assets/images/common/deco_side_right02_sp.png) no-repeat center top;
    background-size: contain;
  }
}

/* --------------------------- */
/* index */
@media only screen and (min-width: 769px) {
  .l-header__color {
    position: relative;
  }
  .l-header__color:after {
    content: "";
    position: absolute;
    top: -0.8rem;
    left: -2.4rem;
    width: calc(100% + 10rem);
    height: 100%;
    background: #fff;
    border-radius: 8px;
    z-index: -1;
    padding: 2.6rem;
  }
  .l-header.on-bg__color:after {
    content: none;
  }
  .l-header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 84px;
  }
  .l-header__inner.on-bg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.p-mainVisual {
  position: relative;
  /*
  &__btn {
  	position: absolute;
  	right: 31.2%;
  	bottom: 36%;
  	transition: .5s all;
  	transform: scale(0);
  	opacity: 0;
  	a {
  		width: ( 130 / 1800 ) * 100vw;
  		display: block;
  		&:hover {
  			opacity: 1;
  			transform: scale(1.2);
  		}
  	}
  	.load & {
  		opacity: 1;
  		transform: scale(1);
  		transition-delay: 1s;
  		will-change: transform;
  		animation: poyopoyo 2s ease-out 2s infinite;
  	}
  }

   */
  /*
  &__gallery {
  	position: absolute;
  	bottom: 20px;
  	right: 20px;
  	a {
  		display: block;
  		position: relative;
  		&:hover {
  			&:before {
  				content: '';
  				position: absolute;
  				top: 0;
  				left: 0;
  				width: 100%;
  				height: 100%;
  				background: url(/2023/assets/images/home/btn_photogallery_on.svg) no-repeat center center;
  				background-size: contain;
  			}
  		}
  	}
  }

   */
}
.p-mainVisual img {
  display: block;
  width: 100%;
}
.p-mainVisual__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.p-mainVisual__btn {
  position: absolute;
  left: 25px;
  bottom: 40px;
  transition: 0.3s all;
  display: flex;
}
.p-mainVisual__btn a {
  display: block;
  margin-left: 15px;
  position: relative;
  /*
  			&.gallery_modal {
  				&:hover {
  					&:before {
  						content: '';
  						position: absolute;
  						top: 0;
  						left: 0;
  						width: 100%;
  						height: 100%;
  						background: url(/2024/assets/images/home/btn_photogallery_on.svg?v=3) no-repeat center center;
  						background-size: contain;
  					}
  				}
  			}

  			&.btn_crowdfunding {
  				&:hover {
  					&:before {
  						content: '';
  						position: absolute;
  						top: 0;
  						left: 0;
  						width: 100%;
  						height: 100%;
  						background: url(/2024/assets/images/home/mainVisual_btn_on.svg) no-repeat center center;
  						background-size: contain;
  					}
  				}
  			}
  */
}
.p-mainVisual__btn a:hover {
  opacity: 1;
  transform: scale(1.05);
}
.p-mainVisual__btn a img {
  width: auto;
  height: 100%;
}
.p-mainVisual__btn a.openTrigger2025:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/2024/assets/images/home/btn_2025_on.svg) no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .p-mainVisual {
    /*
    &__btn {
    	width: ( 180 / 768 ) * 100vw;
    	right: 15%;
    	bottom: 51%;
    	display: block;
    	a {
    		width: 100%;
    	}
    }
    &__gallery {
    	width: 40vw;
    	right: 20px;
    	bottom: 20px;

    }

     */
  }
  .p-mainVisual__logo {
    position: absolute;
    top: 3%;
    left: 25px;
    width: 24.8062015504vw;
    z-index: 99;
  }
  .p-mainVisual__inner {
    height: 100vh;
    background: #f5f5f5;
  }
  .p-mainVisual__bg {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .p-mainVisual__btn {
    width: 43.6197916667vw;
    max-width: 170px;
    left: 10px;
    bottom: 18px;
    display: block;
  }
  .p-mainVisual__btn a {
    height: auto;
    margin-left: 0;
    margin-top: 0;
  }
  .p-mainVisual__btn a:hover {
    transform: scale(1);
  }
  .p-mainVisual__btn a img {
    width: 100%;
    height: auto;
  }
  .p-mainVisual__btn a + a {
    margin-top: 10px;
  }
}

.p-news {
  padding-top: 93px;
}
.p-news .l-block {
  padding-bottom: 0;
}
.p-news__more {
  margin-top: 55px;
  text-align: center;
}
.p-news__more .c-btn {
  display: inline-block;
  border: solid 2px #FCD745;
  border-radius: 12px;
  width: 174px;
}
.p-news__more .c-btn:hover {
  background: #FCD745;
}
@media only screen and (max-width: 768px) {
  .p-news {
    padding: 130px 0 80px;
  }
  .p-news .l-block__inner {
    padding: 0 20px;
  }
  .p-news .l-block__inner .c-h2-heading {
    margin-left: 0;
  }
  .p-news__more {
    margin: 30px auto 0;
    text-align: center;
  }
}

.p-newsList {
  position: relative;
  z-index: 2;
}
.p-newsList li {
  position: relative;
  display: flex;
  align-items: center;
}
.p-newsList li:nth-child(n+2) {
  margin-top: 34px;
}
.p-newsList__time {
  width: 17%;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-newsList__icon {
  color: #fff;
  /* width: 4em; */
  height: 1.6em;
  text-align: center;
  background-color: #f6b075;
  padding: 5px 8px 3px;
  line-height: 1;
  border-radius: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
}
.p-newsList__icon + .p-newsList__title {
  margin-left: 2.9%;
}
.p-newsList__icon--important {
  background-color: #fb490b;
  padding: 4px 4px 4px;
  min-width: 3.7em;
  text-align: center;
  display: inline-block;
}
.p-newsList__title {
  width: 76%;
  margin-left: 1.6%;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .p-newsList__title:hover {
    color: #f6b075;
  }
}
@media only screen and (max-width: 768px) {
  .p-newsList li {
    flex-wrap: wrap;
    padding: 15px 10px;
  }
  .p-newsList li:nth-child(n+2) {
    margin-top: 0;
  }
  .p-newsList__time {
    line-height: 1;
    display: inline-block;
    width: auto;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-newsList__icon {
    /*height: auto; */
    /* width: 45px; */
    line-height: 1;
    /* margin-top: -1px; */
    padding: 0 8px;
    /* display: inline-block; */
    margin-left: 4px;
    font-weight: normal;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-newsList__icon--important {
    padding: 3px 8px 3px;
  }
  .p-newsList__icon + .p-newsList__title {
    margin-left: 0;
  }
  .p-newsList__title {
    margin-top: 5px;
    display: block;
    margin-left: 0;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-newsList .decoration--1 {
    display: none;
  }
}

.p-about {
  position: relative;
  padding-top: 42px;
  padding-bottom: 42px;
}
.p-about .l-block {
  padding-bottom: 0;
}
.p-about .decoration--1 {
  top: -184px;
  left: 112px;
  width: 184px;
}
.p-about .decoration--2 {
  top: -115px;
  right: 61px;
  width: 170px;
}
@media only screen and (max-width: 768px) {
  .p-about {
    padding-top: 15%;
    padding-bottom: 20px;
  }
  .p-about .p-head {
    margin-left: 0;
  }
  .p-about .p-head .icon {
    margin-right: 5px;
  }
  .p-about .decoration--1 {
    width: 23.887587822vw;
    max-width: 102px;
    left: 50px;
    right: auto;
    top: -15%;
  }
  .p-about .decoration--2 {
    width: 28.1030444965vw;
    max-width: 120px;
    left: auto;
    right: 20px;
    top: -9.6%;
  }
}

.p-aboutRead {
  margin-top: -5px;
}
.p-aboutRead__inner {
  margin-top: 20px;
}
.p-aboutRead__left {
  width: 50%;
  max-width: 100%;
}
.p-aboutRead__text {
  line-height: 2;
  text-align: justify;
  font-size: 1.6rem;
}
.p-aboutRead__nav {
  margin-top: 62px;
}
.p-aboutRead__nav ul {
  display: flex;
}
.p-aboutRead__nav ul li {
  margin-right: 20px;
}
.p-aboutRead__nav ul li .c-btn {
  min-height: 36px;
  line-height: 36px;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-aboutRead__img {
  width: 53.2%;
  max-width: 564px;
  position: absolute;
  top: -27%;
  right: -7.6%;
}
.p-aboutRead__img img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-aboutRead {
    margin-top: 0;
  }
  .p-aboutRead__inner {
    padding: 0;
    margin-top: 0;
  }
  .p-aboutRead__left {
    width: 100%;
    margin-left: 0;
  }
  .p-aboutRead__text {
    margin-top: 20px;
    padding: 0;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-aboutRead__nav {
    margin-top: 50px;
  }
  .p-aboutRead__nav ul {
    justify-content: space-between;
  }
  .p-aboutRead__nav ul li {
    width: 48%;
    margin: 0;
  }
  .p-aboutRead__nav ul li .c-btn {
    width: 100%;
    font-size: 22px;
    font-size: 2.2rem;
    margin: 0;
  }
  .p-aboutRead__img {
    width: 100%;
    position: static;
  }
}

.p-pickup {
  position: relative;
  padding-bottom: 0;
  margin-top: 20px;
  padding-top: 148px;
}
.p-pickup .l-block {
  padding-bottom: 70px;
}
.p-pickup .l-block__inner--pickup {
  padding: 120px 110px;
}
.p-pickup .p-head {
  margin-bottom: 60px;
  text-align: center;
}
.p-pickup .p-head .c-heading {
  display: inline-block;
  margin: 0 auto;
}
.p-pickup .p-head .c-h2-heading span:lang(en) {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .p-pickup {
    padding: 50px 0 0;
    margin-top: 0;
  }
  .p-pickup .l-block {
    padding-bottom: 0;
  }
  .p-pickup .l-block__inner--pickup {
    padding: 120px 15px 80px;
  }
  .p-pickup .p-head .c-h2-heading span.icon {
    width: 35px;
  }
}

.p-panel ul {
  display: flex;
  flex-wrap: wrap;
}
.p-panel ul li {
  width: 30.5%;
  margin-right: 4.2%;
  /*
  &.pickup_07 {
  	a {
  		background-color: $COL_YELLOW;
  	}
  }

   */
}
.p-panel ul li:nth-child(3n) {
  margin-right: 0;
}
.p-panel ul li a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 999;
  /*
  &[target="_blank"] {
  	background: url('/2024/assets/images/common/icon_01.png') no-repeat right 8px bottom 15px;
  	background-size: 16px;

  }

   */
}
.p-panel ul li a:hover img {
  opacity: 1;
  transform: scale(1.04);
  transition: transform 0.3s ease;
}
.p-panel ul li a:hover .p-panel__img {
  border-radius: 16px;
}
.p-panel ul li:nth-child(n+4) {
  margin-top: 50px;
}
.p-panel ul li.pickup_01 a span:lang(en):not(.date) {
  color: #739acf;
}
.p-panel ul li.pickup_02 a span:lang(en):not(.date) {
  color: #f6b075;
}
.p-panel ul li.pickup_03 a span:lang(en):not(.date) {
  color: #f3a6b0;
}
.p-panel ul li.pickup_04 {
  /*
  a {
  	background-color: $COL_LIGHTBLUE;
  }

   */
}
.p-panel ul li.pickup_04 a span:lang(en):not(.date) {
  color: #aad1e5;
}
.p-panel ul li.pickup_05 a {
  background-color: #6ebbab;
}
.p-panel ul li.pickup_06 a span:lang(en):not(.date) {
  color: #b1bdde;
}
.p-panel ul li.pickup_07 a span:lang(en):not(.date) {
  color: #fcd745;
}
.p-panel__img {
  overflow: hidden;
  border-radius: 16px;
}
.p-panel__img img {
  display: block;
  transition: transform 1.2s ease;
  border-radius: 16px;
}
.p-panel__text {
  padding: 19px 10px 15px;
  position: relative;
}
.p-panel__text span {
  display: block;
}
.p-panel__text span:lang(en) {
  line-height: 1;
  font-size: 32px;
  font-size: 3.2rem;
}
.p-panel__text span:lang(ja) {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 10px;
  line-height: 1.4;
}
.p-panel__text span.date {
  font-size: 14px;
  font-size: 1.4rem;
  color: #B6B6B6;
  margin-top: 13px;
  letter-spacing: 1px;
}
.p-panel__text .icon_blank_pickup {
  display: inline-block;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .p-panel ul {
    justify-content: space-between;
  }
  .p-panel ul li {
    width: 49%;
    max-width: 49%;
    margin-right: 0;
  }
  .p-panel ul li:nth-child(n+3) {
    margin-top: 15px;
  }
  .p-panel ul li a {
    border-radius: 9px;
  }
  .p-panel ul li a[target=_blank] {
    background-size: 13px;
  }
  .p-panel__img {
    border-radius: 9px;
  }
  .p-panel__img img {
    border-radius: 9px;
  }
  .p-panel__icon {
    top: 15px;
    left: 15px;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-panel__text {
    padding: 15px 5px 5px;
    overflow-wrap: break-word;
  }
  .p-panel__text span {
    display: block;
  }
  .p-panel__text span:lang(en) {
    margin-top: 0;
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0px;
  }
  .p-panel__text span:lang(ja) {
    margin-top: 5px;
    font-weight: 600;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-panel__text span:lang(ja).small {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-panel__text .icon_blank_pickup {
    margin-left: 3px;
    width: 10px;
  }
}

.p-access {
  position: relative;
  padding-top: 50px;
}
.p-access .l-block__inner {
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-access {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .p-access .l-block {
    padding-bottom: 0px;
  }
  .p-access .l-block__inner {
    padding-bottom: 60px;
  }
}

.p-map {
  margin-top: 20px;
  display: flex;
  position: relative;
  z-index: 1;
}
.p-map__map {
  width: 49%;
}
.p-map__text {
  width: 38%;
  margin-left: 6.5%;
  font-family: "Noto Sans JP", sans-serif;
}
.p-map__text .text {
  line-height: 1.6;
  margin-top: 0;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-map__text .text p:nth-child(1) .text02 {
  margin-top: 0;
}
.p-map__text .text p:nth-child(3) {
  margin-top: 12px;
}
.p-map__text .text .text01 {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-map__text .text .text02 {
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  margin-top: 37px;
}
.p-map__text .text .text03 {
  margin-top: 5px;
  line-height: 2;
  white-space: nowrap;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-map__text .text .text03 small {
  font-size: 12px;
  font-size: 1.2rem;
}
.p-map__text .btn {
  margin-top: 50px;
}
.p-map__text .btn .c-btn {
  min-height: 32px;
  line-height: 32px;
  font-size: 20px;
  font-size: 2rem;
  width: 250px;
  border-color: #FCD745;
  padding: 15px 5px;
}
.p-map__text .btn .c-btn:hover {
  background: #FCD745;
}
@media only screen and (max-width: 768px) {
  .p-map {
    margin-top: 10px;
    display: block;
  }
  .p-map__map {
    width: 100%;
    max-width: 100%;
  }
  .p-map__text {
    margin-top: 50px;
    width: 100%;
    margin-left: 0;
  }
  .p-map__text .text {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-map__text .text .text01 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-map__text .text .text02 {
    margin-top: 30px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-map__text .text .text03 {
    white-space: normal;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-map .btn {
    margin-top: 30px;
    text-align: center;
  }
  .p-map .btn .c-btn {
    font-size: 22px;
    font-size: 2.2rem;
    border-color: #FCD745;
    width: 70%;
  }
  .p-map .btn .c-btn:hover {
    background: #FCD745;
  }
}

.p-support {
  padding: 7px 0 0;
}
.p-support .l-block__inner--support {
  padding: 120px 110px;
}
.p-support .p-head {
  text-align: center;
}
.p-support .p-head .c-heading {
  display: inline-block;
  margin: 0 auto;
}
.p-support__comment {
  margin-top: 65px;
}
.p-support__btn {
  margin-top: 60px;
}
.p-support__btn .c-btn {
  margin: auto;
  padding-top: 12px;
  padding-bottom: 15px;
  border-color: #95CFC8;
  width: 382px;
}
.p-support__btn .c-btn:hover {
  background: #95CFC8;
}
.p-support__label {
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 19px;
  font-size: 1.9rem;
}
.p-support__list {
  display: flex;
  flex-wrap: wrap;
}
.p-support__list li {
  overflow: hidden;
}
.p-support__list li img {
  border-radius: 6px;
  display: block;
}
.p-support__list li a {
  display: block;
}
.p-support__list--2column {
  margin-top: 50px;
}
.p-support__list--2column li {
  width: 524px;
  max-width: 49%;
}
.p-support__list--2column li:nth-child(2n) {
  margin-right: 0;
  margin-left: auto;
}
.p-support__list--2column li:nth-child(n+3) {
  margin-top: 2.1%;
}
.p-support__list--2column:first-of-type {
  margin-top: 0;
}
.p-support__list--4column li {
  width: 23.45%;
  margin-right: 2%;
}
.p-support__list--4column li:nth-child(4n) {
  margin-right: 0;
}
.p-support__list--4column li:nth-child(n+5) {
  margin-top: 2.1%;
}
.p-support__list--6column {
  margin-top: 50px;
}
.p-support__list--6column li {
  width: 14.8%;
  margin-right: 2.19%;
}
.p-support__list--6column li:nth-child(6n) {
  margin-right: 0;
}
.p-support__list--6column li:nth-child(n+7) {
  margin-top: 2.1%;
}
.p-support__list--text {
  margin-top: 60px;
  padding: 20px 60px 20px 32px;
  background-color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-support__list--text ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.p-support__list--text ul + ul {
  margin-top: 1.5em;
}
.p-support__list--text li {
  background-color: inherit;
  margin-right: 0;
  line-height: 2.7;
}
.p-support__list--text li a {
  display: inline-block;
}
.p-support__list--text li::after {
  content: "/";
  margin: 0 5px;
}
.p-support__list--text li:last-child::after {
  content: none;
}
.p-support__about {
  border: 2px solid #ecc4b5;
  border-radius: 17px;
  overflow: hidden;
  margin-top: 60px;
}
.p-support__about a {
  display: flex;
  position: relative;
  padding: 30px 29px 45px 38px;
}
.p-support__about a:hover {
  color: #76777a;
}
.p-support__about a img {
  width: 16%;
  margin-top: 1%;
  display: block;
}
.p-support__about p {
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-support__about p:nth-child(2) {
  width: 81%;
  margin-left: auto;
}
.p-support__about p:nth-child(3) {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-support__about p:nth-child(3) span {
  background-color: #95CFC8;
  color: #fff;
  border-top-left-radius: 17px;
  padding: 7px 10px 7px 27px;
  display: flex;
  align-items: center;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.p-support__about p:nth-child(3) span img {
  margin-left: 5px;
  width: 22px;
}
.p-support__about p strong {
  color: #95CFC8;
  display: block;
  margin-bottom: 3px;
  font-weight: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .p-support {
    padding: 60px 0 134px;
  }
  .p-support .l-block__inner--support {
    padding: 120px 15px 80px;
  }
  .p-support .p-head {
    margin-bottom: 50px;
  }
  .p-support__comment {
    border-width: 2px;
    margin-top: 27px;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-support__btn {
    margin-top: 30px;
  }
  .p-support__btn .c-btn {
    width: 95%;
    padding: 8px 5px;
  }
  .p-support__label {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-support__list--2column {
    margin-top: 4%;
  }
  .p-support__list--2column li {
    width: 100%;
    max-width: 100%;
  }
  .p-support__list--2column li + li {
    margin-top: 4%;
  }
  .p-support__list--2column li:nth-child(n+3) {
    margin-top: 4%;
  }
  .p-support__list--4column li {
    width: 48%;
    margin-right: 4%;
  }
  .p-support__list--4column li:nth-child(2n) {
    margin-right: 0;
  }
  .p-support__list--4column li:nth-child(n+3) {
    margin-top: 2.1%;
  }
  .p-support__list--6column {
    margin-top: 25px;
  }
  .p-support__list--6column li {
    width: 30%;
    margin-right: 5%;
  }
  .p-support__list--6column li:nth-child(6n) {
    margin-right: 5%;
  }
  .p-support__list--6column li:nth-child(3n) {
    margin-right: 0;
  }
  .p-support__list--6column li:nth-child(n+4) {
    margin-top: 2%;
  }
  .p-support__list--text {
    margin-top: 25px;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 20px;
  }
  .p-support__about a {
    padding: 10px 20px 40px;
    display: block;
  }
  .p-support__about a > img {
    width: 24%;
    position: absolute;
    top: 10px;
    left: 20px;
  }
  .p-support__about p:nth-child(2) {
    width: 100%;
  }
  .p-support__about p strong {
    width: 64%;
    margin-left: auto;
    color: #767779;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 9%;
    margin-bottom: 10%;
  }
  .p-support__about p:nth-child(3) span img {
    width: 16px;
  }
}

.p-arrowMenu {
  display: flex;
}
.p-arrowMenu li {
  margin-right: 115px;
  margin-left: 0 !important;
  margin-bottom: 30px;
}
.p-arrowMenu li.no-link {
  pointer-events: none;
}
.p-arrowMenu li.no-link .c-link :lang(en) {
  color: #d2d2d3;
}
.p-arrowMenu li.no-link .c-link :lang(ja) {
  color: #d2d2d3;
}
.p-arrowMenu li.no-link .c-link::before {
  border-color: #d2d2d3;
}
.p-arrowMenu li.no-link .c-link:hover {
  pointer-events: none;
}
.p-arrowMenu li.no-link .c-link:hover::before {
  left: -5px;
}
.p-under--info .p-arrowMenu li {
  margin-right: 59px;
}
.p-under--info .p-arrowMenu li:nth-child(4) {
  margin-right: 0;
}
.p-arrowMenu__title {
  margin-bottom: 20px;
}
.p-arrowMenu__title :lang(en) {
  font-size: 48px;
  font-size: 4.8rem;
}
.p-arrowMenu__title :lang(en) + :lang(ja) {
  margin-left: 20px;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-size: 1.6rem;
}
.cat_about .p-arrowMenu__title :lang(en) {
  color: #c8d846;
}
.cat_ap .p-arrowMenu__title :lang(en) {
  color: #739acf;
}
.cat_program .p-arrowMenu__title :lang(en) {
  color: #f6b075;
}
.cat_howto .p-arrowMenu__title :lang(en) {
  color: #fcd745;
}
.cat_hyc .p-arrowMenu__title :lang(en) {
  color: #6ebbab;
}
.cat_app .p-arrowMenu__title :lang(en) {
  color: #b1bdde;
}
.cat_support .p-arrowMenu__title :lang(en) {
  color: #f3a6b0;
}
.cat_info .p-arrowMenu__title :lang(en) {
  color: #a4bf1e;
}
@media only screen and (max-width: 768px) {
  .p-arrowMenu {
    display: block;
  }
  .p-arrowMenu li {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #fff;
    margin-bottom: 0;
  }
  .p-arrowMenu li:last-child {
    border-bottom: none !important;
  }
  .p-arrowMenu li .c-link {
    padding: 15px 20px 15px 10px;
    position: relative;
    line-height: 1.4;
  }
  .p-arrowMenu li .c-link :lang(en) {
    display: inline-block;
    margin-right: 10px;
    min-width: 4.5em;
  }
  .p-arrowMenu li .c-link :lang(ja) {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-arrowMenu li .c-link :lang(ja).row2 {
    vertical-align: bottom;
  }
  .p-arrowMenu li .c-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    bottom: 0;
    margin: auto;
    right: 15px;
    width: 12px;
    height: 12px;
  }
  .p-arrowMenu li .c-link::after {
    content: none;
  }
}

.p-pagetop {
  width: 58px;
  right: 20px;
  z-index: 3;
  transition: 0.2s all;
  display: none;
}
.p-pagetop a {
  display: block;
  background-color: #fff;
  border-radius: 50%;
}
.p-pagetop a img {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-pagetop {
    width: 50px;
    right: 10px;
  }
  .p-pagetop--spfixed .p-pagetop {
    position: absolute !important;
  }
}

.js_modalFirstTrigger {
  display: none;
}

.p-modal__news {
  display: none;
}
.p-modal__news__inner {
  background-color: #fff;
  padding: 58px 32px;
}
.p-modal__news__content {
  height: 475px;
  width: 100%;
  overflow: auto;
  padding-right: 10px;
}
.p-modal__news__content::-webkit-scrollbar {
  width: 6px;
}
.p-modal__news__content::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
}
.p-modal__news__content::-webkit-scrollbar-thumb {
  background: #3eaa40;
  border-radius: 10px;
}
.p-modal__news__content p {
  font-size: 13px;
  font-size: 1.3rem;
}
.p-modal__news__content p strong {
  color: #2f5496;
}
.p-modal__news__content p .title {
  display: block;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.p-modal__news__content p a {
  color: #2f5496;
}
@media only screen and (max-width: 768px) {
  .p-modal__news__inner {
    padding: 30px 10px;
  }
  .p-modal__news__content {
    height: 400px;
    padding-right: 10px;
    margin-right: 0;
  }
  .p-modal__news__content .text01 {
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .p-modal__news__content .text02 {
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  .p-modal__news__content .text03 {
    font-size: 13px;
  }
}

.p-gallery {
  width: 100%;
  height: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}
.p-gallery ul li {
  height: 100%;
}
.p-gallery__wrap {
  height: 100%;
}
.p-gallery__img {
  height: calc(100% - 75px);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  display: none;
}
.slick-current .p-gallery__img {
  display: block;
}
.p-gallery__img span {
  width: 4em;
  height: 4em;
  display: block;
  position: absolute;
  background-color: #8fbfdb;
  opacity: 1;
  margin: auto;
  left: 0;
  right: 0;
  top: 45%;
}
.p-gallery__img span::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  border-top: 0.5em solid rgba(255, 255, 255, 0.2);
  border-right: 0.5em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.5em solid rgba(255, 255, 255, 0.2);
  border-left: 0.5em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.p-gallery__img img {
  width: auto;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-gallery__caption {
  line-height: 1.4;
  padding: 0 5px;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  display: none;
}
.slick-current .p-gallery__caption {
  display: block;
}
.p-gallery__main {
  position: relative;
  width: 100%;
  min-width: calc((100vh - 171px) * 1.5);
  height: calc(100vh - 171px);
  margin: 0 auto;
}
.p-gallery__main ul {
  opacity: 0;
  transition: 0.3s all;
}
.p-gallery__main .slick-slider, .p-gallery__main .slick-list, .p-gallery__main .slick-track, .p-gallery__main .slick-slide {
  height: 100%;
}
.p-gallery__main .slick-arrow {
  position: fixed;
  width: 82px;
  height: 82px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 999;
}
.p-gallery__main .slick-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.p-gallery__main .slick-prev {
  left: 30px;
}
.p-gallery__main .slick-prev::before {
  background: url(/2025/assets/images/common/pager-prev.png) left top no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 769px) {
  .p-gallery__main .slick-prev:hover::before {
    -webkit-animation-name: arrowAnimPrev;
    animation-name: arrowAnimPrev;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
}
@keyframes arrowAnimPrev {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.p-gallery__main .slick-next {
  right: 30px;
}
.p-gallery__main .slick-next::before {
  background: url(/2025/assets/images/common/pager-next.png) left top no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 769px) {
  .p-gallery__main .slick-next:hover::before {
    -webkit-animation-name: arrowAnimNext;
    animation-name: arrowAnimNext;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
}
@keyframes arrowAnimNext {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.p-gallery__main .slick-counter {
  position: fixed;
  color: #fff;
  right: 90px;
  top: 20px;
  text-align: right;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-gallery__thumb {
  position: fixed;
  width: 100%;
  height: 95px;
  left: 0;
  bottom: 15px;
  overflow: hidden;
}
.p-gallery__thumb ul, .p-gallery__thumb .slick-list, .p-gallery__thumb .slick-track {
  height: 100%;
}
.p-gallery__thumb img {
  width: 100%;
}
.p-gallery__thumb .slick-slide {
  margin: 0 4px;
  position: relative;
}
.p-gallery__thumb .slick-current:not(.add)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.p-gallery__thumb .slick-current:not(.add) img {
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-gallery__thumb .slick-current.fix::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.p-gallery__thumb .slick-current.fix img {
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-gallery__img--height {
    height: calc(100% - 75px);
  }
  .p-gallery__img--height img {
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .p-gallery__caption {
    font-size: 10px;
    font-size: 1rem;
  }
  .p-gallery__main {
    position: absolute;
    width: 100vw;
    min-width: inherit;
    height: 90vw;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-gallery__main .slick-arrow {
    width: 12.8125vw;
    height: 12.8125vw;
    top: auto;
    bottom: 23.4375vw;
  }
  .p-gallery__main .slick-prev {
    left: 2.5vw;
  }
  .p-gallery__main .slick-next {
    right: 2.5vw;
  }
  .p-gallery__main .slick-counter {
    right: 60px;
    top: 15px;
  }
  .p-gallery__thumb {
    height: auto;
  }
}

.modaal-fullscreen .modaal-close {
  right: 10px;
  top: 10px;
}

.modaal-close,
#modaal-close {
  display: block !important;
  opacity: 1 !important;
}

.js-animation:not(.is-inview) {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s all;
}
.js-animation.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: 1s all;
}

#modal-overlay {
  cursor: pointer;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
}

.modal {
  display: none;
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1070px;
  background: #fff;
  border: solid 5px #b1bdde;
  border-radius: 20px;
  z-index: 9999;
}
.modal .c-h2-heading span:lang(en) {
  color: #b1bdde;
  font-size: 38px;
  font-size: 3.8rem;
}
.modal .c-h2-heading span:lang(ja) {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 2px;
}
@media only screen and (max-width: 768px) {
  .modal {
    top: 20px;
  }
  .modal .c-h2-heading span:lang(en) {
    font-size: 38px;
    font-size: 3.8rem;
  }
  .modal .c-h2-heading span:lang(ja) {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-teaser__wrap {
  background: #fafafd;
  border-radius: 20px;
  padding: 48px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__wrap {
    padding: 30px 7% 100px;
  }
}
.p-teaser__title > img {
  margin: 0 auto;
  width: 100%;
  max-width: 841px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__title {
    padding-left: 5vw;
  }
}
.p-teaser__head {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 6px;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .p-teaser__head {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 180%;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-teaser__text {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .p-teaser__text {
    font-size: 16px;
    text-align: left;
  }
}
.p-teaser__day {
  text-align: center;
}
.p-teaser__day span {
  background: #F5B073;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  padding: 0.8rem 3rem;
}
@media only screen and (max-width: 768px) {
  .p-teaser__day {
    background: #F5B073;
    border-radius: 8px;
    line-height: 180%;
    padding: 10px 0;
  }
  .p-teaser__day span {
    font-size: 15px;
    background: none;
    padding: 0;
    letter-spacing: 1px;
  }
}
.p-teaser__daysub {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .p-teaser__daysub {
    font-size: 12px;
  }
}
.p-teaser__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-teaser__btn a {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.14;
  margin-top: 35px;
  border: 2px solid #B2BDDF;
  border-radius: 18px;
  background: #fff;
  padding: 23px 60px;
  text-align: center;
  letter-spacing: 3px;
}
.p-teaser__btn a span {
  padding-right: 2.3rem;
  position: relative;
}
.p-teaser__btn a span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: url(/2025/assets/images/home/icon_blank.svg) no-repeat center center;
  background-size: contain;
}
.p-teaser__btn a:hover {
  color: #B2BDDF;
}
.p-teaser__btn--txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__btn a {
    border-radius: 13px;
    font-size: 14px;
    padding: 16px 44px;
  }
}
.p-teaser__message {
  line-height: 1.55;
  margin-top: 1.5em;
}
.p-teaser__message p + p {
  margin-top: 1.5em;
}
@media only screen and (max-width: 768px) {
  .p-teaser__message {
    line-height: 2.25;
    margin-top: 0;
  }
}
.p-teaser__organizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 45px;
}
.p-teaser__organizer > figure {
  width: 197px;
  font-size: 0;
}
.p-teaser__organizer > figure img {
  border-radius: 10px;
}
.p-teaser__organizer > p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-left: 1.2em;
}
.p-teaser__organizer > p span {
  display: block;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.19;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__organizer {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .p-teaser__organizer > figure {
    width: 39%;
  }
  .p-teaser__organizer > p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-teaser__organizer > p span {
    font-size: 21px;
    font-size: 2.1rem;
    margin-top: 5px;
  }
}
.p-teaser__sponsor {
  margin-top: 60px;
  border-top: solid 5px #95cfc8;
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.p-teaser__sponsor--btn {
  display: inline-block;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14;
  margin-top: 15px;
  border: solid 4px #95cfc8;
  border-radius: 20px;
  background: #fff;
  color: #90908f;
  padding: 1.2em 2.5em 1.4em;
  text-align: left;
  letter-spacing: 3px;
  width: 375px;
  text-align: center;
}
.p-teaser__sponsor--btn:hover {
  background: #95cfc8;
  color: #fff;
}
.p-teaser__sponsor--txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__sponsor {
    margin-top: 25px;
    border-top: solid 3px #95cfc8;
    padding-top: 25px;
    flex-direction: column;
  }
  .p-teaser__sponsor--header {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .p-teaser__sponsor--btn {
    margin-top: 10px;
    font-size: 19px;
    font-size: 1.9rem;
    border: solid 3px #95cfc8;
    border-radius: 10px;
    padding: 1.2em 1.5em 1.5em;
    width: 100%;
  }
  .p-teaser__sponsor--txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-teaser__documentary {
  margin-top: 60px;
  border-top: solid 5px #91c3dc;
  padding-top: 40px;
}
.p-teaser__documentary--header {
  color: #91c3dc;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
}
.p-teaser__documentary--btn {
  display: inline-block;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.14;
  margin-top: 15px;
  border: solid 4px #91c3dc;
  border-radius: 20px;
  background: #fff;
  padding: 15px 30px 15px 35px;
  text-align: left;
}
.p-teaser__documentary--btn span {
  padding-left: 88px;
  position: relative;
  display: block;
}
.p-teaser__documentary--btn span:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 71px;
  height: 50px;
  background: url(/2023/assets/images/home/teaser2024/icon_yt.svg) no-repeat center center;
  background-size: contain;
}
.p-teaser__documentary--btn:hover {
  background: #91c3dc;
  color: #fff;
}
.p-teaser__documentary--txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0px;
}
@media only screen and (max-width: 768px) {
  .p-teaser__documentary {
    margin-top: 25px;
    border-top: solid 3px #91c3dc;
    padding-top: 25px;
  }
  .p-teaser__documentary--header {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .p-teaser__documentary--btn {
    margin-top: 10px;
    font-size: 19px;
    font-size: 1.9rem;
    border: solid 3px #91c3dc;
    border-radius: 10px;
    padding: 15px 20px;
  }
  .p-teaser__documentary--btn span {
    padding-left: 4em;
  }
  .p-teaser__documentary--btn span:before {
    width: 50px;
    height: 35px;
  }
  .p-teaser__documentary--txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50% !important;
  border: 3px solid #bcc5e3;
  transition: all 0.2s ease-in-out;
  padding: 0;
  -webkit-appearance: none;
  display: block !important;
  opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
  .modal-close {
    right: -15px;
    top: -18px;
    width: 51px;
    height: 51px;
  }
}
.modal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 3px;
  height: 25px;
  border-radius: 4px;
  background: #bcc5e3;
  transition: background 0.2s ease-in-out;
  transform: rotate(-45deg);
}
.modal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 3px;
  height: 25px;
  border-radius: 4px;
  background: #bcc5e3;
  transition: background 0.2s ease-in-out;
  transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .modal-close:before, .modal-close:after {
    height: 23px;
  }
}
.modal-close:hover {
  background: #bcc5e3;
}
.modal-close:hover:before {
  background: #fff;
  transform: rotate(-45deg);
}
.modal-close:hover:after {
  background: #fff;
  transform: rotate(45deg);
}
.modal-close span {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

#modal-close-footer {
  display: none !important;
  position: absolute;
  top: inherit;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  #modal-close-footer {
    display: block !important;
    bottom: 22px;
  }
}

/* --------------------------- */
/* lineup */
.p-under--ap .p-read {
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .p-under--ap .p-read {
    text-align: left;
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.p-under--ap .p-read__link {
  text-align: center;
}
.p-under--ap .p-read__link a {
  color: #f00;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .p-under--ap .p-read__link {
    text-align: left;
  }
}

.p-lineup {
  margin: 80px auto 0;
}
.p-lineup hr {
  position: relative;
  height: 1px;
  border: none;
  margin: 80px 0 50px;
}
.p-lineup hr::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f6b075;
  border-radius: 5px;
}
.p-lineup__heading--1 {
  margin-top: 34px;
  text-align: center;
  padding-bottom: 13px;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.3;
  font-size: 42px;
  font-size: 4.2rem;
}
.p-lineup__heading--1::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-color: #739acf;
  border-radius: 5px;
}
.p-lineup__heading--2 {
  margin-left: -5px;
  margin-right: -5px;
  text-align: center;
  letter-spacing: normal;
  color: #739acf;
  font-size: 38px;
  font-size: 3.8rem;
}
.p-lineup__label--1 {
  margin-top: -2px;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-lineup__label--1 .small {
  margin-left: 5px;
  font-size: 17px;
  font-size: 1.7rem;
}
.p-lineup__label--2 {
  text-align: center;
  margin-top: 30px;
  font-size: 35px;
  font-size: 3.5rem;
}
.p-lineup__ending {
  text-align: center;
  margin-top: 50px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-lineup {
    margin-top: 40px;
  }
  .p-lineup hr {
    margin: 50px 0;
  }
  .p-lineup hr::before {
    height: 4px;
  }
  .p-lineup__heading--1 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 30px;
    font-size: 3rem;
  }
  .p-lineup__heading--1::before {
    height: 4px;
  }
  .p-lineup__heading--2 {
    margin-bottom: 5px;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-lineup__heading--3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-lineup__label--1 {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-lineup__label--1 .small {
    margin-left: 5px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-lineup__label--2 {
    margin-top: 20px;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-lineup__ending {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.p-lineupList.mc-irregular {
  margin-top: 80px;
}
.p-lineupList ul {
  display: flex;
  flex-wrap: wrap;
}
.p-lineupList ul li {
  position: relative;
}
.p-lineupList ul li a {
  position: relative;
}
.p-lineupList ul li a:hover img {
  opacity: 1;
}
.p-lineupList ul li.new::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 64px;
  background: url("/2025/assets/images/common/icon_new.png") no-repeat left top;
  background-size: 100%;
  top: -42px;
  left: -17px;
}
.p-lineupList ul li.andmore {
  border-radius: 8px;
  color: #f6b075;
  font-size: 22px;
  border: 4px solid #c2cf49;
  background-color: inherit;
  height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lineupList ul li.andmore p {
  margin-bottom: 0;
}
.p-lineupList ul li.text01 .p-lineupList__name {
  line-height: 1.2;
  letter-spacing: -0.03em;
  padding-top: 3px;
  padding-bottom: 9px;
}
.p-lineupList ul li.text01 .p-lineupList__name .small {
  font-size: 12px;
  display: inline-block;
  margin-top: 7px;
}
.p-lineupList ul li.text02 .p-lineupList__name .small {
  letter-spacing: -0.01em;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-lineupList ul li.text03 .p-lineupList__name .small {
  letter-spacing: -0.01em;
}
.p-lineupList ul li.text04 .p-lineupList__name {
  line-height: 1.2;
  letter-spacing: -0.03em;
  padding-top: 3px;
  padding-bottom: 9px;
}
.p-lineupList ul li.text04 .p-lineupList__name .small {
  letter-spacing: 0.1em;
}
.p-lineupList ul li.text05 .p-lineupList__name {
  letter-spacing: 0em;
}
.p-lineupList ul li.text05 .p-lineupList__name .small {
  letter-spacing: 0.1em;
}
.p-lineupList__img {
  position: relative;
}
.p-lineupList__img img {
  display: block;
  border-radius: 13px;
  overflow: hidden;
  height: auto;
  border-radius: 23px;
  border: 4px solid #f6b075;
}
.p-lineupList__name {
  margin-top: 10px;
  line-height: 1.6;
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
}
.p-lineupList__name small {
  font-size: 80%;
  display: block;
}
.p-lineupList__name .small {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  margin-top: 4px;
  display: block;
}
.p-lineupList__name .text01 {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-lineupList--2column ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-lineupList--2column ul::before {
  content: "";
  display: block;
  width: 327px;
  order: 1;
}
.p-lineupList--2column ul::after {
  content: "";
  display: block;
  width: 327px;
}
.p-lineupList--2column ul li {
  width: 327px;
}
.p-lineupList--2column ul li:nth-child(2n) {
  margin-right: 34.5%;
}
.p-lineupList--2column ul li:nth-child(n+3) {
  margin-top: 80px;
}
.p-lineupList--2column ul li.col2 {
  width: 691px;
}
.p-lineupList--2column + .p-lineup__heading--2 {
  margin-top: 45px;
}
.p-lineupList--3column {
  margin-top: 60px;
}
.p-lineupList--3column ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-lineupList--3column ul::before {
  content: "";
  display: block;
  width: 327px;
  order: 1;
}
.p-lineupList--3column ul::after {
  content: "";
  display: block;
  width: 327px;
}
.p-lineupList--3column ul li {
  width: 327px;
}
.p-lineupList--3column ul li:nth-child(n+4) {
  margin-top: 80px;
}
.p-lineupList--3column ul li.col2 {
  width: 691px;
}
.p-lineupList--3column + .c-noteList {
  margin-top: 70px;
  text-align: center;
  line-height: 1.6;
}
.p-lineupList--3column + .c-noteList strong {
  display: block;
  color: #f6b075;
  margin-bottom: 10px;
  font-size: 58px;
  font-size: 5.8rem;
}
.p-lineupList--5column {
  margin-top: 15px;
}
.p-lineupList--5column ul li {
  width: 187px;
  margin-right: 7px;
}
.p-lineupList--5column ul li:nth-child(5n) {
  margin-right: 0;
}
.p-lineupList--5column ul li:nth-child(n+6) {
  margin-top: 20px;
}
.p-lineupList--5column ul li .p-lineupList__name {
  padding: 2px 3px;
}
.p-lineupList--1 li:nth-child(n+3) {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-lineupList.mc-irregular {
    margin-top: 35px;
  }
  .p-lineupList ul li.new::after {
    width: 40px;
    height: 44px;
    top: -25px;
    left: -14px;
  }
  .p-lineupList ul li.text01 .p-lineupList__name .small {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .p-lineupList ul li.andmore {
    height: auto;
    min-height: 170px;
  }
  .p-lineupList__name {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-lineupList__name .small {
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 1px;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-lineupList__name .text01 {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-lineupList__img img {
    border-width: 3px;
    border-radius: 13px;
  }
  .p-lineupList--2column ul li {
    width: 48%;
  }
  .p-lineupList--2column ul li:nth-child(2n) {
    margin-right: 0;
  }
  .p-lineupList--2column ul li:nth-child(n+3) {
    margin-top: 35px;
  }
  .p-lineupList--2column ul li.col2 {
    width: 100%;
    margin-right: 0;
  }
  .p-lineupList--2column ul li.col2 + li {
    margin-top: 35px;
  }
  .p-lineupList--2column + .p-lineup__heading--2 {
    margin-top: 45px;
  }
  .p-lineupList--3column {
    margin-top: 30px;
  }
  .p-lineupList--3column ul li {
    width: 48%;
  }
  .p-lineupList--3column ul li:nth-child(n+3) {
    margin-top: 35px;
  }
  .p-lineupList--3column ul li.col2 {
    width: 100%;
    margin-right: 0;
  }
  .p-lineupList--3column ul li.col2 + li {
    margin-top: 35px;
  }
  .p-lineupList--3column + .c-noteList {
    margin-top: 70px;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-lineupList--3column + .c-noteList strong {
    display: block;
    color: #f6b075;
    margin-bottom: 0;
    font-size: 31px;
    font-size: 3.1rem;
  }
  .p-lineupList--3column + .c-noteList .small-sp {
    font-size: 70%;
  }
  .p-lineupList--4column ul li {
    width: 48%;
    margin-right: 4%;
  }
  .p-lineupList--4column ul li:nth-child(2n) {
    margin-right: 0;
  }
  .p-lineupList--4column ul li:nth-child(n+3) {
    margin-top: 35px;
  }
  .p-lineupList--4column ul li a {
    height: 100%;
  }
  .p-lineupList--4column ul li.col2 {
    width: 100%;
    margin-right: 0;
  }
  .p-lineupList--4column ul li.col2 + li {
    margin-top: 35px;
  }
  .p-lineupList--4column + .c-noteList {
    margin-top: 15px;
  }
  .p-lineupList--4column + .c-noteList + .p-lineup__heading--1 {
    margin-top: 30px;
  }
  .p-lineupList--5column {
    margin-top: 15px;
  }
  .p-lineupList--5column ul li {
    width: 32%;
    margin-right: 2%;
  }
  .p-lineupList--5column ul li:nth-child(5n) {
    margin-right: 2%;
  }
  .p-lineupList--5column ul li:nth-child(3n) {
    margin-right: 0;
  }
  .p-lineupList--5column ul li:nth-child(n+4) {
    margin-top: 10px;
  }
  .p-lineupList--5column ul li a {
    height: 100%;
  }
  .p-lineupList--1 ul li:nth-child(2n+1) {
    margin-right: 0;
  }
}

.p-lineupProfile {
  width: 1017px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lineupProfile__2column {
  display: flex;
  justify-content: space-between;
}
.p-lineupProfile__2column .p-lineupProfile__block {
  width: 50%;
}
.p-lineupProfile__img {
  text-align: center;
}
.p-lineupProfile__img img {
  border-radius: 18px;
  display: block;
  overflow: hidden;
  height: auto;
  border: 6px solid #fff;
  margin: auto;
}
.p-lineupProfile__name {
  text-align: center;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: -7px;
  font-size: 38px;
  font-size: 3.8rem;
}
.p-lineupProfile__name small {
  display: block;
}
.p-lineupProfile__name small:lang(en) {
  font-size: 15px;
  font-size: 1.5rem;
}
.p-lineupProfile__name small.small2 {
  display: inline;
  font-size: 36px;
  font-size: 3.6rem;
}
.p-lineupProfile__info {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-lineupProfile__info > br {
  display: none;
}
.p-lineupProfile__info a {
  text-decoration: underline;
}
.p-lineupProfile__info a:hover {
  text-decoration: none;
}
.p-lineupProfile__block {
  margin-top: 60px;
}
.p-lineupProfile__block--2column {
  display: flex;
}
.p-lineupProfile__block--2column .p-lineupProfile__text {
  margin-left: 15px;
  margin-top: -5px;
}
.p-lineupProfile__block--2column .p-lineupProfile__icon {
  margin-bottom: 0;
}
.p-lineupProfile__icon {
  background-color: #739acf;
  color: #fff;
  display: inline-block;
  padding: 0 6px;
  border-radius: 5px;
  margin-bottom: 15px;
  height: 1.8em;
}
.p-lineupProfile__title {
  font-size: 22px;
  font-size: 2.2rem;
  position: relative;
  padding-left: 27px;
  margin-bottom: 10px;
}
.p-lineupProfile__title::before {
  content: "";
  width: 11px;
  height: 11px;
  background-color: #f6b075;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-lineupProfile__text a {
  text-decoration: underline;
  word-break: break-all;
}
.p-lineupProfile__dl {
  display: flex;
  flex-wrap: wrap;
}
.p-lineupProfile__dl dt {
  width: 28%;
}
.p-lineupProfile__dl dd {
  width: 72%;
}
.p-lineupProfile__movie {
  border-radius: 6px;
  overflow: hidden;
}
.p-lineupProfile__sns ul {
  display: flex;
  flex-wrap: wrap;
}
.p-lineupProfile__sns ul li {
  width: 40px;
}
.p-lineupProfile__sns ul li a {
  display: block;
}
.p-lineupProfile__sns ul li a img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-lineupProfile__sns ul li a:hover {
    transform: scale(1.2);
  }
}
.p-lineupProfile__sns ul li:nth-child(n+2) {
  margin-left: 17px;
}
.p-lineupProfile__program ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-lineupProfile__program ul li {
  overflow: hidden;
  width: 49%;
  transition: 0.3s all;
  border: 2px solid #f6b075;
  border-radius: 17px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-lineupProfile__program ul li a:hover {
  opacity: 0.7;
  color: #76777a;
}
.p-lineupProfile__program ul li:nth-child(n+3) {
  margin-top: 18px;
}
.p-lineupProfile__program ul li a {
  display: block;
  height: 100%;
}
.p-lineupProfile__program ul li .inner {
  height: 100%;
  min-height: 46px;
  padding: 13px 10px;
  display: flex;
  align-items: center;
}
.p-lineupProfile__program ul li.ticket .inner {
  padding-right: 11%;
  background: #fff url("../images/common/icon_ticket.svg") no-repeat right 3% center;
  background-size: 7%;
}
.p-lineupProfile__program-icon {
  background-color: #f6b075;
  display: inline-block;
  line-height: 1;
  text-align: center;
  padding: 5px 23px;
  border-radius: 16px;
  letter-spacing: 0em;
  color: #fff;
}
.p-lineupProfile__program-text {
  line-height: 1.3;
  margin-left: 15px;
  width: 86%;
}
.p-lineupProfile__program-text p {
  display: flex;
  align-items: center;
}
.p-lineupProfile__program-text p span:nth-child(n+2) {
  margin-left: 10px;
}
.p-lineupProfile__plural {
  position: relative;
  padding-top: 85px;
  margin-top: 47px;
  display: flex;
  justify-content: space-between;
}
.p-lineupProfile__plural::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  right: 0;
  margin: auto;
  width: 120%;
  height: 1px;
  border-radius: 5px;
  background-color: #f6b075;
}
.p-lineupProfile__plural__img {
  width: 368px;
}
.p-lineupProfile__plural__img img {
  height: auto;
}
.p-lineupProfile__plural__right {
  width: 540px;
}
.p-lineupProfile__plural__right .p-lineupProfile__name {
  text-align: left;
  margin-bottom: 0;
}
.p-lineupProfile__plural__right .p-lineupProfile__name span {
  font-size: 60%;
  margin-left: 10px;
}
.p-lineupProfile__plural__right .p-lineupProfile__icon {
  margin-top: 30px;
  margin-bottom: 10px;
}
.p-lineupProfile__plural__right .p-lineupProfile__dl {
  display: block;
}
.p-lineupProfile__plural__right .p-lineupProfile__dl dt {
  width: 100%;
}
.p-lineupProfile__plural__right .p-lineupProfile__dl dd {
  width: 100%;
  margin-top: -8px;
}
.p-lineupProfile__plural__right .p-lineupProfile__dl dd + dt {
  margin-top: 10px;
}
.p-lineupProfile__plural .p-lineupProfile__title {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-lineupProfile__2column {
    display: block;
  }
  .p-lineupProfile__2column .p-lineupProfile__block {
    width: 100%;
  }
  .p-lineupProfile__name {
    margin-top: 10px;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-lineupProfile__name small:lang(en) {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-lineupProfile__name small.small2 {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-lineupProfile__block {
    margin-top: 40px;
  }
  .p-lineupProfile__block--2column .p-lineupProfile__text {
    margin-left: 10px;
    margin-top: 0;
  }
  .p-lineupProfile__title {
    padding-left: 20px;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .p-lineupProfile__img img {
    border-radius: 9px;
    height: auto;
  }
  .p-lineupProfile__icon {
    margin-bottom: 5px;
  }
  .p-lineupProfile__text {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-lineupProfile__sns {
    margin-top: -20px;
  }
  .p-lineupProfile__sns ul li:nth-child(n+2) {
    margin-left: 15px;
  }
  .p-lineupProfile__info {
    text-align: left;
  }
  .p-lineupProfile__program ul li {
    width: 100%;
  }
  .p-lineupProfile__program ul li:nth-child(n+2) {
    margin-top: 10px;
  }
  .p-lineupProfile__program ul li.ticket .inner {
    padding-right: 14%;
  }
  .p-lineupProfile__program-icon {
    padding: 7px 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-lineupProfile__program-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-lineupProfile__dl {
    display: flex;
    flex-wrap: wrap;
  }
  .p-lineupProfile__dl dt {
    width: 100%;
  }
  .p-lineupProfile__dl dd {
    width: 100%;
  }
  .p-lineupProfile__dl dd + dt {
    margin-top: 10px;
  }
  .p-lineupProfile__movie ul li {
    width: 48%;
    margin-right: 0;
  }
  .p-lineupProfile__movie ul li:nth-child(2n) {
    margin-left: 4%;
  }
  .p-lineupProfile__movie ul li:nth-child(n+3) {
    margin-top: 15px;
  }
  .p-lineupProfile__plural {
    padding: 20px 10px 0;
    margin-top: 47px;
    flex-wrap: wrap;
  }
  .p-lineupProfile__plural::before {
    content: none;
  }
  .p-lineupProfile__plural__img {
    width: 100%;
  }
  .p-lineupProfile__plural__right {
    width: 100%;
  }
  .p-lineupProfile__plural__right .p-lineupProfile__name {
    text-align: center;
  }
  .p-lineupProfile__plural__right .p-lineupProfile__icon {
    margin-top: 20px;
    margin-bottom: 5px;
  }
  .p-lineupProfile__plural__right .p-lineupProfile__dl dd {
    margin-top: 0px;
  }
}

.p-youtubeWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-youtubeWrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

_:-ms-fullscreen, :root .p-lineupProfile__icon {
  line-height: 2.3;
}

/* --------------------------- */
/* about */
.p-concept {
  position: relative;
  margin-top: 65px;
}
.p-concept p + p {
  margin-top: 35px;
  line-height: 2;
}
.p-concept .p-read {
  margin-bottom: 40px;
  line-height: 1.6;
}
.p-concept .p-read p {
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
}
.p-concept .p-read + p {
  line-height: 2;
}
.p-concept__img {
  margin-top: 85px;
}
.p-concept__img img {
  width: 100%;
}
.p-concept__map {
  margin-top: 150px;
}
.p-concept__map-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .p-concept {
    padding: 0;
  }
  .p-concept p + p {
    margin-top: 25px;
  }
  .p-concept .p-read p {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  .p-concept__img {
    width: 100%;
    margin: 50px auto 0;
  }
  .p-concept__map {
    margin-top: 80px;
  }
  .p-concept__map-title {
    margin-bottom: 30px;
  }
  .p-concept__map-title p {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.p-message {
  margin: 35px auto 0;
}
.p-message p + p {
  margin-top: 25px;
}
.p-message p a {
  text-decoration: underline;
}
.p-message p a:hover {
  text-decoration: none;
}
.p-message .label {
  color: #739acf;
}
.p-message .label + p {
  margin-top: 10px;
}
.p-message__profile {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-message__profile__img {
  width: 197px;
  border-radius: 10px;
  overflow: hidden;
}
.p-message__profile__img img {
  display: block;
}
.p-message__profile__text {
  width: 500px;
  margin-left: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}
.p-message__profile__text p {
  line-height: 1.5;
}
.p-message__profile__text p + p {
  margin-top: 0;
}
.p-message__profile__text strong {
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-message {
    padding: 0;
  }
  .p-message__profile {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  .p-message__profile__img {
    width: 60%;
    max-width: 322px;
    margin: 0 auto 10px;
  }
  .p-message__profile__text {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .p-message__profile__text strong {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }
}

.p-overview {
  position: relative;
  margin: 35px auto 0;
}
@media only screen and (max-width: 768px) {
  .p-overview {
    padding: 0;
  }
}

.p-dlList dl {
  margin-top: -20px;
  display: flex;
  flex-wrap: wrap;
}
.p-dlList dl dt {
  width: 24%;
  margin-top: 30px;
}
.p-dlList dl dd {
  width: 76%;
  margin-top: 30px;
}
.p-dlList dl dd small {
  font-size: 15px;
  font-size: 1.5rem;
}
.p-dlList dl dd span {
  display: inline-block;
  vertical-align: top;
}
.p-dlList dl dd a {
  text-decoration: underline;
  display: inline-block !important;
}
.p-dlList dl dd .c-noteList {
  margin-top: 0;
}
@media only screen and (max-width: 768px) {
  .p-dlList dl {
    display: block;
    margin-top: 0;
  }
  .p-dlList dl dt {
    margin-top: 0;
    width: 100%;
  }
  .p-dlList dl dt::before {
    content: "●";
  }
  .p-dlList dl dt a {
    text-decoration: underline;
  }
  .p-dlList dl dt a.sp {
    display: inline-block !important;
  }
  .p-dlList dl dd {
    width: 100%;
    margin-top: 0;
  }
  .p-dlList dl dd + dt {
    margin-top: 20px;
  }
  .p-dlList dl dd a {
    text-decoration: underline;
  }
  .p-dlList dl dd a.pc {
    display: none !important;
  }
}

@supports (-ms-ime-align: auto) {
  .p-dlList dl dd {
    letter-spacing: 0.06em;
  }
}
/* --------------------------- */
/* support */
.p-crowdfunding {
  position: relative;
  margin: 35px auto 0;
}
.p-crowdfunding .text {
  margin-top: 30px;
}
.p-crowdfunding .note {
  text-align: center;
  margin-top: 50px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-crowdfunding .note a {
  text-decoration: underline;
}
.p-crowdfunding .p-read {
  margin-bottom: 40px;
  line-height: 1.6;
}
.p-crowdfunding .p-read p {
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
}
.p-crowdfunding .p-read.schedule p {
  text-align: center;
  margin: 7rem 0 0;
  font-weight: 400;
  color: #b1bdde;
  border: solid 1px #b1bdde;
  border-radius: 30px;
}
.p-crowdfunding .result {
  margin-top: 80px;
}
.p-crowdfunding .result .label {
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  font-size: 19px;
  font-size: 1.9rem;
}
.p-crowdfunding .result ul {
  border: 2px solid #f5b099;
  border-radius: 25px;
  padding: 53px 30px;
}
.p-crowdfunding .result ul li {
  position: relative;
}
.p-crowdfunding .result ul li:nth-child(n+2) {
  padding-top: 27px;
  margin-top: 20px;
}
.p-crowdfunding .result ul li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f5b099;
  border-radius: 1.5px;
}
.p-crowdfunding .result ul li:nth-child(2) .title {
  font-size: 21px;
  font-size: 2.1rem;
}
.p-crowdfunding .result ul li:nth-child(3) .title {
  letter-spacing: 0.08em;
}
.p-crowdfunding .result ul li .title {
  margin-top: -2px;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-crowdfunding .result ul li .wrap {
  background-color: #fffbdc;
  border-radius: 15px;
  margin-left: -10px;
  margin-right: -10px;
  padding: 4px 48px;
  margin-top: 6px;
  display: flex;
}
.p-crowdfunding .result ul li .wrap .left {
  width: 54%;
}
.p-crowdfunding .result ul li .wrap .right {
  margin-left: 50px;
}
.p-crowdfunding .result ul li .wrap .big {
  margin-left: 26px;
  letter-spacing: 0.15em;
  font-size: 23px;
  font-size: 2.3rem;
}
.p-crowdfunding .result ul li .wrap .note {
  display: block;
  margin-top: 0;
  text-align: left;
  font-size: 13px;
  font-size: 1.3rem;
}
.p-crowdfunding .result ul li .wrap span {
  font-size: 15px;
  font-size: 1.5rem;
}
.p-crowdfunding .result ul li .text {
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.p-crowdfunding .result ul li .link {
  text-align: right;
}
.p-crowdfunding .result ul li .link a {
  color: #f5b199;
  text-decoration: underline;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-crowdfunding .result ul li .link a:hover {
  text-decoration: none;
}
.p-crowdfunding .bnr {
  margin-top: 80px;
  margin-bottom: 100px;
  text-align: center;
  /*
  a {
  	&:hover {
  		opacity: .7;
  	}
  }
  .text {
  	margin-bottom: 20px;
  }
  ul {
  	display: flex;
  	list-style: none;
  	margin-left: 0;
  	li {
  		width: 49%;
  		border: 3px solid #abc808;
  		background-color: #fff;
  		border-radius: 12px;
  		&:nth-child(1) {
  			a {
  				background: url('/2022/assets/images/support/firstShot.svg') no-repeat left 7px top 9px;
  				position: relative;
  				.text02 {
  					font-size: 22px;
  				}
  				&::before {
  					content: '';
  					border-radius: 9px;
  					z-index: 1;
  					top: 0;
  					left: 0;
  					position: absolute;
  					width: 100%;
  					height: 100%;
  					background-color: rgba(0, 0, 0, .2);
  				}
  			}
  		}
  		&:nth-child(2) {
  			margin-left: 2%;
  			a {
  				background: url('/2022/assets/images/support/secondBullet.svg') no-repeat left 7px top 9px;
  				position: relative;
  				.title {
  					margin-left: 75px;
  					margin-top: -8px;
  				}
  				&::before {
  					content: '';
  					border-radius: 9px;
  					z-index: 1;
  					top: 0;
  					left: 0;
  					position: absolute;
  					width: 100%;
  					height: 100%;
  					background-color: rgba(0, 0, 0, .2);
  				}
  			}
  		}
  		a {
  			text-decoration: none;
  			display: flex;
  			align-items: center;
  			justify-content: center;
  			flex-wrap: wrap;
  			padding: 35px 5px 20px;
  			height: 100%;
  			.title {
  				margin-left: 57px;
  			}
  			.text01 {
  				width: 100%;
  				text-decoration: none;
  				font-size: 23px;
  				letter-spacing: 0.1em;
  				margin-top: 22px;
  				color: #757575;
  				text-align: center;
  			}
  			.text02 {
  				width: 100%;
  				color: #f5b19b;
  				font-size: 22px;
  				line-height: 1.2;
  				margin-top: 8px;
  				line-height: 1;
  				text-align: center;
  				small {
  					font-size: 15px;
  				}
  			}
  			&.comingsoon {
  				pointer-events: none;
  			}
  			&:hover {
  				opacity: 0.6;
  			}
  		}
  	}
  }

   */
}
.p-crowdfunding .bnr a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .p-crowdfunding {
    padding: 0;
  }
  .p-crowdfunding .c-h3-heading {
    margin-bottom: 20px;
  }
  .p-crowdfunding .c-h3-heading h3 {
    flex-wrap: wrap;
  }
  .p-crowdfunding .c-h3-heading h3 span:lang(en) + :lang(ja) {
    margin-left: 0;
  }
  .p-crowdfunding .p-read p {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  .p-crowdfunding .p-read.schedule p {
    line-height: 1.5;
    padding: 1.5rem 0;
  }
  .p-crowdfunding .result {
    margin-top: 62px;
  }
  .p-crowdfunding .result .label {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-crowdfunding .result ul {
    border: 1px solid #f5b099;
    border-radius: 10px;
    padding: 20px 10px;
  }
  .p-crowdfunding .result ul li:nth-child(n+2) {
    padding-top: 27px;
    margin-top: 20px;
  }
  .p-crowdfunding .result ul li:nth-child(2) .title {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-crowdfunding .result ul li:nth-child(2)::before {
    height: 1px;
  }
  .p-crowdfunding .result ul li .title {
    letter-spacing: 0.03em;
    margin-top: 3px;
    line-height: 1.5;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-crowdfunding .result ul li .wrap {
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .p-crowdfunding .result ul li .wrap .left {
    width: 100%;
  }
  .p-crowdfunding .result ul li .wrap .left span:nth-child(1) {
    display: inline-block;
    width: 5.5em;
  }
  .p-crowdfunding .result ul li .wrap .right {
    margin-left: 0;
  }
  .p-crowdfunding .result ul li .wrap .right span:nth-child(1) {
    display: inline-block;
    width: 5.5em;
  }
  .p-crowdfunding .result ul li .wrap span {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-crowdfunding .result ul li .text {
    margin-top: 16px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-crowdfunding .result ul li .link {
    margin-top: 5px;
  }
  .p-crowdfunding .result ul li .link a {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-crowdfunding .bnr {
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .p-crowdfunding .bnr ul {
    display: block;
  }
  .p-crowdfunding .bnr ul li {
    width: 100%;
    border: 3px solid #abc808;
  }
  .p-crowdfunding .bnr ul li:nth-child(1) a {
    background: url("/2022/assets/images/support/firstShot.svg") no-repeat left 7px top 9px;
    background-size: 18%;
  }
  .p-crowdfunding .bnr ul li:nth-child(1) a .text02 {
    font-size: 14px;
  }
  .p-crowdfunding .bnr ul li:nth-child(2) {
    margin-left: 0;
    margin-top: 15px;
  }
  .p-crowdfunding .bnr ul li:nth-child(2) a {
    background: url("/2022/assets/images/support/secondBullet.svg") no-repeat left 7px top 9px;
    background-size: 20%;
  }
  .p-crowdfunding .bnr ul li:nth-child(2) a .title {
    margin-left: 22%;
    margin-top: 10px;
  }
  .p-crowdfunding .bnr ul li a {
    padding: 25px 10px 20px;
    height: 100%;
  }
  .p-crowdfunding .bnr ul li a .title {
    margin-left: 21%;
  }
  .p-crowdfunding .bnr ul li a .text01 {
    font-size: 14px;
  }
  .p-crowdfunding .bnr ul li a .text02 {
    font-size: 16px;
    line-height: 1.4;
  }
  .p-crowdfunding .bnr ul li a .text02 small {
    font-size: 10px;
  }
  .p-crowdfunding .bnr ul li a.comingsoon {
    pointer-events: none;
  }
}

.p-crowdfundingList {
  margin-top: 50px;
}
.p-crowdfundingList__title {
  text-align: center;
}
.p-crowdfundingList__title img {
  display: inline-block;
  margin-top: 5px;
}
.p-crowdfundingList__catch {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.p-crowdfundingList__label {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-crowdfundingList__label small {
  font-size: 80%;
}
.p-crowdfundingList__name {
  margin-top: 10px;
  font-weight: normal;
  letter-spacing: 0em;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
}
.p-crowdfundingList__name span {
  display: inline-block;
}
.p-crowdfundingList__name span::after {
  content: "/";
  padding: 0 1.2em;
}
.p-crowdfundingList__name span:last-child::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .p-crowdfundingList__catch {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-crowdfundingList__label {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.p-sponsors .title01 {
  margin-top: 75px;
  font-size: 30px;
  font-size: 3rem;
}
.p-sponsors .title02 {
  margin-top: 52px;
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-sponsors .title03 {
  margin-top: 40px;
  margin-bottom: 23px;
  font-size: 23px;
  font-size: 2.3rem;
}
.p-sponsors .title04 {
  background-color: #91c3dc;
  color: #fff;
  padding: 7px 30px;
  line-height: 1;
  border-radius: 8px;
  margin-top: 37px;
  font-size: 23px;
  font-size: 2.3rem;
}
.p-sponsors .text + .title02 {
  margin-top: 80px;
}
.p-sponsors .img01 {
  width: 100%;
  margin: 68px 0 80px auto;
}
.p-sponsors .img01 img {
  width: 100%;
}
.p-sponsors .img02 {
  width: 100%;
  margin: 25px 0 65px auto;
}
.p-sponsors .img02 img {
  width: 100%;
}
.p-sponsors .img03 {
  width: 100%;
  margin: 0 0 80px auto;
}
.p-sponsors .img03 img {
  width: 100%;
}
.p-sponsors .img04 {
  width: 96%;
  margin: 0 auto 80px auto;
}
.p-sponsors .img04 img {
  width: 100%;
}
.p-sponsors .img05 {
  width: 36%;
  margin: 0 auto 80px auto;
}
.p-sponsors .img05 img {
  width: 100%;
}
.p-sponsors .btn01 {
  margin-top: 40px;
}
.p-sponsors .btn01 .c-btn {
  padding: 5px 40px;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-sponsors .btn01 .c-btn:hover {
  color: #fff;
}
.p-sponsors .btn01 p {
  margin-top: 10px;
}
.p-sponsors .btn02 {
  margin-top: 94px;
  text-align: center;
}
.p-sponsors .btn02 .c-btn {
  padding: 5px 100px;
  line-height: 1.4;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-sponsors .btn02 .c-btn:hover {
  color: #fff;
}
.p-sponsors .btn02 p {
  margin-top: 10px;
}
.p-sponsors .panel ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-sponsors .panel ul li {
  width: 32%;
  border: 2px solid #95CFC8;
  border-radius: 8px;
  text-align: center;
  line-height: 1.7;
  padding-bottom: 10px;
  position: relative;
  overflow: hidden;
  background: url("/2024/assets/images/common/bg_03.jpg") repeat left top;
}
.p-sponsors .panel ul li .decoration {
  z-index: 1;
}
.p-sponsors .panel ul li:nth-child(n+4) {
  margin-top: 4%;
}
.p-sponsors .panel ul li:nth-child(1) .decoration {
  width: 30px;
  left: 10px;
}
.p-sponsors .panel ul li:nth-child(2) .decoration {
  width: 24px;
  right: 10px;
}
.p-sponsors .panel ul li:nth-child(3) .decoration {
  width: 36px;
  left: 2px;
}
.p-sponsors .panel ul li:nth-child(4) .decoration {
  width: 22px;
  right: 10px;
}
.p-sponsors .panel ul li:nth-child(5) .decoration {
  width: 65px;
  left: 2px;
}
.p-sponsors .panel ul li:nth-child(6) .decoration {
  width: 37px;
  left: 15px;
}
.p-sponsors .panel ul li .decoration {
  position: absolute;
  bottom: -24px;
}
.p-sponsors .panel ul li .img {
  margin-bottom: 5px;
}
.p-sponsors .panel ul li .text {
  min-height: 3em;
  font-size: 17px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-sponsors .panel + .text {
  margin-top: 55px;
}
.p-sponsors .list {
  margin-top: 20px;
  margin-bottom: 50px;
  padding: 0 30px;
}
.p-sponsors .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-sponsors .list ul li {
  width: 48.2%;
  font-size: 17px;
  font-size: 1.7rem;
}
.p-sponsors .list ul li .label {
  color: #95CFC8;
  font-size: 20px;
  font-size: 2rem;
}
.p-sponsors .list ul li .img {
  border-radius: 8px;
  overflow: hidden;
}
.p-sponsors .list ul li .img img {
  display: block;
}
.p-sponsors .list ul li .img.border {
  border: solid 1px #ccc;
}
.p-sponsors .list ul li:nth-child(n+3) {
  margin-top: 5%;
}
@media only screen and (max-width: 768px) {
  .p-sponsors .title01 {
    margin-top: 50px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .p-sponsors .title02 {
    margin-top: 30px;
    margin-bottom: 10px;
    text-indent: -1em;
    padding-left: 1em;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-sponsors .title03 {
    margin-top: 25px;
    margin-bottom: 23px;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .p-sponsors .title04 {
    padding: 7px;
    margin-top: 30px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-sponsors .text {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-sponsors .text + .title02 {
    margin-top: 30px;
  }
  .p-sponsors .img01 {
    width: 100%;
    margin: 40px 0 40px auto;
  }
  .p-sponsors .img01 img {
    width: 100%;
  }
  .p-sponsors .img02 {
    width: 100%;
    margin: 25px 0 30px auto;
  }
  .p-sponsors .img02 img {
    width: 100%;
  }
  .p-sponsors .img03 {
    width: 100%;
    margin: 0 0 40px auto;
  }
  .p-sponsors .img03 img {
    width: 100%;
  }
  .p-sponsors .img04 {
    width: 100%;
    margin: 0 auto 30px auto;
  }
  .p-sponsors .img04 img {
    width: 100%;
  }
  .p-sponsors .img05 {
    width: 60%;
    margin: 0 auto 30px auto;
  }
  .p-sponsors .img05 img {
    width: 100%;
  }
  .p-sponsors .btn01 {
    margin-top: 20px;
  }
  .p-sponsors .btn01 .c-btn {
    width: 100%;
    padding: 5px 10px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-sponsors .btn01 p {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .p-sponsors .btn02 {
    margin-top: 40px;
  }
  .p-sponsors .btn02 .c-btn {
    padding: 5px;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-sponsors .panel {
    padding-left: 0;
  }
  .p-sponsors .panel ul li {
    width: 49%;
    padding-bottom: 5px;
  }
  .p-sponsors .panel ul li:nth-child(n+3) {
    margin-top: 4%;
  }
  .p-sponsors .panel ul li .decoration {
    display: none;
  }
  .p-sponsors .panel ul li .img {
    margin-bottom: 0;
  }
  .p-sponsors .panel ul li .text {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .p-sponsors .panel + .text {
    margin-top: 10px;
  }
  .p-sponsors .list {
    padding: 0 10px;
  }
  .p-sponsors .list ul li {
    width: 100%;
  }
  .p-sponsors .list ul li:nth-child(n+2) {
    margin-top: 10%;
  }
}

.p-donation {
  position: relative;
  margin: 35px auto 0;
}
.p-donation .text + .text {
  margin-top: 25px;
}
.p-donation .text .text01 {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-donation .bg01 {
  display: block;
  margin: 10px 0 20px;
  background-color: #e0eff7;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 2;
}
.p-donation .icon01 {
  color: #aad1e5;
}
.p-donation__block {
  margin-top: 45px;
  /*
  		&::before {
  			content: '';
  			position: absolute;
  			top: 0;
  			left: 0;
  			width: 100%;
  			height: 3px;
  			background-color: $COL_LIGHTBLUE;
  			border-radius: 3px;
  		}

   */
}
.p-donation .prepare {
  padding: 5px 100px;
  line-height: 1.4;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  background: gray;
  border-radius: 5px;
  opacity: 0.6;
}
.p-donation .p-table {
  margin-top: 5px;
}
.p-donation .p-table table {
  border: 2px solid #aad1e5;
}
.p-donation .p-table table th,
.p-donation .p-table table td {
  border: 1px solid #aad1e5;
  background-color: #f3f9fc;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-donation .p-table table th {
  background-color: #e0eff7;
}
.p-donation .result {
  border: 2px solid #f5b099;
  border-radius: 25px;
  padding: 53px 30px;
  margin-top: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .p-donation .p-table {
    margin-top: 5px;
  }
  .p-donation .p-table table {
    border: 2px solid #aad1e5;
    width: 100%;
  }
  .p-donation .p-table table th,
  .p-donation .p-table table td {
    padding: 5px 1px;
    letter-spacing: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.p-donation__block + .p-donation__block {
  margin-top: 45px;
  padding-top: 45px;
  position: relative;
}
.p-donation__block + .p-donation__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #aad1e5;
  border-radius: 3px;
}

_:-ms-lang(x), .p-crowdfunding .bnr ul li a .text01 {
  letter-spacing: 0.08em;
}

/* --------------------------- */
/* info */
.p-newsDetail {
  position: relative;
  margin: 35px auto 0;
}
.p-newsDetail .anchor {
  margin-top: -80px;
  padding-top: 80px;
}
.p-newsDetail__data {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-newsDetail__data .p-newsList__time {
  width: auto;
  margin-right: 5px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-newsDetail__title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-newsDetail__body {
  margin-top: 20px;
  /* Gutenberg */
}
.p-newsDetail__body .img {
  margin-bottom: 20px;
}
.p-newsDetail__body p + p {
  margin-top: 40px;
}
.p-newsDetail__body h2 {
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #95CFC8;
  padding-bottom: 5px;
  font-size: 20px;
  font-size: 2rem;
}
.p-newsDetail__body h3 {
  border-left: 4px solid #95CFC8;
  padding-left: 10px;
  margin-bottom: 20px;
  margin-top: 40px;
}
.p-newsDetail__body h4 {
  margin-top: 40px;
  color: #95CFC8;
  margin-bottom: 20px;
  font-weight: bold;
}
.p-newsDetail__body a {
  color: #95CFC8;
  text-decoration: underline;
}
.p-newsDetail__body .wp-block-image {
  margin: 30px 0;
  text-align: center;
}
.p-newsDetail__body .wp-block-image figcaption {
  text-align: center;
  margin-top: 5px;
}
.p-newsDetail__body .wp-block-image .size-full img {
  width: 100%;
}
.p-newsDetail__body ul {
  margin: 30px 0;
}
.p-newsDetail__body ul li {
  position: relative;
  padding-left: 1em;
}
.p-newsDetail__body ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-newsDetail__body .has-blue-color {
  color: #2f5496;
}
.p-newsDetail__body .has-blue-background-color {
  background-color: #2f5496;
}
.p-newsDetail__body .has-red-color {
  color: #e44d48;
}
.p-newsDetail__body .has-red-background-color {
  background-color: #e44d48;
}
.p-newsDetail__body .has-lightgreen-color {
  color: #cfdd4c;
}
.p-newsDetail__body .has-lightgreen-background-color {
  background-color: #cfdd4c;
}
.p-newsDetail__body .has-lightgray-color {
  color: #717171;
}
.p-newsDetail__body .has-lightgray-background-color {
  background-color: #717171;
}
@media only screen and (max-width: 768px) {
  .p-newsDetail {
    padding: 0;
  }
  .p-newsDetail__data .p-newsList__icon {
    width: 4em;
    margin-left: 0;
  }
  .p-newsDetail__title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.6;
  }
  .p-newsDetail__body {
    margin-top: 10px;
  }
  .p-newsDetail__body p + p {
    margin-top: 20px;
  }
}

.p-note {
  padding: 0 75px;
  margin-bottom: 100px;
}
.p-note .c-discList li {
  padding-left: 1.2em;
}
.p-note .c-discList li::before {
  content: "●";
}
.p-note .c-discList li:nth-child(n+2) {
  margin-top: 20px;
}
.p-note .c-discList li strong {
  text-decoration: underline;
}
.p-note + .c-h3-heading {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .p-note {
    padding: 0;
    margin-bottom: 50px;
  }
}

.p-contact {
  position: relative;
  margin: 35px auto 0;
}
.p-contact__label {
  margin-bottom: 10px;
  text-align: center;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-contact .c-discList li {
  display: inline-block;
  padding-left: 1.2em;
}
.p-contact .c-discList li::before {
  content: "○";
}
.p-contact__btn {
  margin-top: 50px;
  margin-bottom: 120px;
}
.p-contact__btn ul {
  display: flex;
  justify-content: center;
}
.p-contact__btn ul + ul {
  margin-top: 20px;
}
.p-contact__btn ul li {
  width: 410px;
}
.p-contact__btn ul li:nth-child(2) {
  margin-left: 20px;
}
.p-contact__btn ul li a {
  background-color: #fff;
  border: #717171 solid 2px;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 22px;
  font-size: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-contact__btn ul li a:hover {
  opacity: 0.7;
  color: #5f5f68;
}
.p-contact__number {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
}
.p-contact__note {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .p-contact .c-discList {
    text-align: left;
  }
  .p-contact__label {
    margin-bottom: 0;
  }
  .p-contact__btn {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .p-contact__btn ul {
    flex-wrap: wrap;
  }
  .p-contact__btn ul + ul {
    margin-top: 10px;
  }
  .p-contact__btn ul li {
    width: 100%;
  }
  .p-contact__btn ul li:nth-child(2) {
    margin-left: 0;
    margin-top: 10px;
  }
  .p-contact__btn ul li a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.p-guideline01 {
  position: relative;
  width: 817px;
  max-width: 100%;
  margin: 35px auto 0;
}
.p-guideline01 p + p {
  margin-top: 25px;
}
.p-guideline01 p a {
  text-decoration: underline;
}
.p-guideline01 p a:hover {
  text-decoration: none;
}
.p-guideline01__list {
  margin-top: 40px;
}
.p-guideline01__list .title {
  text-align: center;
  letter-spacing: 0;
  color: #a4bf1e;
  font-size: 28px;
  font-size: 2.8rem;
}
.p-guideline01__list > ul {
  margin-top: 13px;
}
.p-guideline01__list > ul > li {
  position: relative;
  padding: 20px 0 25px 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-guideline01__list > ul > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #a4bf1e;
  border-radius: 3px;
}
.p-guideline01__list > ul > li:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #a4bf1e;
  border-radius: 3px;
}
.p-guideline01__list > ul > li .icon {
  width: 73px;
  margin-right: 26px;
}
.p-guideline01__list > ul > li .icon img {
  display: block;
}
.p-guideline01__list > ul > li .text strong {
  color: #a4bf1e;
  display: block;
  line-height: 1.4;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-guideline01__list > ul > li .text span {
  line-height: 1;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-guideline01__list > ul > li .text.ls01 {
  letter-spacing: 0.01em;
}
.p-guideline01__list > ul > li .read {
  width: 100%;
  padding-left: 99px;
  line-height: 1.65;
  letter-spacing: 0.15em;
}
.p-guideline01__list > ul > li .read .c-discList {
  margin: 25px 0;
}
.p-guideline01__list > ul > li .read .c-discList ul li {
  line-height: 1.6;
}
.p-guideline01__list > ul > li .read .c-discList ul li:nth-child(n+2) {
  margin-top: 2px;
}
.p-guideline01__list > ul > li .read small {
  font-size: 12px;
  font-size: 1.2rem;
}
.p-guideline01__list > ul > li .read .label01 {
  margin-top: 15px;
  letter-spacing: 0.05em;
  color: #a4bf1e;
  font-size: 20px;
  font-size: 2rem;
}
.p-guideline01__list > ul > li .read .label02 {
  text-align: center;
  color: #cedc85;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-guideline01__list > ul > li .read .label02 + p {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 30px;
}
.p-guideline01__list > ul > li .read .qr {
  margin-top: 10px;
}
.p-guideline01__list > ul > li .read .qr ul {
  display: flex;
  justify-content: space-between;
}
.p-guideline01__list > ul > li .read .qr ul li {
  display: flex;
}
.p-guideline01__list > ul > li .read .qr ul li img:nth-child(1) {
  margin-bottom: 10px;
}
.p-guideline01__list > ul > li .read .qr ul li img:nth-child(2) {
  margin-left: 10px;
}
.p-guideline01__list > ul > li .read .qr + .label01 {
  margin-top: 25px;
}
.p-guideline01__bnr01 {
  margin-top: 85px;
  padding: 20px 10px;
  border-radius: 3px;
  background: url(/2023/assets/images/common/bg_03.jpg) repeat left top;
  display: flex;
  align-items: center;
}
.p-guideline01__bnr01 .icon {
  width: 104px;
  margin-right: 15px;
}
.p-guideline01__bnr01 .text {
  margin-top: -20px;
}
.p-guideline01__bnr01 .text .text01 {
  color: #a4bf1e;
  font-size: 25px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
}
.p-guideline01__bnr01 .text .text01 strong {
  margin-right: 10px;
  font-size: 30px;
  font-size: 3rem;
}
.p-guideline01__bnr01 .text .text02 {
  margin-top: -5px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-guideline01__bnr02 {
  margin-top: 45px;
  color: #f02200;
  border: 2px solid #f02200;
  border-radius: 8px;
  padding: 16px 30px;
  line-height: 1.7;
}
.p-guideline01__bnr02 p {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-guideline01__read01 {
  position: relative;
  padding: 30px 0;
}
.p-guideline01__read01::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #a4bf1e;
  border-radius: 3px;
}
.p-guideline01__read01.bordernone::before {
  content: none;
}
.p-guideline01__read01:last-child::before {
  content: none;
}
.p-guideline01__read01 strong {
  margin-bottom: 10px;
  color: #a4bf1e;
  display: block;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-guideline01__read01 .label {
  text-align: center;
  letter-spacing: 0;
  color: #a4bf1e;
  font-size: 28px;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .p-guideline01 p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-guideline01 p + p {
    margin-top: 20px;
  }
  .p-guideline01__list .title {
    line-height: 1.5;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .p-guideline01__list > ul > li {
    padding: 15px 0 15px 0;
  }
  .p-guideline01__list > ul > li::before {
    height: 1px;
  }
  .p-guideline01__list > ul > li .icon {
    width: 15%;
    margin-right: 5%;
  }
  .p-guideline01__list > ul > li .icon img {
    display: block;
  }
  .p-guideline01__list > ul > li .text {
    width: 80%;
  }
  .p-guideline01__list > ul > li .text strong {
    color: #a4bf1e;
    display: block;
    line-height: 1.4;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-guideline01__list > ul > li .text span {
    line-height: 1;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .p-guideline01__list > ul > li .text.ls01 {
    margin-bottom: 10px;
  }
  .p-guideline01__list > ul > li .read {
    padding-left: 20%;
    letter-spacing: 0.05em;
  }
  .p-guideline01__list > ul > li .read .label01 {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-guideline01__list > ul > li .read .label02 {
    margin-bottom: 0;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-guideline01__list > ul > li .read .qr {
    margin-top: 15px;
  }
  .p-guideline01__list > ul > li .read .qr ul {
    display: block;
  }
  .p-guideline01__list > ul > li .read .qr ul li {
    display: flex;
  }
  .p-guideline01__list > ul > li .read .qr ul li img:nth-child(1) {
    margin-bottom: 20px;
  }
  .p-guideline01__list > ul > li .read .qr + .label01 {
    margin-top: 10px;
  }
  .p-guideline01__bnr01 {
    margin-top: 30px;
    padding: 10px 10px;
    flex-wrap: wrap;
  }
  .p-guideline01__bnr01 .icon {
    width: 20%;
    margin-right: 5%;
  }
  .p-guideline01__bnr01 .text {
    width: 75%;
    margin-top: 0;
  }
  .p-guideline01__bnr01 .text .text01 {
    display: block;
    color: #a4bf1e;
    line-height: 1.4;
    letter-spacing: normal;
    font-size: 21px;
    font-size: 2.1rem;
  }
  .p-guideline01__bnr01 .text .text01 strong {
    margin-right: 10px;
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-guideline01__bnr01 .text02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .p-guideline01__bnr02 {
    padding: 16px 20px;
    line-height: 1.7;
    margin-top: 30px;
  }
  .p-guideline01__bnr02 p {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-guideline01__read01::before {
    height: 1px;
  }
  .p-guideline01__read01 strong {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-guideline01__read01 .label {
    line-height: 1.5;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.p-info__hr {
  border: none;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 90px 0 70px;
}
.p-info__hr::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #fcd745;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .p-info__hr {
    height: 3px;
    margin: 40px 0 40px;
  }
  .p-info__hr::before {
    height: 3px;
  }
}

.p-faq__title {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 28px;
  font-size: 2.8rem;
}
.p-faq__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fcd745;
  border-radius: 3px;
}
.p-faq dl + .p-faq__title {
  margin-top: 65px;
}
.p-faq dl dt {
  position: relative;
  padding-left: 1.8em;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-faq dl dt::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
}
.p-faq dl dd {
  background-color: #fdf9d7;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 4px;
}
.p-faq dl dd a {
  text-decoration: underline;
}
.p-faq dl dd a:hover {
  text-decoration: none;
}
.p-faq dl dd + dt {
  margin-top: 30px;
}
.p-faq .p-table {
  margin-top: 5px;
}
.p-faq .p-table table {
  border: 2px solid #aad1e5;
}
.p-faq .p-table table tr:first-child td {
  background-color: #c9e3f1;
}
.p-faq .p-table table tr:first-child td:nth-child(n+3) {
  background-color: #c9e3f1;
}
.p-faq .p-table table td {
  border: 1px solid #aad1e5;
  background-color: #e0eff7;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-faq .p-table table td:nth-child(n+3) {
  background-color: #f3f9fc;
}
.p-faq .p-table table td:nth-child(1) {
  width: 15%;
}
.p-faq .p-table table td:nth-child(2) {
  width: 18%;
}
.p-faq .p-table table td:nth-child(3) {
  width: 24%;
}
.p-faq .p-table table td:nth-child(4) {
  width: 21%;
}
.p-faq .p-table table td:nth-child(5) {
  width: 21%;
}
.p-faq .p-table table.add_1 tr:first-child td {
  background-color: #c9e3f1;
}
.p-faq .p-table table.add_1 tr:first-child td:nth-child(n+2) {
  background-color: #c9e3f1;
}
.p-faq .p-table table.add_1 td {
  border: 1px solid #aad1e5;
  background-color: #e0eff7;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-faq .p-table table.add_1 td:nth-child(n+2) {
  background-color: #f3f9fc;
}
.p-faq .p-table table.add_1 td:nth-child(1) {
  width: 30%;
}
.p-faq .p-table table.add_1 td:nth-child(2) {
  width: 30%;
}
.p-faq .p-table table.add_1 td:nth-child(3) {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .p-faq {
    padding: 0 5px;
  }
  .p-faq__title {
    line-height: 1.5;
    padding-bottom: 10px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .p-faq__title::before {
    height: 2px;
  }
  .p-faq dl dt {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-faq .p-table {
    margin-top: 5px;
  }
  .p-faq .p-table table {
    border: 2px solid #aad1e5;
  }
  .p-faq .p-table table td {
    padding: 5px 1px;
    letter-spacing: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-faq .p-table table td:nth-child(1) {
    width: 15%;
  }
  .p-faq .p-table table td:nth-child(2) {
    width: 21%;
  }
  .p-faq .p-table table td:nth-child(3) {
    width: 21%;
  }
  .p-faq .p-table table td:nth-child(4) {
    width: 21%;
  }
  .p-faq .p-table table td:nth-child(5) {
    width: 21%;
  }
}

.p-notice__title {
  position: relative;
  padding-top: 40px;
  margin-top: 40px;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-notice__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fcd745;
  border-radius: 3px;
}
.p-notice__title:nth-child(1) {
  padding-top: 0;
  margin-top: 0;
}
.p-notice__title:nth-child(1)::before {
  content: none;
}
.p-notice__label {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: -30px;
  font-size: 28px;
  font-size: 2.8rem;
}
.p-notice .text a, .p-notice li a {
  text-decoration: underline;
}
.p-notice .text a:hover, .p-notice li a:hover {
  text-decoration: none;
}
.p-notice li:nth-child(n+2) {
  margin-top: 10px;
}
.p-notice .text02 {
  margin-top: 50px;
  border: 2px solid #fcd745;
  border-radius: 8px;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .p-notice {
    padding: 0 5px;
  }
  .p-notice__title {
    line-height: 1.5;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-notice__title::before {
    height: 2px;
  }
  .p-notice__label {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.p-borderless p + p {
  margin-top: 25px;
}
.p-borderless__img {
  width: 397px;
  max-width: 100%;
  margin: 0 0 20px 20px;
  float: right;
}
.p-borderless__title {
  position: relative;
  margin-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
  /*
  &::before {
  	content: '■';
  	position: absolute;
  	top: 0;
  	left: 0;
  	line-height: 1.4;
  	@include font-size(27);
  }

   */
}
.p-borderless__title.decorationnone {
  padding-left: 0;
}
.p-borderless__title.decorationnone::before {
  content: none;
}
.p-borderless .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
.p-borderless .box > * {
  width: 49%;
}
@media only screen and (max-width: 768px) {
  .p-borderless__img {
    width: 100%;
  }
  .p-borderless__img img {
    width: 100%;
  }
  .p-borderless__title {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-borderless__title::before {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-borderless p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-borderless p + p {
    margin-top: 20px;
  }
  .p-borderless .box {
    flex-direction: column;
  }
  .p-borderless .box > * {
    width: 100%;
  }
}

.p-demonstration {
  width: 813px;
  max-width: 100%;
  margin: auto;
}
.p-demonstration p {
  font-size: 15px;
  font-size: 1.5rem;
}
.p-demonstration p + p {
  margin-top: 25px;
}
.p-demonstration p.bg01 {
  display: block;
  margin: 30px 0 20px;
  background-color: #fdf9d7;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 2;
}
.p-demonstration p a {
  text-decoration: underline;
}
.p-demonstration p a:hover {
  text-decoration: none;
}
.p-demonstration__title {
  position: relative;
  color: #a4bf1e;
  margin-bottom: 10px;
  font-size: 22px;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .p-demonstration__img {
    width: 100%;
  }
  .p-demonstration__img img {
    width: 100%;
  }
  .p-demonstration__title {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-demonstration__title::before {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-demonstration p + p {
    margin-top: 20px;
  }
}

/* --------------------------- */
/* How to enjoy */
.p-ticket {
  position: relative;
}
.p-ticket .text + .text {
  margin-top: 25px;
}
.p-ticket .text .text01 {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-ticket .text .bg01 {
  display: block;
  margin: 10px 0 20px;
  background-color: #e0eff7;
  padding: 10px 20px;
  font-weight: bold;
  line-height: 2;
}
.p-ticket .text a {
  text-decoration: underline;
}
.p-ticket .text a:hover {
  text-decoration: none;
}
.p-ticket .text02 {
  display: block;
  text-indent: 0;
  padding-left: 1em;
}
.p-ticket li a {
  text-decoration: underline;
}
.p-ticket li a:hover {
  text-decoration: none;
}
.p-ticket .mb20 {
  margin-bottom: 20px;
}
.p-ticket .mb30 {
  margin-bottom: 30px;
}
.p-ticket .mb60 {
  margin-bottom: 60px;
}
.p-ticket .marker {
  background-color: #fcd745;
  padding: 2px 5px;
}
.p-ticket .marker:hover {
  color: #5f5f68;
}
.p-ticket .bg02 {
  border: 1px solid #6e6e6e;
  border-radius: 8px;
  padding: 10px;
  text-indent: 0;
}
.p-ticket .img {
  text-indent: 0;
}
.p-ticket .img img {
  display: block;
}
.p-ticket__block {
  margin-top: 45px;
  padding-top: 45px;
  position: relative;
}
.p-ticket__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #aad1e5;
  border-radius: 3px;
}
.p-ticket__title {
  position: relative;
  color: #aad1e5;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-ticket__title.app-title {
  font-size: 19px;
  font-size: 1.9rem;
  color: #95CFC8;
}
.p-ticket__title.decorationnone {
  padding-left: 0;
}
.p-ticket__title.decorationnone::before {
  content: none;
}
.p-ticket__title.big {
  font-size: 26px;
  font-size: 2.6rem;
}
.p-ticket__btn01 {
  margin-top: 45px;
  border-radius: 3px;
  background: url(/2024/assets/images/common/bg_03.jpg) repeat left top;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-ticket__btn01 a {
  display: block;
  text-decoration: none !important;
  padding: 20px 10px;
}
.p-ticket__btn01 a:hover strong {
  color: #aad1e5;
}
.p-ticket__btn01 a strong {
  color: #fb490b;
  text-decoration: underline;
  transition: 0.3s all;
}
.p-ticket__btn02 {
  margin-top: 50px;
}
.p-ticket__btn02 p {
  text-indent: 0;
}
.p-ticket__btn02 ul {
  margin-top: 10px;
  display: flex;
}
.p-ticket__btn02 ul li {
  width: 249px;
  text-indent: 0;
  background: #fff;
  border: 1px solid #aad1e5;
  border-radius: 17px;
}
.p-ticket__btn02 ul li:nth-child(n+2) {
  margin-left: 10px;
}
.p-ticket__btn02 ul li a:hover {
  opacity: 0.8;
}
.p-ticket__btn02 ul li a img {
  display: block;
}
.p-ticket__btn03 {
  margin-top: 20px;
  text-align: center;
}
.p-ticket__btn03 a {
  text-decoration: none !important;
  text-indent: 0;
  display: inline-block;
  width: auto;
  padding: 9px 2em;
  font-size: 17px;
  font-size: 1.7rem;
}
.p-ticket__btn03 a:hover {
  color: #fff;
}
.p-ticket__btn03 a.not_events {
  pointer-events: none;
}
.p-ticket .linkList {
  margin-top: 45px;
  display: inline-block;
  border: 2px solid #aad1e5;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  z-index: 2;
}
.p-ticket .linkList ul li:nth-child(n+2) {
  margin-top: 10px;
}
.p-ticket .p-table {
  margin-top: 5px;
}
.p-ticket .p-table table {
  border: 2px solid #aad1e5;
}
.p-ticket .p-table table tr:first-child td {
  background-color: #c9e3f1;
}
.p-ticket .p-table table tr:first-child td:nth-child(n+3) {
  background-color: #c9e3f1;
}
.p-ticket .p-table table td {
  border: 1px solid #aad1e5;
  background-color: #e0eff7;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-ticket .p-table table td:nth-child(n+3) {
  background-color: #f3f9fc;
}
.p-ticket .p-table table td:nth-child(1) {
  width: 15%;
}
.p-ticket .p-table table td:nth-child(2) {
  width: 18%;
}
.p-ticket .p-table table td:nth-child(3) {
  width: 24%;
}
.p-ticket .p-table table td:nth-child(4) {
  width: 21%;
}
.p-ticket .p-table table td:nth-child(5) {
  width: 21%;
}
.p-ticket .p-table table.add_1 tr:first-child td {
  background-color: #c9e3f1;
}
.p-ticket .p-table table.add_1 tr:first-child td:nth-child(n+2) {
  background-color: #c9e3f1;
}
.p-ticket .p-table table.add_1 td {
  border: 1px solid #aad1e5;
  background-color: #e0eff7;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-ticket .p-table table.add_1 td:nth-child(n+2) {
  background-color: #f3f9fc;
}
.p-ticket .p-table table.add_1 td:nth-child(1) {
  width: 30%;
}
.p-ticket .p-table table.add_1 td:nth-child(2) {
  width: 30%;
}
.p-ticket .p-table table.add_1 td:nth-child(3) {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .p-ticket {
    padding: 0;
  }
  .p-ticket__block {
    margin-top: 30px;
    padding-top: 30px;
  }
  .p-ticket__title {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-ticket__title::before {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .p-ticket__title.big {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-ticket__btn01 {
    margin-top: 30px;
    line-height: 2;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-ticket__btn01 a {
    display: block;
    padding: 20px 10px;
  }
  .p-ticket__btn01 a:hover strong {
    color: #aad1e5;
  }
  .p-ticket__btn01 a strong {
    color: #fb490b;
    text-decoration: underline;
    transition: 0.3s all;
  }
  .p-ticket__btn02 {
    margin-bottom: 50px;
  }
  .p-ticket__btn02 ul {
    display: block;
  }
  .p-ticket__btn02 ul li {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .p-ticket__btn02 ul li:nth-child(n+2) {
    margin-top: 10px;
    margin-left: auto;
  }
  .p-ticket__btn03 a {
    width: 100%;
    line-height: 1.5;
  }
  .p-ticket .linkList {
    margin-top: 30px;
  }
  .p-ticket .p-table {
    margin-top: 5px;
  }
  .p-ticket .p-table table {
    border: 2px solid #aad1e5;
  }
  .p-ticket .p-table table td {
    padding: 5px 1px;
    letter-spacing: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-ticket .p-table table td:nth-child(1) {
    width: 15%;
  }
  .p-ticket .p-table table td:nth-child(2) {
    width: 21%;
  }
  .p-ticket .p-table table td:nth-child(3) {
    width: 21%;
  }
  .p-ticket .p-table table td:nth-child(4) {
    width: 21%;
  }
  .p-ticket .p-table table td:nth-child(5) {
    width: 21%;
  }
}

.p-areamap .p-read {
  margin-bottom: 25px;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-areamap .text small {
  display: block;
  font-size: 85%;
}
.p-areamap__img {
  text-align: center;
  width: 927px;
  max-width: 100%;
  margin: 50px auto 0;
}
.p-areamap__img a {
  display: block;
}
.p-areamap__img a:hover {
  opacity: 0.8;
  color: #b3d4e7;
}
.p-areamap__img a:hover img {
  opacity: 0.8;
}
.p-areamap__img .icon {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: -20px;
}
.p-areamap__img .icon span {
  margin-right: 10px;
  color: #b3d4e7;
}
.p-areamap__img .icon img {
  width: 39px;
}
.p-areamap__img .icon img:hover {
  opacity: 1;
}
.p-areamap__modalImg {
  width: 80vw;
  max-width: 950px;
  margin: auto;
  overflow: hidden;
}
.p-areamap__modalImg #imgContainer {
  background-color: #fff;
}
.p-areamap__modalImg #imgContainer img {
  width: 100%;
  margin: auto;
}
.p-areamap__modalImg #positionButtonDiv {
  text-align: center;
  margin: 10px 0;
}
.p-areamap__modalImg #positionButtonDiv p {
  display: flex;
  justify-content: center;
}
.p-areamap__modalImg #positionButtonDiv p span {
  display: inline-block;
}
.p-areamap__modalImg #positionButtonDiv p span span {
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.p-areamap__modalImg #positionButtonDiv p span span img {
  width: 39px;
  display: block;
}
.p-areamap__modalImg #positionButtonDiv p span span:nth-child(2) {
  margin-left: 10px;
}
.p-areamap__modalImg #imageFullScreen {
  max-width: 250vw;
  opacity: 0;
}
.p-areamap__modalImg #imageFullScreen.show {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .p-areamap .p-read {
    text-align: center;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .p-areamap__modalImg {
    width: 100vw;
    height: 100%;
    background-color: #fff;
  }
  .p-areamap__modalImg #imgContainer {
    width: 100vw;
    height: 87%;
  }
}

.p-mapDetail {
  width: 975px;
  margin: auto;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-mapDetail__elem {
  position: relative;
  width: 46%;
  margin: 18px 0;
}
.p-mapDetail__label {
  font-weight: bold;
  text-align: center;
  position: absolute;
  width: 30px;
  height: 30px;
  color: #fff;
  left: 0;
  top: 0.3em;
  margin: auto;
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-mapDetail__label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #828282;
  border-radius: 50%;
  z-index: -1;
}
.p-mapDetail__label--white {
  color: #828282;
}
.p-mapDetail__label--white:before {
  border: 2px solid #828282;
  background-color: #fff;
}
.p-mapDetail__img {
  text-align: center;
}
.p-mapDetail__title {
  font-weight: 600;
  position: relative;
  padding-left: 40px;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
}
.p-mapDetail__place {
  font-weight: 600;
  background-color: #aad1e5;
  color: #fff;
  padding: 5px 10px;
  margin: 80px 0 10px;
  border-radius: 4px;
  font-size: 20px;
  font-size: 2rem;
}
.p-mapDetail__description {
  padding-left: 40px;
}
.p-mapDetail__description a {
  text-decoration: underline;
}
.p-mapDetail__description a:hover {
  text-decoration: none;
}
.p-mapDetail__flex {
  width: 150%;
}
@media only screen and (max-width: 768px) {
  .p-mapDetail__elem {
    width: 100%;
  }
  .p-mapDetail__sp {
    width: 50%;
  }
  .p-mapDetail__sp + .p-mapDetail__sp {
    margin-top: 2.66667vw;
  }
  .p-mapDetail__img {
    width: 100%;
    padding-right: 3.2vw;
  }
  .p-mapDetail__label {
    font-size: 3.2vw;
    width: 22px;
    height: 22px;
    line-height: 22px;
  }
  .p-mapDetail__title {
    padding-left: 35px;
  }
  .p-mapDetail__place {
    margin-top: 40px;
  }
  .p-mapDetail__description {
    padding-left: 35px;
  }
  .p-mapDetail__flex {
    width: 50%;
    display: block;
  }
  .p-mapDetail__flex .l-flex__elem + .l-flex__elem {
    margin-top: 20px;
  }
}

.p-mapPoint {
  width: 780px;
  margin: 50px auto 0;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-mapPoint__elem {
  position: relative;
  width: 46%;
  margin: 18px 0;
}
.p-mapPoint__label {
  color: #91c1dc;
  line-height: 1.5;
  letter-spacing: -0.03em;
  white-space: nowrap;
  padding-left: 42px;
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
}
.p-mapPoint__label::before {
  content: attr(data-id) "";
  color: #fff;
  text-align: center;
  line-height: 31px;
  position: absolute;
  width: 31px;
  height: 31px;
  background: url(/2022/assets/images/how_to_enjoy/map-label-bg.png) left top no-repeat;
  background-size: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .p-mapPoint {
    margin-top: 30px;
  }
  .p-mapPoint__elem {
    width: 100%;
  }
  .p-mapPoint__label {
    padding-left: 8.26667vw;
    margin-bottom: 2vw;
  }
  .p-mapPoint__label::before {
    font-size: 4vw;
    top: 0.1em;
    line-height: 6.26667vw;
    width: 6.26667vw;
    height: 6.26667vw;
  }
}

.p-livestreaming {
  position: relative;
}
.p-livestreaming .text {
  margin-top: 30px;
}
.p-livestreaming .text.addmt {
  margin-top: 60px;
}
.p-livestreaming .text a {
  text-decoration: underline;
}
.p-livestreaming .text a:hover {
  text-decoration: none;
}
.p-livestreaming .text a:hover img {
  opacity: 0.8;
}
.p-livestreaming .bg01 {
  display: block;
  margin: 10px 0 20px;
  background-color: #e0eff7;
  padding: 10px 20px;
  line-height: 2;
}
.p-livestreaming .note {
  font-size: 13px;
  font-size: 1.3rem;
}
.p-livestreaming .bgBox {
  margin-top: 50px;
  padding: 40px;
  border-radius: 3px;
  background: url(/2023/assets/images/common/bg_03.jpg) repeat left top;
}
.p-livestreaming .bgBox .text {
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-livestreaming__btn a {
  display: inline-block;
  background: #739acf;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  padding: 1em 2.5em;
}
.p-livestreaming__btn a:hover {
  color: #fff;
  opacity: 0.8;
}
.p-livestreaming__imgbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}
.p-livestreaming__imgbox p {
  width: 47%;
}
.p-livestreaming__imgbox figure {
  width: 50%;
  padding-right: 5%;
}
.p-livestreaming__imgbox.in-bg {
  margin-top: 0;
}
.p-livestreaming__imgbox.in-bg figure {
  width: 50%;
  padding-right: 3%;
}
@media only screen and (max-width: 768px) {
  .p-livestreaming .text.addmt {
    margin-top: 40px;
  }
  .p-livestreaming .bgBox {
    margin-top: 30px;
    padding: 20px;
  }
  .p-livestreaming__imgbox {
    flex-direction: column;
    margin-top: 20px;
  }
  .p-livestreaming__imgbox p {
    width: 100%;
  }
  .p-livestreaming__imgbox figure {
    width: 100%;
    padding: 10% 5% 5%;
  }
  .p-livestreaming__imgbox.in-bg figure {
    width: 100%;
    padding: 5% 0% 0%;
  }
}

.p-timetable {
  margin-right: 50px;
}
.p-timetable__btn01 {
  margin-left: 120px;
}
.p-timetable__btn01 .c-btn {
  border-color: #aad1e5;
  color: #757575;
  line-height: 1.2;
  padding: 10px 22px;
  min-height: inherit;
}
.p-timetable__btn01 .c-btn:hover {
  background-color: #aad1e5;
  color: #fff;
}
.p-timetable__btn01 .c-btn.row2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.p-timetable__tab {
  margin-top: 50px;
}
.p-timetable__tab ul {
  display: flex;
  justify-content: center;
}
.p-timetable__tab ul li {
  line-height: 1;
}
.p-timetable__tab ul li:nth-child(n+2) {
  margin-left: 50px;
}
.p-timetable__tab ul li a {
  display: flex;
}
.p-timetable__tab ul li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background-color: #aad1e5;
}
.p-timetable__tab ul li a:not(.current) span {
  color: #aad1e5;
  opacity: 0.5;
}
.p-timetable__tab ul li a:not(.current)::before {
  border-color: #aad1e5;
  opacity: 0.5;
}
.p-timetable__tab ul li a:not(.current)::after {
  opacity: 0.5;
}
.p-timetable__tab ul li a.current {
  pointer-events: none;
}
.p-timetable__tab ul li a span:nth-child(1) {
  font-size: 50px;
  font-size: 5rem;
}
.p-timetable__tab ul li a span:nth-child(2) {
  margin-top: 0.9em;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-timetable__read {
  margin-top: 20px;
  margin-left: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-timetable__btn {
  width: 195px;
  height: 44px;
  margin-left: 40px;
}
.p-timetable__btn a {
  width: 100%;
  height: 100%;
  border: 2px solid #aad1e5;
  border-radius: 4px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-timetable__text01 {
  width: 366px;
  margin-top: 20px;
}
.p-timetable__img {
  margin-top: 50px;
  position: relative;
}
.p-timetable__bg {
  position: relative;
}
.p-timetable__bg img {
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-timetable__bg {
    margin-top: -3.4%;
  }
  .p-timetable__bg.tt0601 {
    margin-top: -3.7%;
  }
  .p-timetable__bg.tt0601_h {
    margin-top: -6.1%;
  }
  .p-timetable__bg.sp-not-margin {
    margin-top: 0;
  }
}
.p-timetable__scrollbar {
  overflow-x: scroll;
  margin-bottom: 5px;
  scrollbar-width: thin;
  scrollbar-color: #b3d7eb #dae7ee;
}
.p-timetable__scrollbar::-webkit-scrollbar {
  width: 27px;
}
.p-timetable__scrollbar::-webkit-scrollbar-track {
  background-color: #dae7ee;
  border-radius: 30px;
  margin-left: 50px;
}
.p-timetable__scrollbar::-webkit-scrollbar-thumb {
  background-color: #b3d7eb;
  border-radius: 30px;
  margin-left: 50px;
}
.p-timetable__scrollbar-inner {
  width: 1990px;
  height: 1px;
}
.p-timetable__tabContent--web .p-timetable__scrollbar {
  display: none;
}
.p-timetable__scroll {
  overflow-x: scroll;
  padding-bottom: 2px;
  scrollbar-width: thin;
  scrollbar-color: #b3d7eb #dae7ee;
}
.p-timetable__scroll::-webkit-scrollbar {
  width: 27px;
}
.p-timetable__scroll::-webkit-scrollbar-track {
  background-color: #dae7ee;
  border-radius: 30px;
  margin-left: 50px;
}
.p-timetable__scroll::-webkit-scrollbar-thumb {
  background-color: #b3d7eb;
  margin-left: 50px;
  border-radius: 30px;
}
.p-timetable__tabContent--web .p-timetable__scroll {
  overflow: hidden;
}
.p-timetable__table {
  width: 1946px;
}
.p-timetable__tabContent--0601 .p-timetable__table {
  width: 1735px;
}
.p-timetable__tabContent--web .p-timetable__table {
  width: 100%;
  background-size: 95.2%;
}
.p-timetable__tabContent--0602.p-timetable__tabContent--web .p-timetable__table {
  width: 100%;
  background: url("/2023/assets/images/hte/timetable/area_h_0602.svg") no-repeat right top;
  background-size: 973px;
}
@media only screen and (max-width: 1166px) {
  .p-timetable__tabContent--0602.p-timetable__tabContent--web .p-timetable__table {
    background-size: 927px;
  }
}
.p-timetable__table th img, .p-timetable__table td img {
  vertical-align: top;
  width: 100%;
}
.p-timetable__table th:first-child {
  width: 51.1px;
  background-color: #fefbfa;
  z-index: 2;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
.p-timetable__table th:nth-child(2) {
  width: 1840px;
  height: 62px;
}
.p-timetable__tabContent--0604 .p-timetable__table th:nth-child(2) {
  width: 1640px;
}
.p-timetable__tabContent--web .p-timetable__table th:nth-child(2) {
  width: 1022px;
  height: 56px;
}
.p-timetable__tabContent--0601 .p-timetable__table th:first-child {
  width: 57.5px;
}
.p-timetable__tabContent--0601 .p-timetable__table th.time {
  width: 51.1px;
}
.p-timetable__tabContent--web .p-timetable__tabContent--0601 .p-timetable__table th:first-child {
  width: 51.1px;
}
.p-timetable__table td {
  position: relative;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_0_1 {
  left: 3.1%;
  top: 67.8%;
  width: 5%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_1_1 {
  left: 0.25%;
  top: 76%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_1 {
  left: 11.35%;
  top: 4.8%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_2 {
  left: 11.35%;
  top: 19.6%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_3 {
  left: 11.35%;
  top: 32.6%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_4 {
  left: 11.35%;
  top: 45.8%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_5 {
  left: 11.35%;
  top: 56.6%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_2_6 {
  left: 11.35%;
  top: 67.3%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_3_1 {
  left: 22.48%;
  top: 13.1%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_3_2 {
  left: 22.48%;
  top: 26.2%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_3_3 {
  left: 22.48%;
  top: 39.2%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_3_4 {
  left: 22.48%;
  top: 49.9%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_3_5 {
  left: 22.48%;
  top: 61%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_4_0 {
  left: 33.64%;
  top: 4.8%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_4_1 {
  left: 44.8%;
  top: 23.9%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_4_2 {
  left: 44.8%;
  top: 41.3%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_4_3 {
  left: 44.8%;
  top: 63%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_5_1 {
  left: 44.8%;
  top: 15.4%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_5_2 {
  left: 44.8%;
  top: 32.6%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_5_3 {
  left: 44.8%;
  top: 52.2%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_5_4 {
  left: 44.8%;
  top: 71.7%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_6_1 {
  left: 55.9%;
  top: 9.2%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_6_2 {
  left: 55.9%;
  top: 35.1%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_6_3 {
  left: 55.9%;
  top: 59.2%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_7_1 {
  left: 67.05%;
  top: 2.7%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_7_2 {
  left: 67.05%;
  top: 28.6%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_7_3 {
  left: 67.05%;
  top: 54.8%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_8_1 {
  left: 81.15%;
  top: 45%;
  width: 5%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_8_2 {
  left: 78.15%;
  top: 14%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_8_3 {
  left: 78.15%;
  top: 24.5%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_9_1 {
  left: 89.32%;
  top: 9.3%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_9_2 {
  left: 92.15%;
  top: 45%;
  width: 5%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_9_3 {
  left: 89.32%;
  top: 22%;
}
.p-timetable__tabContent--0531 .p-timetable__schedule--0531_9_4 {
  left: 89.32%;
  top: 35.2%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_1 {
  left: 1.5%;
  top: 15%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_2 {
  left: 1.5%;
  top: 33.2%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_3 {
  left: 1.5%;
  top: 41.5%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_4 {
  left: 1.5%;
  top: 45.7%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_5 {
  left: 1.5%;
  top: 60.4%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_6 {
  left: 1.5%;
  top: 72.9%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_mc1 {
  left: 5.5%;
  top: 2.5%;
  width: 22%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_mc2 {
  left: 5.5%;
  top: 27.5%;
  width: 22%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_mc3 {
  left: 5.5%;
  top: 41.8%;
  width: 22%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_mc4 {
  left: 5.5%;
  top: 67%;
  width: 22%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_1_mc5 {
  left: 3.5%;
  top: 87.8%;
  width: 27%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_1 {
  left: 34.8%;
  top: 0.4%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_start {
  left: 40.8%;
  top: 4.6%;
  width: 24%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_2 {
  left: 34.8%;
  top: 6.3%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_3 {
  left: 34.8%;
  top: 18.8%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_4 {
  left: 34.8%;
  top: 31.3%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_9 {
  left: 34.8%;
  top: 37.5%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_5 {
  left: 34.8%;
  top: 43.8%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_6 {
  left: 34.8%;
  top: 54.2%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_7 {
  left: 34.8%;
  top: 64.6%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_2_8 {
  left: 34.8%;
  top: 83.1%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_1 {
  left: 68.2%;
  top: 12.6%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_2 {
  left: 68.2%;
  top: 25%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_3 {
  left: 68.2%;
  top: 37.5%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_4 {
  left: 68.2%;
  top: 48.1%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_5 {
  left: 68.2%;
  top: 58.3%;
}
.p-timetable__tabContent--0531.p-timetable__tabContent--web .p-timetable__schedule--0531_3_6 {
  left: 68.2%;
  top: 66.7%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_0_1 {
  left: 4%;
  top: 37.5%;
  width: 5%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_0_2 {
  left: 4%;
  top: 69.9%;
  width: 5%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_1_1 {
  left: 0.25%;
  top: 45.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_1_2 {
  left: 0.25%;
  top: 78.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_1 {
  left: 12.75%;
  top: 4.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_2 {
  left: 12.75%;
  top: 17.5%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_3 {
  left: 12.75%;
  top: 28.3%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_4 {
  left: 12.75%;
  top: 39.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_5 {
  left: 12.75%;
  top: 58.7%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_2_6 {
  left: 12.75%;
  top: 71.7%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_3_1 {
  left: 25.29%;
  top: 12.9%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_3_2 {
  left: 25.29%;
  top: 24%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_3_3 {
  left: 25.29%;
  top: 34.7%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_3_4 {
  left: 25.29%;
  top: 56.5%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_3_5 {
  left: 25.29%;
  top: 67.3%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_4_1 {
  left: 37.86%;
  top: 24%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_4_2 {
  left: 37.86%;
  top: 41.4%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_4_3 {
  left: 37.86%;
  top: 60.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_5_1 {
  left: 50.38%;
  top: 15.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_5_2 {
  left: 50.38%;
  top: 32.7%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_5_3 {
  left: 50.38%;
  top: 50.1%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_6_1 {
  left: 62.9%;
  top: 9.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_6_2 {
  left: 66.55%;
  top: 54%;
  width: 5% !important;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_6_3 {
  left: 62.9%;
  top: 22.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_6_4 {
  left: 62.9%;
  top: 43.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_7_1 {
  left: 79.05%;
  top: 54%;
  width: 5% !important;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_7_2 {
  left: 79.05%;
  top: 5%;
  width: 4.8% !important;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_7_3 {
  left: 75.45%;
  top: 10.95%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_7_4 {
  left: 75.45%;
  top: 24%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_8_1 {
  left: 87.93%;
  top: 33%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_8_2 {
  left: 87.93%;
  top: 43.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_8_3 {
  left: 91.4%;
  top: 54%;
  width: 5% !important;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_8_4 {
  left: 87.93%;
  top: 9.2%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_8_5 {
  left: 87.93%;
  top: 22.2%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_1 {
  left: 1.5%;
  top: 10.5%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_2 {
  left: 1.5%;
  top: 20.9%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_3 {
  left: 1.5%;
  top: 31.3%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_4 {
  left: 1.5%;
  top: 43.8%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_5 {
  left: 1.5%;
  top: 56.4%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_6 {
  left: 1.5%;
  top: 64.7%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_7 {
  left: 1.5%;
  top: 74.8%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc1 {
  left: 5.5%;
  top: 2.5%;
  width: 22%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc2 {
  left: 5.5%;
  top: 17%;
  width: 22%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc3 {
  left: 5.5%;
  top: 37.7%;
  width: 22%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc6 {
  left: 5.5%;
  top: 54.5%;
  width: 22%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc4 {
  left: 5.5%;
  top: 71.2%;
  width: 22%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_1_mc5 {
  left: 3.5%;
  top: 87.8%;
  width: 27%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_start {
  left: 40.8%;
  top: 4.6%;
  width: 24%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_1 {
  left: 34.8%;
  top: 6.4%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_2 {
  left: 34.8%;
  top: 16.7%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_3 {
  left: 34.8%;
  top: 27.2%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_4 {
  left: 34.8%;
  top: 37.5%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_7 {
  left: 34.8%;
  top: 56.2%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_5 {
  left: 34.8%;
  top: 62.5%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_2_6 {
  left: 34.8%;
  top: 68.8%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_1 {
  left: 68.2%;
  top: 12.4%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_2 {
  left: 68.2%;
  top: 23%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_3 {
  left: 68.2%;
  top: 33.3%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_4 {
  left: 68.2%;
  top: 37.8%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_5 {
  left: 68.2%;
  top: 54.2%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_6 {
  left: 68.2%;
  top: 64.6%;
}
.p-timetable__tabContent--0601.p-timetable__tabContent--web .p-timetable__schedule--0601_3_7 {
  left: 68.2%;
  top: 70.5%;
}
.p-timetable__schedule {
  position: absolute;
  width: 10.485%;
}
.p-timetable__schedule-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule {
  width: 11.8%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_0_1 {
  width: 5%;
}
.p-timetable__tabContent--0601 .p-timetable__schedule--0601_0_2 {
  width: 5%;
}
.p-timetable__tabContent--web .p-timetable__schedule {
  width: 30.5%;
}
.p-timetable__schedule a {
  display: block;
}
.p-timetable__schedule a img {
  display: block;
}
.p-timetable .note {
  text-align: center;
  margin-top: 50px;
}
.p-timetable .note.d-flex {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-timetable {
    margin-right: 0;
  }
  .p-timetable__btn01 {
    margin: 20px auto 50px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .p-timetable__btn01 .c-btn {
    border-color: #aad1e5;
    color: #757575;
    line-height: 1.2;
    padding: 10px 22px;
    min-height: inherit;
    width: auto;
  }
  .p-timetable__btn01 .c-btn:hover {
    background-color: #aad1e5;
    color: #fff;
  }
  .p-timetable__tab ul {
    flex-wrap: wrap;
  }
  .p-timetable__tab ul li:nth-child(n+2) {
    margin-left: 5%;
  }
  .p-timetable__tab ul li a::before {
    top: 0.5em;
  }
  .p-timetable__tab ul li a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 1.5px;
  }
  .p-timetable__tab ul li a span:nth-child(1) {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .p-timetable__tab ul li a span:nth-child(2) {
    margin-top: 0.7em;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-timetable__text01 {
    width: 270px;
  }
  .p-timetable__read {
    display: block;
    margin-left: 0;
    margin-top: 30px;
  }
  .p-timetable__btn {
    margin: 20px auto 0;
    height: 55px;
  }
  .p-timetable__btn a {
    text-align: center;
    line-height: 1.4;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-timetable__img {
    margin-top: 30px;
  }
  .p-timetable__scrollbar {
    display: none;
  }
  .p-timetable__scroll {
    overflow: inherit;
    padding-bottom: 30px;
  }
  .p-timetable__tabContent--web .p-timetable__scroll {
    overflow: inherit;
  }
  .p-timetable__scroll::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
  .p-timetable__scroll .simplebar-scrollbar::before {
    background: #b3d7eb;
    border-radius: 30px;
    width: 27px;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  .p-timetable__scroll .simplebar-scrollbar.simplebar-visible::before {
    opacity: 1;
  }
  .p-timetable__scroll .simplebar-track {
    background-color: #dae7ee;
    border-radius: 30px;
    left: 0;
    right: 20px;
    height: 27px;
    position: fixed;
    bottom: 0;
  }
  .p-timetable__table {
    width: 269%;
    background-size: 97.36%;
  }
  .p-timetable__tabContent--0601 .p-timetable__table {
    width: 222%;
    background-size: 96.9%;
  }
  .p-timetable__tabContent--web .p-timetable__table {
    width: 184%;
    background-size: 95.44%;
  }
  .p-timetable__tabContent--0602.p-timetable__tabContent--web .p-timetable__table {
    width: 184%;
    background-size: 95.36%;
  }
  .p-timetable__table th:first-child {
    width: 2.7%;
    background-color: #fefbfa;
    z-index: 2;
  }
  .p-timetable__tabContent--0601 .p-timetable__table th:first-child {
    width: 3%;
  }
  .p-timetable__tabContent--web .p-timetable__table th:first-child {
    width: 4.76%;
  }
  .p-timetable__table th:nth-child(2) {
    width: 97.3%;
    height: auto;
  }
  .p-timetable__tabContent--0601 .p-timetable__table th:nth-child(2) {
    width: 95.9%;
    text-align: left;
    /*
                              img {
                                  opacity: 0;
                              }

                               */
  }
  .p-timetable__tabContent--web .p-timetable__table th:nth-child(2) {
    width: 95.24%;
    height: auto;
  }
  .p-timetable__tabContent {
    margin-right: -20px;
  }
  .p-timetable__tabContent--0529 .p-timetable__schedule--0529_1_1 {
    left: 6.9%;
  }
  .p-timetable__tabContent--0530 .p-timetable__schedule {
    position: absolute;
  }
  .p-timetable__tabContent--0530 .p-timetable__schedule--0530_1_1 {
    left: 6.9%;
  }
  .p-timetable__tabContent--0530 .p-timetable__schedule a {
    display: block;
  }
  .p-timetable__schedule {
    position: absolute;
  }
  .p-timetable__schedule a {
    display: block;
  }
  .p-timetable .note.d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

.p-stroly div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.p-stroly div + div {
  margin-top: 20px;
}
.p-stroly div img {
  width: 20%;
}
.p-stroly div p {
  width: 75%;
}
.p-stroly div p small {
  font-size: 85%;
  display: inline-block;
  margin-top: 0.8em;
}
@media only screen and (max-width: 768px) {
  .p-stroly div {
    flex-direction: column;
  }
  .p-stroly div img {
    width: 56%;
    margin: 0 auto;
  }
  .p-stroly div p {
    width: 100%;
  }
}

.stroly_bnr {
  width: 80%;
  margin: 3em auto 0;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .sp_hidden {
    visibility: hidden;
  }
}

.style-01 {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e0eff7;
  border-radius: 8px;
  margin: 2rem 0;
}

/* --------------------------- */
/* app */
.p-app {
  width: 960px;
  margin: 0 auto;
}
.p-app__title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
}
.p-app .subTitle {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-size: 2.8rem;
}
.p-app .text .bg01 {
  display: block;
  margin: 10px 0 20px;
  background-color: #fff;
  border: solid 2px #6ebbab;
  border-radius: 20px;
  padding: 30px;
  line-height: 2;
  word-break: break-all;
}
.p-app .text .text-info {
  font-size: 14px;
  font-size: 1.4rem;
  color: #f00;
  margin: 0.5em 0;
}
.p-app .text span {
  color: #f00;
  text-decoration: underline;
}
.p-app .mainImg img {
  width: 100%;
}
.p-app .p-table {
  margin-top: 5px;
}
.p-app .p-table table {
  border: 2px solid #aad1e5;
  margin: 0 auto;
}
.p-app .p-table table td {
  border: 1px solid #aad1e5;
  background-color: #f3f9fc;
  padding: 5px 20px;
  text-align: center;
  vertical-align: middle;
}
.p-app .p-table table td img {
  vertical-align: middle;
}
.p-app .p-table table td:first-child {
  background-color: #e0eff7;
}
.p-app .p-table table td:nth-child(1) {
  width: 50%;
}
.p-app .p-table table td:nth-child(2) {
  width: 50%;
}
.p-app .word-break {
  word-break: break-all;
}
@media only screen and (max-width: 768px) {
  .p-app {
    width: 100%;
  }
  .p-app .subTitle {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-app .text {
    line-height: 1.8;
  }
  .p-app .p-table {
    margin-top: 5px;
  }
  .p-app .p-table table {
    border: 2px solid #aad1e5;
  }
  .p-app .p-table table td {
    padding: 5px 1px;
    letter-spacing: 0;
    font-size: 12px;
    font-size: 1.2rem;
  }
  .p-app .p-table table td img {
    width: 40%;
  }
}

.p-appDownload {
  width: 100%;
  max-width: 100%;
  padding: 38px 0 0;
  margin: 80px auto 0;
  background: #f9f9f9;
  /*
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;//add 2024
  */
  border-radius: 20px;
  border: solid 4px #95CFC8;
}
.p-appDownload__left {
  width: 77%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-appDownload__left figure {
  width: 43%;
}
.p-appDownload__left figure img {
  width: 100%;
}
.p-appDownload__right {
  width: 50%;
  text-align: center;
}
.p-appDownload__label {
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 1em;
}
.p-appDownload__btn {
  width: 100%;
}
.p-appDownload__btn ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-appDownload__btn ul li:nth-child(1) {
  margin-right: 10px;
  width: 135px;
}
.p-appDownload__btn ul li:nth-child(2) {
  width: 168px;
}
.p-appDownload__btn ul li img {
  vertical-align: middle;
}
.p-appDownload__btn .caption {
  font-size: 11px;
  font-size: 1.1rem;
  text-indent: -1em;
  padding-left: 1em;
}
.p-appDownload .p-appDownloadApp {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .p-appDownload {
    padding: 20px 0 0;
    margin-top: 40px;
    width: 100%;
  }
  .p-appDownload__left {
    width: 100%;
    flex-direction: column;
  }
  .p-appDownload__left figure {
    width: 93%;
    margin-bottom: 39px;
  }
  .p-appDownload__left figure + figure {
    margin-bottom: 30px;
  }
  .p-appDownload__right {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .p-appDownload__btn {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .p-appDownload__btn ul li:nth-child(1) {
    margin-right: 20px;
    width: 41%;
  }
  .p-appDownload__btn ul li:nth-child(2) {
    width: 50%;
  }
  .p-appDownload .p-appDownloadApp {
    margin: 0;
  }
}

.p-appDownloadApp {
  width: 100%;
  max-width: 100%;
  padding: 30px 30px 20px;
  margin: 40px auto 0;
  background: url("/2025/assets/images/ticket_app/bg_app_download.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.p-appDownloadApp.wait {
  position: relative;
  opacity: 0.3;
}
.p-appDownloadApp.wait:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
}
.p-appDownloadApp.wait:after {
  content: "6月上旬ダウンロード開始予定";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  width: 100%;
  text-align: center;
}
.p-appDownloadApp__left {
  width: 113px;
  margin-right: 70px;
}
.p-appDownloadApp__label {
  color: #6ebbab;
  line-height: 1.4;
  margin-top: -3px;
  font-size: 20px;
  font-size: 2rem;
}
.p-appDownloadApp__btn {
  width: 430px;
  margin-top: 15px;
}
.p-appDownloadApp__btn ul {
  display: flex;
  justify-content: space-between;
}
.p-appDownloadApp__btn ul li:nth-child(1) {
  margin-right: 20px;
  width: 168px;
}
.p-appDownloadApp__btn ul li:nth-child(2) {
  width: 204px;
}
.p-appDownloadApp__btn ul li img {
  vertical-align: middle;
}
.p-appDownloadApp__btn .caption {
  font-size: 11px;
  font-size: 1.1rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (max-width: 768px) {
  .p-appDownloadApp {
    padding: 30px 0 40px;
    background: url("/2025/assets/images/ticket_app/bg_app_download_sp.png") no-repeat center center;
    background-size: cover;
    flex-direction: column;
  }
  .p-appDownloadApp__left {
    margin: 0;
  }
  .p-appDownloadApp__right {
    width: 100%;
    text-align: center;
  }
  .p-appDownloadApp__label {
    color: #5f5f68;
    line-height: 1.6;
  }
  .p-appDownloadApp__btn {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .p-appDownloadApp__btn ul {
    flex-direction: column;
  }
  .p-appDownloadApp__btn ul li:nth-child(1) {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
  }
  .p-appDownloadApp__btn ul li:nth-child(2) {
    margin: 12px auto 0;
    width: 100%;
    max-width: 200px;
  }
}

.p-appPlay {
  margin-top: 80px;
}
.p-appPlay__title {
  text-align: center;
  position: relative;
  color: #b1bdde;
  padding-bottom: 20px;
  margin-bottom: 50px;
  font-size: 34px;
  font-size: 3.4rem;
}
.p-appPlay__title::before {
  content: "";
  height: 6px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  background-color: #b1bdde;
}
.p-appPlay__head {
  width: 460px;
  margin-left: 400px;
  padding-top: 60px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-appPlay__number {
  margin-right: 10px;
}
.p-appPlay__number span {
  background-color: #6ebbab;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: normal;
  font-size: 34px;
  font-size: 3.4rem;
}
.p-appPlay__label {
  line-height: 1.6;
}
.p-appPlay__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
}
.p-appPlay__img img {
  width: 250px;
  display: block;
  margin: auto;
}
.p-appPlay__text {
  width: 460px;
  margin-left: 400px;
  margin-top: 20px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}
.p-appPlay__text small {
  font-size: 80%;
  display: block;
}
.p-appPlay ol {
  margin-top: 50px;
}
.p-appPlay ol li {
  position: relative;
  min-height: 540px;
  width: 810px;
  max-width: 100%;
  margin: 0 auto;
}
.p-appPlay ol li:nth-child(n+2) {
  margin-top: 60px;
}
.p-appPlay ol li:nth-child(n+2) .p-appPlay__head {
  padding-top: 97px;
}
@media only screen and (max-width: 768px) {
  .p-appPlay__title {
    padding-bottom: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
  .p-appPlay__title::before {
    content: "";
    height: 3px;
  }
  .p-appPlay__head {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-appPlay__number span {
    background-color: #6ebbab;
    width: 45px;
    height: 45px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .p-appPlay__label {
    margin-left: 0;
    width: 100%;
  }
  .p-appPlay__img {
    position: static;
    width: 100%;
    margin-top: 20px;
    padding: 0 20px;
    text-align: center;
  }
  .p-appPlay__img img {
    width: 50%;
  }
  .p-appPlay__text {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
    line-height: 1.8;
  }
  .p-appPlay ol li {
    min-height: inherit;
  }
  .p-appPlay ol li:nth-child(n+2) .p-appPlay__head {
    padding-top: 0;
  }
  .p-appPlay ol li:nth-child(n+2) {
    margin-top: 60px;
  }
}

.p-appTerms {
  width: 810px;
  max-width: 100%;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 2px solid #c5c5c5;
}
.p-appTerms .title01 {
  text-align: center;
  font-size: 28px;
  font-size: 2.8rem;
}
.p-appTerms .title02 {
  margin-top: 37px;
  text-align: center;
}
.p-appTerms .title02 + .c-discList {
  margin-top: 20px;
}
.p-appTerms .title03 {
  margin-top: 45px;
  margin-bottom: 5px;
}
.p-appTerms ol {
  counter-reset: number 0;
}
.p-appTerms ol li {
  position: relative;
  padding-left: 1.7em;
  line-height: 2.5;
}
.p-appTerms ol li:nth-child(n+2) {
  margin-top: 33px;
}
.p-appTerms ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number 1;
  content: counter(number) ". ";
}
.p-appTerms ol.nest {
  padding-left: 1.5em;
}
.p-appTerms ol.nest li {
  list-style: lower-latin;
  padding-left: 0;
}
.p-appTerms ol.nest li::before {
  content: none;
}
.p-appTerms ol.nest li .p-appTerms ol.nest li:nth-child(n+2) {
  margin-top: 5px;
}
.p-appTerms .moreContent {
  display: none;
}
.p-appTerms .moreContent .title03 {
  margin-top: 50px;
}
.p-appTerms .moreBtn {
  text-align: center;
  margin-top: 30px;
}
.p-appTerms .moreBtn a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #6ebbab;
}
.p-appTerms .moreBtn a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #6ebbab;
  border-right: 2px solid #6ebbab;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
@media only screen and (min-width: 769px) {
  .p-appTerms .moreBtn a:hover {
    opacity: 0.8;
  }
}
.p-appTerms .moreBtn a.open {
  margin-top: 30px;
}
.p-appTerms .moreBtn a.open::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: auto;
  top: -8px;
}
@media only screen and (max-width: 768px) {
  .p-appTerms {
    margin: 30px auto 0;
    padding-top: 30px;
  }
  .p-appTerms .title01 {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .p-appTerms .title02 {
    margin-top: 15px;
    letter-spacing: 0.02em;
  }
  .p-appTerms .title03 {
    margin-top: 20px;
  }
  .p-appTerms ol li {
    line-height: 1.8;
  }
  .p-appTerms ol li:nth-child(n+2) {
    margin-top: 20px;
  }
}

_:-ms-input-placeholder, :root .p-appPlay__number span {
  padding-top: 18px;
}

/* --------------------------- */
/* program */
.p-program .radiobutton {
  display: none;
}
.p-program__tab ul {
  display: flex;
  justify-content: center;
}
.p-program__tab ul li {
  cursor: pointer;
}
.p-program__tab ul li label {
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.p-program__tab ul li.c-link:lang(en) span {
  display: inline;
  font-size: 48px;
  font-size: 4.8rem;
}
.p-program__tab ul li.c-link:lang(en) span:nth-child(2) {
  font-size: 23px;
  font-size: 2.3rem;
}
.p-program__tab ul li.c-link::before {
  content: none;
}
.p-program__tab ul li:nth-child(n+2) {
  margin-left: 35px;
}
.p-program__tab--day li label {
  position: relative;
  padding-left: 25px;
}
.p-program__tab--day li label span {
  color: #f4dbd2 !important;
}
.p-program__tab--day li label::before {
  content: "";
  position: absolute;
  left: -5px;
  border-radius: 2px;
  transition: 0.3s all;
  top: 1.6em;
  content: "";
  width: 17px;
  height: 17px;
  border-top: 3px solid #f4dbd2;
  border-right: 3px solid #f4dbd2;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (min-width: 769px) {
  .p-program__tab--day li label:hover::before {
    left: 3px;
  }
}
.p-program__tab--day li::before {
  border-color: #f4dbd2 !important;
}
.p-program__tab--day li input:checked + label span {
  color: #f3a6b0 !important;
}
.p-program__tab--day li input:checked + label::before {
  border-color: #f3a6b0 !important;
}
.p-program__tab--day li input:checked + label::after {
  content: "";
  position: absolute;
  left: -20%;
  bottom: 0.6em;
  width: 140%;
  height: 3px;
  border-radius: 3px;
  background-color: #f3a6b0;
}
.p-program__tab--type {
  margin-top: 23px;
}
.p-program__tab-btn {
  width: 16.5%;
  letter-spacing: 0;
}
.p-program__tab-btn:nth-child(n+2) {
  margin-left: 5px !important;
}
.p-program__tab-btn label {
  border: 2px solid #000;
  border-radius: 20px;
  padding: 6px 0;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s all;
}
.p-program__tab-btn--tabLive label {
  border-color: #df9f8e;
}
.p-program__tab-btn--tabLive label:hover {
  color: #fff;
  background-color: #df9f8e;
}
.p-program__tab-btn--tabLive input:checked + label {
  color: #fff;
  background-color: #df9f8e;
}
.p-program__tab-btn--tabWork label {
  border-color: #58a685;
}
.p-program__tab-btn--tabWork label:hover {
  color: #fff;
  background-color: #58a685;
}
.p-program__tab-btn--tabWork input:checked + label {
  color: #fff;
  background-color: #58a685;
}
.p-program__tab-btn--tabTalk label {
  border-color: #5bafb4;
}
.p-program__tab-btn--tabTalk label:hover {
  color: #fff;
  background-color: #5bafb4;
}
.p-program__tab-btn--tabTalk input:checked + label {
  color: #fff;
  background-color: #5bafb4;
}
.p-program__tab-btn--tabSupporter label {
  border-color: #589fcf;
}
.p-program__tab-btn--tabSupporter label:hover {
  color: #fff;
  background-color: #589fcf;
}
.p-program__tab-btn--tabSupporter input:checked + label {
  color: #fff;
  background-color: #589fcf;
}
.p-program__tab-btn--tabMarket label {
  border-color: #e7c34c;
}
.p-program__tab-btn--tabMarket label:hover {
  color: #fff;
  background-color: #e7c34c;
}
.p-program__tab-btn--tabMarket input:checked + label {
  color: #fff;
  background-color: #e7c34c;
}
.p-program__tab-btn--tabFood label {
  border-color: #eda956;
}
.p-program__tab-btn--tabFood label:hover {
  color: #fff;
  background-color: #eda956;
}
.p-program__tab-btn--tabFood input:checked + label {
  color: #fff;
  background-color: #eda956;
}
.p-program__tab-btn--tabOther label {
  border-color: #b0a69d;
}
.p-program__tab-btn--tabOther label:hover {
  color: #fff;
  background-color: #b0a69d;
}
.p-program__tab-btn--tabOther input:checked + label {
  color: #fff;
  background-color: #b0a69d;
}
.p-program__list {
  margin-top: 30px;
}
.p-program__list > ul {
  margin-right: -0.8%;
  display: flex;
  flex-wrap: wrap;
}
.p-program__list > ul > li {
  width: 24.5%;
  border: 2px solid #f3a6b0;
  border-radius: 14px;
  overflow: hidden;
  margin-right: 0.5%;
  margin-top: 20px;
  background-color: #fff;
}
.p-program__list > ul > li > a {
  display: block;
  padding: 10px 10px 15px;
}
.p-program__list > ul > li > a:hover {
  color: #717171;
}
.p-program__list > ul > li > a:hover img {
  opacity: 1;
}
.p-program__list > ul > li.is-hide {
  display: none;
}
.p-program__list-none {
  display: none;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .p-program__tab > ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .p-program__tab > ul > li {
    width: 33%;
    padding-left: 0;
    text-align: center;
  }
  .p-program__tab > ul > li.c-link:lang(en) span {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .p-program__tab > ul > li.c-link:lang(en) span:nth-child(2) {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .p-program__tab > ul > li.c-link::before {
    top: 1.5em;
  }
  .p-program__tab > ul > li:nth-child(n+2) {
    margin-left: 0;
  }
  .p-program__tab > ul > li:nth-child(2) {
    margin-left: 3%;
  }
  .p-program__tab--day {
    justify-content: center !important;
  }
  .p-program__tab--day li label {
    padding-left: 15px;
    display: inline-block !important;
  }
  .p-program__tab--day li label::before {
    top: 1.2em;
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #fbe3c9;
    border-right: 3px solid #fbe3c9;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media only screen and (max-width: 768px) and (min-width: 769px) {
  .p-program__tab--day li label:hover::before {
    left: 3px;
  }
}
@media only screen and (max-width: 768px) {
  .p-program__tab--day li::before {
    border-color: #fbe3c9 !important;
  }
  .p-program__tab--day li input:checked + label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.2em;
    width: 100%;
    height: 3px;
    border-radius: 3px;
  }
  .p-program__tab--type {
    margin-top: 23px;
  }
  .p-program__tab--type > li {
    width: 49% !important;
  }
  .p-program__tab--type > li:nth-child(n+2) {
    margin-left: 0 !important;
  }
  .p-program__tab--type > li:nth-child(n+3) {
    margin-top: 2%;
  }
  .p-program__tab--type > li:nth-child(2n) {
    margin-left: 2% !important;
  }
  .p-program__tab-btn label {
    border-radius: 12px;
  }
  .p-program__list {
    margin-top: 50px;
  }
  .p-program__list > ul {
    margin-right: -1.4%;
    justify-content: space-between;
  }
  .p-program__list > ul > li {
    width: 49%;
  }
  .p-program__list > ul > li:nth-child(2n) {
    margin-right: 0;
  }
  .p-program__list > ul > li:nth-child(n+3) {
    margin-top: 10px;
  }
  .p-program__list > ul > li a {
    padding: 15px 10px;
  }
}

.p-programList__img {
  border-radius: 4px;
  overflow: hidden;
}
.p-programList__img img {
  display: block;
}
.p-programList__tag {
  margin-top: 10px;
}
.p-programList__tag ul {
  display: flex;
  flex-wrap: wrap;
}
.p-programList__tag--live {
  background-color: #df9f8e;
}
.p-programList__tag--work {
  background-color: #58a685;
}
.p-programList__tag--talk {
  background-color: #5bafb4;
}
.p-programList__tag--supporter {
  background-color: #589fcf;
}
.p-programList__tag--market {
  background-color: #e7c34c;
}
.p-programList__tag--food {
  background-color: #eda956;
}
.p-programList__tag--other {
  background-color: #b0a69d;
}
.p-programList__tag li {
  color: #fff;
  text-align: center;
  min-width: 32%;
  display: inline-block;
  border-radius: 50px;
  padding: 2px;
  letter-spacing: 0.05em;
  margin-top: 5px;
  margin-right: 3px;
  font-size: 10px;
  font-size: 1rem;
}
.p-programList__icon {
  width: 44px;
  height: 32px;
  margin-left: auto;
  margin-top: 3px;
}
.p-programList__icon img {
  display: block;
  width: 100%;
}
.p-programList__title {
  line-height: 1.5;
  margin-top: 5px;
  font-size: 17px;
  font-size: 1.7rem;
}
.p-programList__list {
  margin-top: 10px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-programList__list li {
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
.p-programList__list li:nth-child(n+2) {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-programList__tag {
    width: auto;
  }
  .p-programList__tag ul {
    justify-content: flex-start;
  }
  .p-programList__tag ul li {
    padding: 2px 10px;
    margin-right: 5px;
  }
  .p-programList__title {
    margin-top: 5px;
    letter-spacing: 0.05em;
  }
  .p-programList__icon {
    margin-top: 5px;
  }
}

.p-programCnotent {
  width: 1017px;
  max-width: 100%;
  margin: auto;
}
.p-programCnotent .p-programList__tag {
  margin-top: 0;
  width: 100%;
}
.p-programCnotent .p-programList__tag ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.p-programCnotent .p-programList__tag ul li {
  font-size: 12px;
  font-size: 1.2rem;
  margin-right: 8px;
  margin-top: 0;
  width: auto;
  min-width: 86px;
  padding: 1px 8px;
}
.p-programCnotent .p-programList__tag ul li.p-programList__icon--live {
  padding: 0;
  min-width: inherit;
  width: 45px;
  margin-left: 30px;
}
.p-programCnotent .p-programList__tag ul li.p-programList__icon--live img {
  width: 100%;
}
.p-programCnotent .p-programList__tag ul li:nth-child(n+2) {
  margin-top: 0;
}
.p-programCnotent__mv {
  margin-bottom: 20px;
  border: 6px solid #fff;
  border-radius: 18px;
  width: 493px;
  margin: auto;
  overflow: hidden;
}
.p-programCnotent__mv img {
  display: block;
}
.p-programCnotent__title {
  text-align: center;
  line-height: 1.4;
  font-size: 38px;
  font-size: 3.8rem;
}
.p-programCnotent__list {
  margin-top: 7px;
}
.p-programCnotent__list-elem {
  position: relative;
  padding: 40px 10px;
  display: flex;
  align-items: center;
}
.p-programCnotent__list-elem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background-color: #f3a6b0;
}
.p-programCnotent__list-elem:nth-child(1)::before, .p-programCnotent__list-elem:nth-child(2)::before {
  content: none;
}
.p-programCnotent__list-elem .label {
  width: 21%;
  position: relative;
  padding-left: 1.1em;
  font-size: 22px;
  font-size: 2.2rem;
}
.p-programCnotent__list-elem .label::before {
  position: absolute;
  top: 0.5em;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 1em;
  height: 1em;
  background-color: #f3a6b0;
  border-radius: 50%;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-programCnotent__list-elem .text {
  width: 79%;
}
.p-programCnotent__list-elem .text small {
  font-size: 80%;
}
.p-programCnotent__list-elem .text img {
  display: block;
  margin: auto;
  height: auto;
}
.p-programCnotent__list-elem .text .decoration01 {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.p-programCnotent__list-elem .text .decoration01 span {
  color: #cfdd4c;
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid #e8eeb4;
}
.p-programCnotent__list-elem .text a {
  text-decoration: underline;
}
.p-programCnotent__list-elem .text a:hover {
  text-decoration: none;
}
.p-programCnotent__list-elem .text em {
  font-style: italic;
}
.p-programCnotent__list-elem .text .u-txt-center {
  display: block;
}
.p-programCnotent__list-elem .text ol {
  counter-reset: counter01;
}
.p-programCnotent__list-elem .text ol > br {
  display: none;
}
.p-programCnotent__list-elem .text ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.p-programCnotent__list-elem .text ol li::before {
  counter-increment: counter01;
  content: counter(counter01) ". ";
}
.p-programCnotent__list-elem .text ul > br {
  display: none;
}
.p-programCnotent__list-elem .text ul li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.p-programCnotent__list-elem .text ul li::before {
  content: "・";
}
.p-programCnotent__list-elem .text .youtube {
  position: relative;
  width: 100%;
  padding-top: 54.95%;
}
.p-programCnotent__list-elem .text .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.p-programCnotent__list-elem--full {
  padding: 44px 20px;
  flex-wrap: wrap;
}
.p-programCnotent__list-elem--full .label {
  width: 100%;
  margin-bottom: 10px;
}
.p-programCnotent__list-elem--full .text {
  width: 100%;
}
.p-programCnotent__list-elem--read::before {
  content: none;
}
.p-programCnotent__list-elem--read .text {
  width: 100%;
}
.p-programCnotent--2column {
  display: flex;
  justify-content: space-between;
}
.p-programCnotent--2column .p-programList__tag ul {
  justify-content: flex-start;
}
.p-programCnotent--2column .p-programList__tag ul li {
  margin-top: 5px;
}
.p-programCnotent--2column .p-programList__tag ul li:nth-child(n+2) {
  margin-top: 5px;
}
.p-programCnotent--2column .p-programCnotent__left {
  width: 393px;
  max-width: 100%;
}
.p-programCnotent--2column .p-programCnotent__right {
  width: 580px;
  max-width: 100%;
}
.p-programCnotent--2column .p-programCnotent__title {
  text-align: left;
  padding: 0 15px;
  line-height: 1.8;
  font-size: 30px;
  font-size: 3rem;
}
.p-programCnotent--2column .p-programCnotent__list {
  margin-top: 10px;
}
.p-programCnotent--2column .p-programCnotent__list-elem::before {
  height: 1px;
}
.p-programCnotent--2column .p-programCnotent__list-elem .label {
  width: 38%;
}
.p-programCnotent--2column .p-programCnotent__mv {
  width: 100%;
}
.p-programCnotent--2column + .p-programCnotent--2column {
  position: relative;
  margin-top: 65px;
  padding-top: 65px;
}
.p-programCnotent--2column + .p-programCnotent--2column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #f3a6b0;
}
@media only screen and (max-width: 768px) {
  .p-programCnotent .p-programList__tag ul li {
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 5px;
  }
  .p-programCnotent .p-programList__tag ul li:nth-child(n+2) {
    margin-top: 5px;
  }
  .p-programCnotent .p-programList__tag ul li.p-programList__icon--live {
    width: 30px;
    margin-left: 0;
  }
  .p-programCnotent__mv {
    max-width: 70%;
    margin: 0 auto 20px;
  }
  .p-programCnotent__title {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .p-programCnotent__list-elem {
    padding: 20px 0;
    display: block;
  }
  .p-programCnotent__list-elem::before {
    height: 1px;
  }
  .p-programCnotent__list-elem .label {
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-programCnotent__list-elem .label::before {
    top: 0;
  }
  .p-programCnotent__list-elem .text {
    width: 100%;
    padding-left: 1.3em;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-programCnotent__list-elem--full {
    padding: 30px 0;
    flex-wrap: wrap;
  }
  .p-programCnotent__list-elem--full .label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-programCnotent__list-elem--full .text {
    width: 100%;
    font-size: 17px;
    font-size: 1.7rem;
  }
  .p-programCnotent--2column {
    display: block;
  }
  .p-programCnotent--2column .p-programList__tag ul {
    justify-content: center;
  }
  .p-programCnotent--2column .p-programCnotent__left {
    width: 100%;
  }
  .p-programCnotent--2column .p-programCnotent__right {
    width: 100%;
  }
  .p-programCnotent--2column .p-programCnotent__title {
    text-align: center;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .p-programCnotent--2column .p-programCnotent__list {
    margin-top: 10px;
  }
  .p-programCnotent--2column .p-programCnotent__list-elem::before {
    height: 1px;
  }
  .p-programCnotent--2column + .p-programCnotent--2column {
    margin-top: 30px;
    padding-top: 30px;
  }
  .p-programCnotent--2column + .p-programCnotent--2column::before {
    height: 1px;
  }
}

/* --------------------------- */
/* interview */
.p-under--interview .c-h2-heading--white span:lang(en) + :lang(ja) {
  margin-top: 0.5em;
}
.p-under--interview .c-h2-heading h2 {
  flex-wrap: wrap;
  justify-content: center;
}
.p-under--interview .c-h2-heading h2 span:nth-child(3) {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
  font-size: 30px;
  font-size: 3rem;
}
.p-under--interview .c-h3-heading h3 span:lang(en) {
  font-size: 38px;
  font-size: 3.8rem;
}
.p-under--interview .p-under__btn {
  margin-top: 70px;
  padding: 55px 0 0;
  position: relative;
}
.p-under--interview .p-under__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background-color: #e6aa96;
  border-radius: 13px;
}
.p-under--interview .p-under__btn ul {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.p-under--interview .p-under__btn ul li {
  width: 30%;
  margin: 1%;
  /*
  &:nth-child(n+4) {
  	margin-top: 0;
  }
  &:nth-child(n+2) {
  	margin-left: 1%;
  }

   */
}
.p-under--interview .p-under__btn ul li.row3 {
  width: 32%;
}
.p-under--interview .p-under__btn ul li.row3 a {
  min-height: 76px;
}
.p-under--interview .p-under__btn ul li a {
  width: 100%;
}
.p-under--interview .p-under__btn ul li a.cs {
  line-height: 1.4;
}
.p-under--interview .p-under__btn a {
  line-height: 1.4;
  min-height: 57px;
  display: flex;
  align-items: center;
  border-color: #f3a6b0;
  background-color: #f3a6b0;
  color: #fff;
  letter-spacing: 0;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 2px 5px;
  /*
  &.pink {
  	background: url(/2022/assets/images/interview/btn_01.png) no-repeat center center;
  	background-size: 100%;
  }
  &.blue {
  	background: url(/2022/assets/images/interview/btn_02.png) no-repeat center center;
  	background-size: 100%;
  }

   */
}
.p-under--interview .p-under__btn a.cs {
  border-color: #ccc;
  background-color: #ccc;
  color: #fff;
  pointer-events: none;
  line-height: 1.2;
}
.p-under--interview .p-under__btn a small {
  display: block;
  font-size: 80%;
}
.p-under--interview .p-under__btn a:hover:not(.soon) {
  color: #e6aa96 !important;
  background-color: #fff !important;
}
.p-under--interview .p-under__btn a.soon {
  cursor: default;
  background: rgba(0, 0, 0, 0.2);
}
.p-under--interview .p-under__btn a.soon:hover {
  background: rgba(0, 0, 0, 0.2);
}
.p-under--interview .p-under__btn span:lang(ja) {
  width: 100%;
  display: block;
  text-align: center;
}
.p-under--interview .p-under__btn--top {
  padding-top: 0;
  margin: 50px 0 100px;
}
.p-under--interview .p-under__btn--top::before {
  content: none;
}
@media only screen and (max-width: 768px) {
  .p-under--interview .p-head {
    padding-left: 0;
  }
  .p-under--interview .c-h2-heading h2 span:nth-child(3) {
    font-size: 20px;
    font-size: 2rem;
    margin-top: 1em;
  }
  .p-under--interview .c-h3-heading h3 {
    padding-top: 20px;
  }
  .p-under--interview .c-h3-heading h3 span:lang(en) {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .p-under--interview .p-under__btn {
    margin-top: 40px;
    padding: 0px 0 0;
  }
  .p-under--interview .p-under__btn::before {
    width: 100%;
  }
  .p-under--interview .p-under__btn ul {
    margin-top: 2%;
  }
  .p-under--interview .p-under__btn ul li {
    width: 100%;
    /*
    &:nth-child(n+2) {
    	margin-left: 1%;
    }
    &:nth-child(n+2) {
    	margin-top: 2%;
    }
    &:nth-child(3n) {
    	margin-left: 0;
    }
    &.row3 {
    	width: 100%;
    	&:nth-child(n+2) {
    		margin-top: 2%;
    	}
    }
    &.row3 {
    	a {
    		min-height: 57px;
    	}
    }

     */
  }
  .p-under--interview .p-under__btn span:lang(ja) {
    width: 100%;
    display: block;
    text-align: center;
  }
  .p-under--interview .p-under__btn--top {
    margin: 0 0 50px;
  }
  .p-under--interview .p-under__btn--top ul li {
    width: 48% !important;
    /*
    &:nth-child(n+2) {
    	margin-top: 0!important;
    }
    &:nth-child(n+3) {
    	margin-top: 2%!important;
    }

     */
  }
  .p-under--interview .p-under__btn--top ul li a {
    font-size: 10px;
  }
}

.p-interview {
  max-width: 100%;
  margin: 0 auto;
}
.p-interview .p-read {
  margin-top: 15px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-interview .p-read small {
  font-size: 18px;
  font-size: 1.8rem;
}
.p-interview .head01 {
  color: #76777A;
  margin-top: 5em;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-interview .head01 + .head02 {
  margin-top: 0.8em;
}
.p-interview .head02 {
  margin-bottom: -2em;
  display: inline-block;
  text-decoration: underline;
  margin-top: 4em;
  font-size: 20px;
  font-size: 2rem;
}
.p-interview .head02 + .img {
  margin: 20px auto;
}
.p-interview p {
  margin-top: 1.6em;
}
.p-interview p.img {
  margin: 50px auto;
  max-width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
}
.p-interview p small {
  font-size: 12px;
  font-size: 1.2rem;
}
.p-interview p .spinline {
  display: none;
}
.p-interview p a {
  text-decoration: underline;
}
.p-interview p a:hover {
  text-decoration: none;
}
.p-interview .profile {
  margin-top: 50px;
  border-radius: 15px;
  padding: 26px 40px;
  background: url(/2023/assets/images/common/bg_03.jpg) repeat left top;
}
.p-interview .sns-writer {
  display: flex;
  justify-content: flex-end;
}
.p-interview .sns-writer > div {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px;
  padding: 15px;
  width: 40%;
}
.p-interview .sns-writer > div p {
  font-size: 1.2rem !important;
  margin: 0;
}
.p-interview .sns-writer > div img {
  width: 35px;
  float: right;
  margin: 5px 0 0 10px;
}
@media only screen and (max-width: 768px) {
  .p-interview {
    padding: 0;
  }
  .p-interview .p-read {
    margin-top: 15px;
    font-size: 20px;
    font-size: 2rem;
  }
  .p-interview .p-read small {
    font-size: 13px;
    font-size: 1.3rem;
    display: block;
  }
  .p-interview .head01 {
    line-height: 1.4;
    font-size: 21px;
    font-size: 2.1rem;
  }
  .p-interview .head02 {
    line-height: 1.4;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .p-interview p.img {
    margin: 30px auto;
  }
  .p-interview p .spinline {
    display: inline;
  }
  .p-interview .profile {
    padding: 20px;
  }
  .p-interview .sns-writer > div {
    width: 80%;
  }
}

/* ---------------------------- */
/* --------------------------- */
/* text */
.u-txt-lh0 {
  line-height: 0;
}

.u-txt-indent {
  text-indent: 1em;
}

.u-txt-indent-left {
  text-indent: -0.5em;
}

.u-txt-strong {
  font-weight: bold;
}

.u-txt-italic {
  font-face: italic;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-left {
  text-align: left !important;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-min {
  font-size: 80%;
}

.u-txt-decoration {
  text-decoration: underline;
}

.u-txt-big {
  font-size: 120%;
}

.u-txt-nolink {
  pointer-events: none;
}

.u-txt-caution {
  color: #fb490b;
}
.u-txt-caution a {
  color: #fb490b;
}

.u-txtcol-Key {
  color: #95CFC8;
}

.u-txtcol-text {
  color: #5f5f68;
}

.u-txt-blank {
  width: 0.8em;
}

.u-txt-line-through {
  text-decoration: line-through;
}

/* --------------------------- */
/* margin */
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mt155 {
  margin-top: 155px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mt165 {
  margin-top: 165px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mt175 {
  margin-top: 175px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mt185 {
  margin-top: 185px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mt195 {
  margin-top: 195px !important;
}

.mt200 {
  margin-top: 200px !important;
}

@media only screen and (max-width: 768px) {
  .spmt0 {
    margin-top: 0px !important;
  }
  .spmt5 {
    margin-top: 5px !important;
  }
  .spmt10 {
    margin-top: 10px !important;
  }
  .spmt15 {
    margin-top: 15px !important;
  }
  .spmt20 {
    margin-top: 20px !important;
  }
  .spmt25 {
    margin-top: 25px !important;
  }
  .spmt30 {
    margin-top: 30px !important;
  }
  .spmt35 {
    margin-top: 35px !important;
  }
  .spmt40 {
    margin-top: 40px !important;
  }
  .spmt45 {
    margin-top: 45px !important;
  }
  .spmt50 {
    margin-top: 50px !important;
  }
  .spmt55 {
    margin-top: 55px !important;
  }
  .spmt60 {
    margin-top: 60px !important;
  }
  .spmt65 {
    margin-top: 65px !important;
  }
  .spmt70 {
    margin-top: 70px !important;
  }
  .spmt75 {
    margin-top: 75px !important;
  }
  .spmt80 {
    margin-top: 80px !important;
  }
  .spmt85 {
    margin-top: 85px !important;
  }
  .spmt90 {
    margin-top: 90px !important;
  }
  .spmt95 {
    margin-top: 95px !important;
  }
  .spmt100 {
    margin-top: 100px !important;
  }
  .spmt105 {
    margin-top: 105px !important;
  }
  .spmt110 {
    margin-top: 110px !important;
  }
  .spmt115 {
    margin-top: 115px !important;
  }
  .spmt120 {
    margin-top: 120px !important;
  }
  .spmt125 {
    margin-top: 125px !important;
  }
  .spmt130 {
    margin-top: 130px !important;
  }
  .spmt135 {
    margin-top: 135px !important;
  }
  .spmt140 {
    margin-top: 140px !important;
  }
  .spmt145 {
    margin-top: 145px !important;
  }
  .spmt150 {
    margin-top: 150px !important;
  }
  .spmt155 {
    margin-top: 155px !important;
  }
  .spmt160 {
    margin-top: 160px !important;
  }
  .spmt165 {
    margin-top: 165px !important;
  }
  .spmt170 {
    margin-top: 170px !important;
  }
  .spmt175 {
    margin-top: 175px !important;
  }
  .spmt180 {
    margin-top: 180px !important;
  }
  .spmt185 {
    margin-top: 185px !important;
  }
  .spmt190 {
    margin-top: 190px !important;
  }
  .spmt195 {
    margin-top: 195px !important;
  }
  .spmt200 {
    margin-top: 200px !important;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

@media only screen and (max-width: 768px) {
  .spmb0 {
    margin-bottom: 0px !important;
  }
  .spmb5 {
    margin-bottom: 5px !important;
  }
  .spmb10 {
    margin-bottom: 10px !important;
  }
  .spmb15 {
    margin-bottom: 15px !important;
  }
  .spmb20 {
    margin-bottom: 20px !important;
  }
  .spmb25 {
    margin-bottom: 25px !important;
  }
  .spmb30 {
    margin-bottom: 30px !important;
  }
  .spmb35 {
    margin-bottom: 35px !important;
  }
  .spmb40 {
    margin-bottom: 40px !important;
  }
  .spmb45 {
    margin-bottom: 45px !important;
  }
  .spmb50 {
    margin-bottom: 50px !important;
  }
  .spmb55 {
    margin-bottom: 55px !important;
  }
  .spmb60 {
    margin-bottom: 60px !important;
  }
  .spmb65 {
    margin-bottom: 65px !important;
  }
  .spmb70 {
    margin-bottom: 70px !important;
  }
  .spmb75 {
    margin-bottom: 75px !important;
  }
  .spmb80 {
    margin-bottom: 80px !important;
  }
  .spmb85 {
    margin-bottom: 85px !important;
  }
  .spmb90 {
    margin-bottom: 90px !important;
  }
  .spmb95 {
    margin-bottom: 95px !important;
  }
  .spmb100 {
    margin-bottom: 100px !important;
  }
}/*# sourceMappingURL=common.css.map */