<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;family=Noto+Sans+JP:wght@100;300;400;500;700;900&amp;family=Oswald:wght@200;300;400;500;600;700&amp;display=swap");
@keyframes pageTopShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, -5px) rotateZ(5deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, -5px) rotateZ(-5deg);
  }
}
@keyframes iconShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, 0px) rotateZ(8deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, 0px) rotateZ(-8deg);
  }
}
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.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: 0;
}

.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;
  -webkit-overflow-scrolling: touch;
  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 {
  border: none;
  background: transparent;
  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-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 90vw;
  height: 550px;
  box-sizing: border-box;
  margin: auto;
  text-align: left;
  color: #555;
  max-width: 1000px;
  max-height: 550px;
  border-radius: 0px;
  background: #afb7bc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 10px;
  top: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: #555;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #555;
}
.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: 9px;
  left: 18px;
  width: 4px;
  height: 22px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 40px;
}

.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 &gt; 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-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .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 &gt; div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

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

.modaal-loading-spinner &gt; div:nth-of-type(1) &gt; 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 &gt; div:nth-of-type(2) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(3) &gt; 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 &gt; 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 &gt; div:nth-of-type(2) &gt; 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 &gt; 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 &gt; div:nth-of-type(3) &gt; 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 &gt; div:nth-of-type(4) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(5) &gt; 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 &gt; 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 &gt; div:nth-of-type(4) &gt; 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 &gt; 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 &gt; div:nth-of-type(5) &gt; 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 &gt; div:nth-of-type(6) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(7) &gt; 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 &gt; 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 &gt; div:nth-of-type(6) &gt; 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 &gt; 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 &gt; div:nth-of-type(7) &gt; 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 &gt; 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 &gt; div:nth-of-type(8) &gt; 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 &gt; 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);
}

html {
  font-size: 62.5%;
}

.common-title {
  border-bottom: 5px solid #000;
  position: relative;
}
.common-title .min-title {
  font-size: 2.2rem;
  background: #1B425C;
  padding: 1.5rem;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
.common-title .Large-title {
  font-size: 3.2rem;
  padding: 2rem 1rem;
  background: #0090D9;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.3rem;
}
.common-title::after {
  position: absolute;
  content: "";
  display: block;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #000;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 740px) {
  .common-title {
    border-bottom: 5px solid #000;
    position: relative;
  }
  .common-title .min-title {
    font-size: 2.8rem;
    background: #1B425C;
    padding: 1.5rem;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.3rem;
  }
  .common-title .Large-title {
    font-size: 4.8rem;
    padding: 3rem 1rem;
    background: #0090D9;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.3rem;
  }
  .common-title::after {
    position: absolute;
    content: "";
    display: block;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 30px solid #000;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.new-nagoya2025 p {
  color: #000;
}

.new-nagoya2025-menu a {
  font-size: 1.6rem;
}

.new-nagoya-mv {
  height: 540px;
  background: url("../new-img2025/new-nagoya-mv-bg.webp") no-repeat;
  background-size: cover;
  position: relative;
  border-bottom: 5px solid #000;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv {
    height: 590px;
    background: url("../new-img2025/new-nagoya-mv-bg.webp") no-repeat;
    background-size: cover;
    position: relative;
    border-bottom: 5px solid #000;
  }
}
.new-nagoya-mv img {
  max-width: 380px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  bottom: 0px;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv img {
    max-width: 1340px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    bottom: 0px;
  }
}

.new-nagoya-mv-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 15rem 0 10rem 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 20rem 0 10rem 0;
    position: relative;
  }
}
.new-nagoya-mv-inner h2 {
  max-width: 850px;
  margin: 0 auto;
  z-index: 3;
  background: #0090D9;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 900;
  padding: 5rem 1rem 4rem 1rem;
  letter-spacing: 0.34rem;
  text-align: center;
  position: relative;
}
.new-nagoya-mv-inner h2 span {
  width: 300px;
  font-size: 2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.34rem;
  background: #000;
  padding: 1.5rem 2rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.new-nagoya-mv-inner h2 span:after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px #000 solid;
}
@media screen and (min-width: 740px) {
  .new-nagoya-mv-inner h2 {
    max-width: 850px;
    margin: 0 auto;
    z-index: 3;
    background: #0090D9;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    padding: 5.5rem 1rem 4rem 1rem;
    letter-spacing: 0.34rem;
    text-align: center;
    position: relative;
  }
  .new-nagoya-mv-inner h2 span {
    width: 300px;
    font-size: 2rem;
    font-feature-settings: "palt";
    letter-spacing: 0.34rem;
    background: #000;
    padding: 1.5rem 2rem;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .new-nagoya-mv-inner h2 span:after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px #000 solid;
  }
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-inner h2 {
    max-width: 850px;
    margin: 0 auto;
    z-index: 3;
    background: #0090D9;
    color: #fff;
    font-size: 6rem;
    font-weight: 900;
    padding: 5.5rem 1rem 4rem 1rem;
    letter-spacing: 0.34rem;
    text-align: center;
    position: relative;
  }
  .new-nagoya-mv-inner h2 span {
    width: 500px;
    font-size: 3rem;
    font-feature-settings: "palt";
    letter-spacing: 0.34rem;
    background: #000;
    padding: 1.5rem 2rem;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .new-nagoya-mv-inner h2 span:after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px #000 solid;
  }
}
.new-nagoya-mv-inner p {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  font-size: 1.6rem;
  width: 85%;
  bottom: -185px;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.2rem;
  background: #fff;
  padding: 1rem;
  border: 3px solid #000;
  text-align: center;
  line-height: 3rem;
}
.new-nagoya-mv-inner p span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
}
@media screen and (min-width: 740px) {
  .new-nagoya-mv-inner p {
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    font-size: 1.6rem;
    width: 85%;
    bottom: -150px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.2rem;
    background: #fff;
    padding: 1rem;
    border: 3px solid #000;
    text-align: center;
    line-height: 3rem;
  }
  .new-nagoya-mv-inner p span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
  }
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-inner p {
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    font-size: 2.4rem;
    width: 60%;
    bottom: -120px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.25rem;
    background: #fff;
    padding: 3rem 6rem;
    border: 3px solid #000;
    text-align: center;
    line-height: 5.5rem;
  }
  .new-nagoya-mv-inner p span {
    display: block;
    font-size: 3.8rem;
    font-weight: 800;
  }
}
.new-nagoya-mv-inner::after {
  top: -20px;
  z-index: 1;
  left: 53%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  display: block;
  width: 330px;
  height: 380px;
  background: url("../new-img2025/new-nagoya-mv-min-item.webp") no-repeat;
  background-size: contain;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-inner::after {
    top: -110px;
    z-index: 1;
    left: 55%;
    transform: translateX(-50%);
    position: absolute;
    content: "";
    display: block;
    width: 660px;
    height: 680px;
    background: url("../new-img2025/new-nagoya-mv-min-item.webp") no-repeat;
    background-size: contain;
  }
}

.new-nagoya-mv-pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-pc {
    display: block;
  }
}

.new-nagoya-mv-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .new-nagoya-mv-sp {
    display: none;
  }
}

.mv-intro {
  padding: 12rem 0 8rem 0;
  background: #F2F2EF;
}
@media screen and (min-width: 960px) {
  .mv-intro {
    padding: 18rem 0 15rem 0;
    background: #F2F2EF;
  }
}

.mv-intro-inner h2 {
  font-size: 2.2rem;
  color: #fff;
  background: #0090D9;
  padding: 2rem 1rem;
  text-align: center;
  letter-spacing: 0.3rem;
  font-weight: 700;
  border-bottom: 3px solid #000;
  margin: 0 0 4rem 0;
}
.mv-intro-inner h2 span {
  font-size: 3.4rem;
}
@media screen and (min-width: 960px) {
  .mv-intro-inner h2 {
    font-size: 3.4rem;
    color: #fff;
    background: #0090D9;
    padding: 3rem 1rem;
    text-align: center;
    letter-spacing: 0.3rem;
    font-weight: 700;
    border-bottom: 5px solid #000;
    margin: 0 0 9rem 0;
  }
  .mv-intro-inner h2 span {
    font-size: 4.8rem;
  }
}

.mv-intro-item {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: block;
}
.mv-intro-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 0 2rem 0;
}
.mv-intro-item p {
  width: 100%;
  font-size: 2rem;
  line-height: 3.8rem;
  font-weight: bold;
}
.mv-intro-item p span {
  background: #FFF688;
}
@media screen and (min-width: 740px) {
  .mv-intro-item {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .mv-intro-item img {
    width: 45%;
    height: auto;
    object-fit: contain;
    margin: 0;
  }
  .mv-intro-item p {
    width: 52%;
    font-size: 2.2rem;
    line-height: 4.6rem;
    font-weight: bold;
  }
  .mv-intro-item p span {
    background: #FFF688;
  }
}

.instructor {
  padding: 10rem 0 3rem 0;
}
@media screen and (min-width: 740px) {
  .instructor {
    padding: 14rem 0 10rem 0;
  }
}

.instructor-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.instructor-inner h2 {
  width: 80%;
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (min-width: 740px) {
  .instructor-inner h2 {
    width: 80%;
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-weight: 800;
    font-size: 3rem;
    padding: 2rem;
    text-align: center;
  }
}

.instructor-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 5rem 0;
}
@media screen and (min-width: 740px) {
  .instructor-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 10rem 0;
  }
}
.instructor-item:last-child {
  margin: 0;
}
.instructor-item .link-item {
  display: none;
}
@media screen and (min-width: 960px) {
  .instructor-item .link-item {
    display: block;
    width: 250px;
    margin: 0 5rem 0 0;
  }
}
.instructor-item .link-item img {
  display: block;
  margin: 0 0 2rem 0;
}
.instructor-item .link-item .link-list a {
  font-size: 1.6rem;
  border-radius: 60px;
  color: #fff;
  background: #000;
  display: block;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1.2rem 0;
}
.instructor-item .link-item .link-list a:hover {
  background: #fff;
  outline: 2px solid #000;
  color: #000;
}
.instructor-item .text-item {
  width: 100%;
}
@media screen and (min-width: 740px) {
  .instructor-item .text-item {
    width: 65%;
  }
}
.instructor-item .text-item h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 4rem 0;
}
.instructor-item .text-item h3 span {
  font-size: 3.4rem;
  color: #000;
  letter-spacing: 0.34rem;
  font-weight: 800;
  background: #fff;
  display: inline-block;
  padding: 0 2rem 0 1rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 740px) {
  .instructor-item .text-item h3 span {
    padding: 0 3rem 0 0rem;
  }
}
.instructor-item .text-item h3::after {
  content: "";
  width: 100%;
  display: block;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 1;
}
.instructor-item .text-item .price {
  display: flex;
  align-items: flex-end;
  margin: 0 0 3rem 0;
}
.instructor-item .text-item .price p {
  font-size: 1.6rem;
  color: #E84444;
}
.instructor-item .text-item .price p .label {
  font-size: 1.4rem;
  color: #fff;
  background: #E84444;
  padding: 0.5rem 0.5rem;
  letter-spacing: 0rem;
  text-align: center;
  margin: 0 1rem 0 0;
}
.instructor-item .text-item .price p .Large-Text {
  font-size: 3.5rem;
  color: #E84444;
  letter-spacing: 0.34rem;
  font-weight: 800;
}
@media screen and (min-width: 740px) {
  .instructor-item .text-item .price {
    margin: 0 0 3rem 0;
  }
  .instructor-item .text-item .price p {
    font-size: 1.8rem;
  }
  .instructor-item .text-item .price p .label {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.2rem;
    margin: 0 2rem 0 0;
  }
  .instructor-item .text-item .price p .Large-Text {
    font-size: 4.2rem;
  }
}
.instructor-item .text-item .licence p {
  font-size: 1.4rem;
  letter-spacing: 0.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 6rem 0;
}
.instructor-item .text-item .licence p::before {
  content: "";
  display: block;
  width: 20px;
  height: 5px;
  flex: 0 0 auto;
  margin: 0 1.3rem 0 0;
  background: #0090D9;
}
@media screen and (min-width: 740px) {
  .instructor-item .text-item .licence p {
    font-size: 1.8rem;
    margin: 0 0 7rem 0;
  }
  .instructor-item .text-item .licence p::before {
    width: 25px;
    margin: 0 2rem 0 0;
  }
}
.instructor-item .text-item .profile p {
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  line-height: 2.5rem;
  background: #F4F4F4;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
}
.instructor-item .text-item .profile p span {
  font-size: 1.8rem;
  background: #0090D9;
  color: #fff;
  font-weight: 600;
  width: 85%;
  text-align: center;
  padding: 1.5rem 1.5rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
}
.instructor-item .text-item .profile p span::after {
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px #0090D9 solid;
}
@media screen and (min-width: 740px) {
  .instructor-item .text-item .profile p {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    line-height: 2.7rem;
    background: #F4F4F4;
    padding: 6rem 3rem 3rem 3rem;
    position: relative;
  }
  .instructor-item .text-item .profile p span {
    font-size: 2.2rem;
    background: #0090D9;
    color: #fff;
    font-weight: 600;
    width: 60%;
    text-align: center;
    padding: 1.5rem 3rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%);
  }
  .instructor-item .text-item .profile p span::after {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px #0090D9 solid;
  }
}

.sp-link-list {
  display: block;
  margin: 3rem 0 0 0;
}
.sp-link-list a {
  font-size: 1.6rem;
  border-radius: 60px;
  color: #fff;
  background: #000;
  display: block;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1.2rem 0;
}
.sp-link-list a:hover {
  background: #fff;
  outline: 2px solid #000;
  color: #000;
}
@media screen and (min-width: 960px) {
  .sp-link-list {
    display: none;
  }
}

.sp-instructor-item {
  display: block;
  margin: 0 auto 3rem auto;
  width: 250px;
}
@media screen and (min-width: 960px) {
  .sp-instructor-item {
    display: none;
  }
}

.compare {
  background-color: #ffffff;
  background-image: url("https://www.transparenttextures.com/patterns/worn-dots.png");
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1rem 10rem 1rem;
}
.compare-inner h3 {
  text-align: center;
  font-size: 3rem;
  color: #000;
  letter-spacing: 0.34rem;
  font-weight: 800;
  border: 3px solid #000;
  padding: 1rem;
}
.compare-inner img {
  margin: 4rem 0 0 0;
}
@media screen and (min-width: 740px) {
  .compare-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 1rem 18rem 1rem;
  }
  .compare-inner h3 {
    text-align: center;
    font-size: 4.9rem;
    color: #000;
    letter-spacing: 0.34rem;
    font-weight: 800;
    border: 3px solid #000;
    padding: 1rem;
  }
  .compare-inner img {
    margin: 8rem 0 0 0;
  }
}

.instructor-message {
  background: #F2F2EF;
}

.instructor-message-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 10rem 1rem 5rem 1rem;
  position: relative;
}
.instructor-message-inner h2 {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
  background: #1B425C;
  width: 85%;
  font-weight: 700;
  letter-spacing: 0.25rem;
}
.instructor-message-inner h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #1B425C;
}
@media screen and (min-width: 740px) {
  .instructor-message-inner {
    padding: 12rem 1rem 8rem 1rem;
  }
  .instructor-message-inner h2 {
    font-size: 2.8rem;
    width: 95%;
  }
  .instructor-message-inner h2::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #1B425C;
  }
}

.instructor-message-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 3rem 0;
}
.instructor-message-wrap img {
  max-width: 90px;
  margin: 0 1.5rem 0 0;
}
@media screen and (min-width: 740px) {
  .instructor-message-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 8rem 0;
  }
  .instructor-message-wrap img {
    max-width: 200px;
    margin: 0 5rem 0 0;
  }
}

.instructor-message-text {
  padding: 1.5rem;
  background: #fff;
  border: 3px solid #1B425C;
}
.instructor-message-text h3 {
  font-size: 1.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  color: #1B425C;
  margin: 0 0 2rem 0;
}
.instructor-message-text ul {
  margin: 0 0 2rem 0;
}
.instructor-message-text ul li {
  letter-spacing: 0.25rem;
  font-size: 1.8rem;
  color: #1B425C;
  margin: 0 0 2rem 0;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.instructor-message-text ul li:last-child {
  margin: 0;
}
.instructor-message-text ul li::before {
  content: "";
  display: block;
  margin: 0 0.5rem 0rem 0;
  flex: 0 0 auto;
  background: url("../new-img2025/check-icon.svg") no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.instructor-message-text p {
  font-size: 1.4rem;
  color: #1B425C;
  letter-spacing: 0.18rem;
  line-height: 2.7rem;
  font-weight: 500;
}
@media screen and (min-width: 740px) {
  .instructor-message-text {
    padding: 4rem;
    background: #fff;
    border: 3px solid #1B425C;
  }
  .instructor-message-text h3 {
    font-size: 2.8rem;
    line-height: 5rem;
    font-weight: 700;
    color: #1B425C;
    margin: 0 0 4rem 0;
  }
  .instructor-message-text ul {
    margin: 0 0 3rem 0;
  }
  .instructor-message-text ul li {
    letter-spacing: 0.25rem;
    font-size: 2.4rem;
    color: #1B425C;
    margin: 0 0 2rem 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .instructor-message-text ul li:last-child {
    margin: 0;
  }
  .instructor-message-text ul li::before {
    content: "";
    display: block;
    margin: 0 0.5rem 0rem 0;
    flex: 0 0 auto;
    background: url("../new-img2025/check-icon.svg") no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
  }
  .instructor-message-text p {
    font-size: 1.6rem;
    color: #1B425C;
    letter-spacing: 0.18rem;
    line-height: 3.4rem;
    font-weight: 500;
  }
}

.offer-message {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 2rem;
  background-color: #fff;
  --x-gradient: linear-gradient(90deg, #1B425C 0 20px, transparent 0 calc(100% - 20px), #1B425C calc(100% - 20px));
  --y-gradient: linear-gradient(#1B425C 0 20px, transparent 0 calc(100% - 20px), #1B425C calc(100% - 20px));
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
  background-position: top, right, bottom, left;
  margin: 0 auto;
  border: 1px solid #1B425C;
}
.offer-message img {
  display: none;
}
@media screen and (min-width: 740px) {
  .offer-message {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 4rem;
    background-color: #fff;
    --x-gradient: linear-gradient(90deg, #1B425C 0 20px, transparent 0 calc(100% - 20px), #1B425C calc(100% - 20px));
    --y-gradient: linear-gradient(#1B425C 0 20px, transparent 0 calc(100% - 20px), #1B425C calc(100% - 20px));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
    background-position: top, right, bottom, left;
    border: 1px solid #1B425C;
  }
  .offer-message img {
    display: block;
    margin: 0 4rem 0 0;
    max-width: 280px;
    object-fit: cover;
  }
}

.offer-message-text h3 {
  background: #1B425C;
  font-size: 1.8rem;
  color: #fff;
  line-height: 3.4rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem;
  letter-spacing: 0.2rem;
  margin: 0 0 2rem 0;
}
.offer-message-text p {
  color: #1B425C;
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
  font-weight: 600;
  line-height: 2.7rem;
  margin: 0 0 2rem 0;
}
@media screen and (min-width: 740px) {
  .offer-message-text p {
    color: #1B425C;
    font-size: 1.6rem;
    letter-spacing: 0.18rem;
    line-height: 2.7rem;
    margin: 0 0 2rem 0;
  }
}
.offer-message-text a {
  font-size: 1.6rem;
  background: #000;
  display: block;
  padding: 1.5rem;
  text-align: center;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
}
.offer-message-text a:hover {
  background: #fff;
  outline: 2px solid #000;
  color: #000;
}

.new-method {
  background: #F2F2EF;
}

.new-method-inner {
  padding: 8rem 1rem 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 740px) {
  .new-method-inner {
    padding: 10rem 1rem 5rem 1rem;
  }
}
.new-method-inner h3 {
  font-size: 1.8rem;
  text-align: left;
  letter-spacing: 0.25rem;
  line-height: 3.4rem;
  font-weight: 700;
  color: #000;
  position: relative;
  margin: 0 0 6rem 0;
}
.new-method-inner h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #0090D9 transparent transparent transparent;
  border-width: 5rem 5rem 0 0;
}
.new-method-inner h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 0;
  height: 0;
  border-style: solid;
  rotate: 180deg;
  border-color: #0090D9 transparent transparent transparent;
  border-width: 5rem 5rem 0 0;
}
@media screen and (min-width: 740px) {
  .new-method-inner h3 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 0.25rem;
    line-height: 4.7rem;
  }
  .new-method-inner h3::after {
    border-width: 10rem 5rem 0 0;
  }
  .new-method-inner h3::before {
    border-width: 10rem 5rem 0 0;
  }
}

.new-point-feed {
  border-top: 5px dotted #000;
  padding: 10rem 1rem;
}
@media screen and (min-width: 740px) {
  .new-point-feed {
    border-top: 5px dotted #000;
    padding: 12rem 1rem 10rem 1rem;
  }
}
.new-point-feed .feed-item {
  padding: 40px 20px 90px 20px;
  position: relative;
}
.new-point-feed .feed-item h3 {
  font-weight: 600;
  color: #000;
  font-size: 2.4rem;
  line-height: 4.8rem;
  margin: 0 0 2rem 0;
  min-height: auto;
}
.new-point-feed .feed-item h3 span {
  font-size: 2.8rem;
  font-weight: 800;
}
.new-point-feed .feed-item p {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
}
.new-point-feed .feed-item p span {
  font-size: 1.8rem;
  display: block;
  margin: 0 0 1rem 0;
  font-weight: bold;
}
.new-point-feed .feed-item a {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  width: 280px;
  font-size: 1.6rem;
  background: #000;
  border-radius: 5px;
  padding: 2rem 1rem;
}
.new-point-feed .feed-item a:hover {
  background: #fff;
  color: #000;
}
@media screen and (min-width: 740px) {
  .new-point-feed .feed-item a {
    width: 300px;
  }
}

.modal-wrap p {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin: 0 0 2rem 0;
}

.new-ceo-message h2 span {
  font-size: 2.4rem !important;
}
@media screen and (min-width: 740px) {
  .new-ceo-message h2 span {
    font-size: 3.4rem !important;
  }
}

.new-clients {
  margin: 30px auto !important;
}

.new-performance-list {
  font-size: 1.6rem;
  margin-top: 3rem !important;
  margin-bottom: 0rem;
}
@media screen and (min-width: 740px) {
  .new-performance-list {
    font-size: 1.6rem;
    margin-top: 6rem !important;
    margin-bottom: 4rem;
  }
}
.new-performance-list ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
.new-performance-list ul li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 1rem 0 0;
  background: url("../new-img2025/check-icon-black.svg") no-repeat;
  background-size: contain;
  flex: 0 0 auto;
}

.new-ceo-message {
  background: #1B425C;
  border-bottom: 5px solid #000;
}

.new-ceo-message-inner {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.new-ceo-message-inner img {
  max-width: 430px;
  margin: 0 0rem 4rem 0;
}
@media screen and (min-width: 740px) {
  .new-ceo-message-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8rem 1rem 9rem 1rem;
  }
  .new-ceo-message-inner img {
    max-width: 430px;
    margin: 0 8rem 0 0;
  }
}

.slick-next {
  z-index: 5;
}

.slick-prev {
  z-index: 5;
}

.new-ceo-message-text h3 {
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
  border: 3px solid #fff;
  text-align: center;
  padding: 1rem;
  margin: 0 0 2rem 0;
}
.new-ceo-message-text p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  margin: 0 0 1.5rem 0;
}
@media screen and (min-width: 740px) {
  .new-ceo-message-text h3 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: bold;
    border: 3px solid #fff;
    text-align: center;
    padding: 1rem;
    margin: 0 0 3rem 0;
  }
  .new-ceo-message-text p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 3rem;
    letter-spacing: 0.2rem;
    margin: 0 0 1.5rem 0;
  }
}

.ceo-new-profile {
  padding: 5rem 0;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile {
    padding: 10rem 0 8rem 0;
  }
}

.ceo-new-profile-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.ceo-new-profile-inner h2 {
  width: 80%;
  text-align: center;
  padding: 1rem;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  background: #000;
  color: #fff;
  position: absolute;
  font-weight: bold;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile-inner h2 {
    width: 95%;
    text-align: center;
    padding: 2rem 1rem;
    top: -145px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: #000;
    color: #fff;
    position: absolute;
    font-weight: bold;
  }
}

.ceo-new-profile-wrap {
  display: block;
}
.ceo-new-profile-wrap img {
  display: block;
  width: 250px;
  object-fit: contain;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ceo-new-profile-wrap img {
    display: block;
    width: 250px;
    object-fit: contain;
    margin: 0 5rem 0 0;
  }
}

.ceo-new-profile-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 1.5rem 0;
  border-bottom: 3px dotted #000;
  padding: 0 0 2rem 0;
}
.ceo-new-profile-item h3 span {
  display: block;
  margin: 0.5rem 0 0 0rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile-item h3 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 2rem 0;
    border-bottom: 3px dotted #000;
    padding: 0 0 2rem 0;
  }
  .ceo-new-profile-item h3 span {
    display: inline-block;
    margin: 0 0 0 2rem;
    font-size: 1.6rem;
  }
}
.ceo-new-profile-item p {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  margin: 0 0 5rem 0;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile-item p {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    line-height: 3rem;
    margin: 0 0 6rem 0;
  }
}
.ceo-new-profile-item ul {
  background: #F4F4F4;
  padding: 6rem 2rem 3rem 2rem;
  position: relative;
}
.ceo-new-profile-item ul li {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
  display: flex;
  align-items: center;
}
.ceo-new-profile-item ul li::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 12px;
  height: 5px;
  background: #0090D9;
  margin: 0 1.5rem 0 0;
}
.ceo-new-profile-item ul li:last-child {
  margin: 0;
}
.ceo-new-profile-item ul::before {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: "ボイストレーナーとして下記のツアーに帯同";
  font-size: 1.4rem;
  background: #0090D9;
  width: 80%;
  display: block;
  text-align: center;
  padding: 2rem;
  font-weight: bold;
  color: #fff;
}
.ceo-new-profile-item ul::after {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid #0090D9;
}
@media screen and (min-width: 740px) {
  .ceo-new-profile-item ul {
    background: #F4F4F4;
    padding: 7rem 4rem 4rem 4rem;
    position: relative;
  }
  .ceo-new-profile-item ul li {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
  }
  .ceo-new-profile-item ul li::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 5px;
    background: #0090D9;
    margin: 0 1.5rem 0 0;
  }
  .ceo-new-profile-item ul li:last-child {
    margin: 0;
  }
  .ceo-new-profile-item ul::before {
    position: absolute;
    top: -30px;
    content: "ボイストレーナーとして下記のツアーに帯同";
    font-size: 1.8rem;
    background: #0090D9;
    width: 80%;
    display: block;
    text-align: center;
    padding: 2rem;
    font-weight: bold;
    color: #fff;
  }
  .ceo-new-profile-item ul::after {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 20px solid #0090D9;
  }
}

.performance {
  padding: 4rem 0 8rem 0 !important;
}
@media screen and (min-width: 740px) {
  .performance {
    padding: 10rem 0 14rem 0 !important;
  }
}

.performance-inner {
  padding: 0 1rem !important;
}

.testimonial {
  background: #F2F2EF;
}

.testimonial-inner {
  padding: 8rem 1rem 4rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.testimonial-inner h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
  width: 80%;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  background: #1B425C;
  padding: 1.5rem;
}
.testimonial-inner h2::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%);
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 15px solid #1B425C;
}
.testimonial-inner a {
  max-width: 410px;
  display: block;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.25rem;
  border-radius: 60px;
  color: #fff;
  background: #000;
  margin: 3rem auto 0 auto;
}
.testimonial-inner a:hover {
  background: none;
  outline: 2px solid #000;
  color: #000;
}
@media screen and (min-width: 960px) {
  .testimonial-inner {
    padding: 12rem 1rem 8rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .testimonial-inner h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    width: 90%;
    text-align: center;
    font-size: 2.8rem;
    color: #fff;
    font-weight: 600;
    background: #1B425C;
    padding: 3rem 2rem;
  }
  .testimonial-inner h2::after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%);
    content: "";
    display: block;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 20px solid #1B425C;
  }
  .testimonial-inner a {
    max-width: 410px;
    display: block;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.25rem;
    border-radius: 60px;
    color: #fff;
    background: #000;
    margin: 6rem auto 0 auto;
  }
  .testimonial-inner a:hover {
    background: none;
    outline: 2px solid #000;
    color: #000;
  }
}

.testimonial-wrap {
  display: block;
}
@media screen and (min-width: 960px) {
  .testimonial-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}

.testimonial-item {
  width: auto;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0.7rem 0.7rem #E8E8E8;
  margin: 0 auto 2rem auto;
}
.testimonial-item:last-child {
  margin: 0 auto;
}
.testimonial-item p {
  font-size: 1.4rem;
  line-height: 2.7rem;
}
@media screen and (min-width: 740px) {
  .testimonial-item {
    width: auto;
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0.7rem 0.7rem #E8E8E8;
    margin: 0 auto 2rem auto;
  }
  .testimonial-item:last-child {
    margin: 0 auto;
  }
  .testimonial-item p {
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
}
@media screen and (min-width: 960px) {
  .testimonial-item {
    width: 39%;
    background: #fff;
    padding: 4rem;
    border-radius: 10px;
    box-shadow: 0.7rem 0.7rem #E8E8E8;
    margin: 0;
  }
  .testimonial-item p {
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
}

.testimonial-title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #000;
  padding: 0 0 1.5rem 0;
  margin: 0 0 1.8rem 0;
}
.testimonial-title h3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  line-height: 2.7rem;
}
@media screen and (min-width: 740px) {
  .testimonial-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid #000;
    padding: 0 0 1.5rem 0;
    margin: 0 0 1.8rem 0;
  }
  .testimonial-title h3 {
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    line-height: 3rem;
  }
}

.testmonial-profile {
  width: 70px;
  margin: 0 2rem 0 0;
}
.testmonial-profile img {
  object-fit: contain;
}
.testmonial-profile p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin: 0.5rem 0 0 0;
}
@media screen and (min-width: 740px) {
  .testmonial-profile {
    width: 90px;
    margin: 0 2rem 0 0;
  }
  .testmonial-profile img {
    object-fit: contain;
  }
  .testmonial-profile p {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin: 0.5rem 0 0 0;
  }
}

.new-faq {
  background-color: #ffffff;
  background-image: url(https://www.transparenttextures.com/patterns/worn-dots.png);
}
.new-faq h2 span {
  font-size: 2.4rem !important;
}
@media screen and (min-width: 740px) {
  .new-faq h2 span {
    font-size: 3.4rem !important;
  }
}

.new-faq-inner {
  padding: 0rem 1rem 3rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.new-faq-inner h3 {
  font-size: 1.8rem;
  width: 85%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
  font-weight: bold;
  margin: 5rem auto 3rem auto;
  position: relative;
}
.new-faq-inner a {
  max-width: 410px;
  display: block;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.25rem;
  border-radius: 60px;
  color: #000;
  border: 2px solid #000;
  background: #fff;
  margin: 3rem auto 0 auto;
}
.new-faq-inner a:hover {
  background: #000;
  color: #fff;
}
@media screen and (min-width: 740px) {
  .new-faq-inner {
    padding: 2rem 1rem 5rem 1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .new-faq-inner h3 {
    font-size: 2.2rem;
    width: 400px;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: bold;
    margin: 5rem auto 3rem auto;
    position: relative;
  }
  .new-faq-inner a {
    max-width: 410px;
    display: block;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.25rem;
    border-radius: 60px;
    color: #000;
    border: 2px solid #000;
    background: #fff;
    margin: 5rem auto 0 auto;
  }
  .new-faq-inner a:hover {
    background: #000;
    color: #fff;
  }
}

.faq-item {
  margin: 0 0 2rem 0;
}

.faq-question {
  cursor: pointer;
  background: #fff;
  border: 2px solid #0090D9;
  position: relative;
  margin: 0 0 2rem 0;
}
.faq-question p {
  font-size: 1.6rem;
  letter-spacing: 0.3rem;
  line-height: 2.7rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem 4rem 2rem 8rem;
}
.faq-question p span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 2rem;
  background: #0090D9;
  color: #fff;
  padding: 1rem 2rem;
  margin: 0 3rem 0 0;
}
.faq-question::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 15px;
  height: 15px;
  background: url("../new-img2025/arrow.svg") no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (min-width: 740px) {
  .faq-question {
    cursor: pointer;
    background: #fff;
    border: 2px solid #0090D9;
    position: relative;
    margin: 0 0 2rem 0;
  }
  .faq-question p {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
    line-height: 2.7rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 3rem 2rem 8rem;
  }
  .faq-question p span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    background: #0090D9;
    color: #fff;
    padding: 1rem 2rem;
    margin: 0 3rem 0 0;
  }
  .faq-question::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    width: 20px;
    height: 20px;
    background: url("../new-img2025/arrow.svg") no-repeat;
    background-size: contain;
    display: block;
  }
}

.faq-answer {
  display: none;
  cursor: pointer;
  background: #fff;
  border: 2px solid #1B425C;
  position: relative;
}
.faq-answer p {
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  line-height: 2.4rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem 2rem 1.5rem 8rem;
}
.faq-answer p span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.4rem;
  background: #1B425C;
  color: #fff;
  padding: 1rem 2rem;
  margin: 0 3rem 0 0;
}
@media screen and (min-width: 740px) {
  .faq-answer {
    display: none;
    cursor: pointer;
    background: #fff;
    border: 2px solid #1B425C;
    position: relative;
  }
  .faq-answer p {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    line-height: 2.7rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 3rem 2rem 8rem;
  }
  .faq-answer p span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.4rem;
    background: #1B425C;
    color: #fff;
    padding: 1rem 2rem;
    margin: 0 3rem 0 0;
  }
}

.active .faq-answer {
  display: block;
}/*# sourceMappingURL=option-nagoya2025.css.map */</pre></body></html>