@charset "UTF-8";
/*====================
 * [Suggested order by mozilla.org]
 * z-index
 * display
 * list-style
 * position
 * float
 * clear
 *
 * width
 * height
 * margin
 * padding
 * border
 *
 * background
 * color
 *
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *====================*/
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: bold;
  font-weight: 700;
  src: url("font/NotoSansJP-Bold.woff") format("woff");
}
@-webkit-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 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);
  }
}
@-webkit-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);
  }
}
@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;
  box-sizing: border-box;
  margin: auto;
  text-align: left;
  color: #292522;
  max-width: 1000px;
  max-height: 80vh;
  border-radius: 0px;
  background: #e9e4e3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}
.modaal-container img {
  float: left;
  margin: 0px 30px 20px 0px;
  width: 40%;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 640px) {
  .modaal-container img {
    float: none;
    width: 100%;
    margin: 0px 0px 20px 0px;
  }
}

.modaal-close {
  position: fixed;
  right: 10px;
  top: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: #292522;
  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: #292522;
}
.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;
}
@media screen and (max-width: 640px) {
  .modaal-content-container {
    padding: 20px;
  }
}

.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;
  }
}
@-webkit-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;
  -webkit-animation: instaReveal 1s linear forwards;
          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);
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.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 {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-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) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

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

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

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-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) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

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

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

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-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) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

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

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

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

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

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

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* カスタマイズ  */
.slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: #292522;
  outline: none;
  border: none;
  text-indent: -9999px;
}
.slick-arrow:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.slick-next {
  right: -8px;
  z-index: 10;
}
.slick-next:before {
  transform: rotate(-135deg);
  right: 14px;
}

.slick-prev {
  left: -8px;
  z-index: 11;
}
.slick-prev:before {
  transform: rotate(45deg);
  left: 14px;
}

/*====================
 *   Base
 *====================*/
body {
  color: #292522;
  font-family: "NotoSansJP", "Noto Sans", "Noto Sans CJK JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 16px;
  line-height: 1.9rem;
  text-align: center;
}

html, body {
  height: 100%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  p {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
}

dl,
dt,
dd,
ul,
nav,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  border: none;
  outline: none;
}
a:link, a:visited {
  color: #eb4009;
  text-decoration: none;
}
a:hover, a:active {
  color: #fc7e7e;
  text-decoration: none;
}

a img {
  border-style: none;
}

em {
  font-weight: 700;
  font-style: normal;
}

i {
  color: #999999;
}

*:focus {
  border: none;
}

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

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

section {
  position: relative;
  /*p:last-child {
    margin-bottom: 0px;
  }*/
}
section:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

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

/* common */
.wd760 {
  position: relative;
  width: 760px;
  margin: 0px auto;
}
.wd760:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 780px) {
  .wd760 {
    width: auto;
    margin: 0px 10px;
  }
}

.wd1000 {
  position: relative;
  width: 1000px;
  margin: 0px auto;
}
.wd1000:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 1020px) {
  .wd1000 {
    width: auto;
    margin: 0px 10px;
  }
}

.wd1200 {
  position: relative;
  width: 100%;
  padding: 0px 10px;
  box-sizing: border-box;
}
.wd1200:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 1200px) {
  .wd1200 {
    width: auto;
    padding: 0px;
  }
}

.wd1200header {
  padding: 0px 0px 0px 10px;
}

.grayBg {
  background: #e9e4e3;
}

.gradationBg {
  background: linear-gradient(#e9e4e3 0%, #fff 400px);
}

.whiteBg {
  background: #fff;
}

.leftColumn {
  float: left;
}

.rightColumn {
  float: right;
}

.alCent {
  text-align: center;
}

.alRight {
  text-align: right;
}

.alLeft {
  text-align: left;
}

.wrap {
  position: relative;
}
.wrap:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.displayNone {
  display: none;
}

.tonicTxt {
  color: #4002ab;
  font-weight: 700;
}

.subDominantTxt {
  color: #17153d;
  font-weight: 700;
}

.dominantTxt {
  color: #eb4009;
  font-weight: 700;
}

.greenTxt {
  color: #02d467;
  font-weight: 700;
}

.grayTxt {
  color: #666;
}

.whiteTxt {
  color: #fff;
}

.shadowTxt {
  text-shadow: rgba(0, 0, 0, 0.8) 0px 0px 8px;
}

strong {
  color: #17153d;
  background: linear-gradient(transparent 60%, #ffff66 60%);
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 640px) {
  .mb10 {
    margin-bottom: 20px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 640px) {
  .mb20 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 640px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 640px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

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

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

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

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

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 640px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

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

.sp-hide {
  display: block;
}
@media screen and (max-width: 640px) {
  .sp-hide {
    display: none;
  }
}

.pc-hide {
  display: none;
}
@media screen and (max-width: 640px) {
  .pc-hide {
    display: block;
  }
}

.ph-left:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.ph-left img {
  float: left;
  width: 42%;
  margin-right: 4%;
}
@media screen and (max-width: 640px) {
  .ph-left img {
    float: none;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 20px;
  }
}

.ph-right:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.ph-right img {
  float: right;
  width: 42%;
  margin-left: 4%;
}
@media screen and (max-width: 640px) {
  .ph-right img {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0%;
  }
}

/* youtube */
.youtube-outer {
  width: 100%;
  margin: 0px auto 30px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .youtube-outer {
    display: block;
    width: 100%;
    margin: 20px 0px;
  }
}

.youtube {
  position: relative;
  width: 48%;
  padding-top: 28%;
}
@media screen and (max-width: 640px) {
  .youtube {
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
  }
}

.youtube-full {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (max-width: 640px) {
  .youtube-full {
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 20px;
  }
}

.youtube iframe, .youtube-full iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.anchor {
  position: absolute;
  top: 0px;
  left: 0px;
}
.flexBox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 50px;
}
.flexBox .flexBox-inner {
  position: relative;
  box-sizing: border-box;
  flex: 1;
}
.flexBox .flexBox-inner:first-child {
  margin-left: 0px;
}
@media screen and (max-width: 640px) {
  .flexBox {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .flexBox .flexBox-inner {
    margin: 0px 0px 10px 0px;
  }
}

.br-PC {
  display: block;
}
@media screen and (max-width: 640px) {
  .br-PC {
    display: none;
  }
}

.br-SP {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-SP {
    display: block;
  }
}

.discList {
  width: auto;
  margin: 0px 0px 40px 1.8rem;
  box-sizing: border-box;
}
.discList li {
  list-style-type: disc;
  list-style-position: outside;
  margin: 0 0 16px 1.6rem;
  line-height: 20px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .discList {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
  .discList li {
    margin-bottom: 8px;
  }
}

.fz16 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8rem;
}
@media screen and (max-width: 640px) {
  .fz16 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

.fz18 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .fz18 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}

.fz20 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .fz20 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.fz24 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.4rem;
}

.fz28 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3.4rem;
}
@media screen and (max-width: 640px) {
  .fz28 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

.fz40 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3rem;
}

.headerArea {
  position: fixed;
  z-index: 200;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  margin: 0px auto;
  background: #fff;
  border-bottom: 1px solid #333;
  /*@include mq($maxWidth1) {
    height: 28px;
    border-bottom: none;
  }*/
}
@media screen and (max-width: 780px) {
  .headerArea {
    display: none;
    /*opacity: 0;
    transition: 0.7s;*/
  }
}

.headerArea-siteTitle {
  float: left;
  width: 256px;
  height: 29px;
  /*@include mq($maxWidth0) {
    display: none;
  }*/
}
.headerArea-siteTitle a {
  display: block;
  width: 256px;
  height: 29px;
  background: url(../images/musicalTheaterTitle.png) #fff no-repeat left top;
  background-size: 256px auto;
  margin-top: 12px;
  text-indent: -9999px;
}

.headerArea-phoneNumber {
  float: left;
  display: inline-block;
  height: 28px;
  border: 1px solid #4002ab;
  box-sizing: border-box;
  color: #fff !important;
  text-align: left;
  line-height: 26px;
}
.headerArea-phoneNumber span {
  display: inline-block;
  color: #fff;
  background: #4002ab;
  padding: 0px 10px 0px 9px;
  font-size: 15px;
  font-size: 0.9375rem;
  vertical-align: top;
}
.headerArea-phoneNumber a {
  color: #fff !important;
}
@media screen and (max-width: 1200px) {
  .headerArea-phoneNumber {
    float: none;
    width: 100%;
    height: 30px;
    background: #17153d;
    border: none;
    color: #fff;
    text-align: center;
    line-height: 30px;
  }
  .headerArea-phoneNumber span {
    padding: 0px;
    background: #17153d;
  }
}
@media screen and (max-width: 640px) {
  .headerArea-phoneNumber {
    float: none;
    width: 100%;
  }
}

.headerArea-phoneNumber-num {
  display: inline-block;
  height: 26px;
  padding: 0px 8px 0px 10px;
  color: #000;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 1200px) {
  .headerArea-phoneNumber-num {
    padding: 0px 0px 0px 8px;
    color: #fff;
  }
}
@media screen and (max-width: 440px) {
  .headerArea-phoneNumber-num {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
  }
}

.headerArea-phoneNumber-time {
  display: inline-block;
  padding-right: 10px;
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 1200px) {
  .headerArea-phoneNumber-time {
    padding: 0px 0px 0px 10px;
    color: #fff;
  }
}
@media screen and (max-width: 440px) {
  .headerArea-phoneNumber-time {
    padding: 0px 0px 0px 5px;
    color: #fff;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.headerArea-rightColumn {
  display: inline-block;
  float: right;
  padding-top: 0px;
  /*@include mq($width) {
    float: none;
  }
  @include mq($maxWidth0) {
    width: 100%;
    padding: 0px;
  }*/
}
.headerArea-rightColumn:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.headerArea-rightColumn-wrap {
  float: left;
}
@media screen and (max-width: 1200px) {
  .headerArea-rightColumn-wrap {
    float: none;
    width: 100%;
  }
}

.headerArea-mailButton {
  float: left;
  display: inline-block;
  /*@include mq($maxWidth0) {
    float: left;
    width: 50%;
    margin: 0px;
    a {
      text-align: center;
      padding: 0px;
    }
  }
  @include mq($maxWidth4) {
    .SPdispNone {
      display: none;
    }
    .PCdispNone {
      display: inline;
    }
  }*/
}
.headerArea-mailButton a {
  display: block;
  height: 50px;
  padding: 0px 20px;
  box-sizing: border-box;
  background: #1a73e8;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: left;
  line-height: 50px;
  transition: 0.5s;
  vertical-align: middle;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
.headerArea-mailButton a:hover {
  background: #4994f7;
}
.headerArea-mailButton a img {
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -4px;
}
.headerArea-mailButton .PCdispNone {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.headerArea-lineButton {
  float: left;
  display: inline-block;
  margin-right: 10px;
}
.headerArea-lineButton a {
  display: block;
  height: 28px;
  padding: 0px 10px;
  box-sizing: border-box;
  background: #00b900;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: left;
  line-height: 28px;
  transition: 0.5s;
}
.headerArea-lineButton a:hover {
  background: #02c902;
}
.headerArea-lineButton a img {
  width: 60px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -4px;
}
.headerArea-lineButton .PCdispNone {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .headerArea-lineButton {
    float: left;
    width: 50%;
    margin: 0px;
  }
  .headerArea-lineButton a {
    text-align: center;
    padding: 0px;
  }
}
@media screen and (max-width: 440px) {
  .headerArea-lineButton .SPdispNone {
    display: none;
  }
  .headerArea-lineButton .PCdispNone {
    display: inline;
  }
}

.fixed {
  position: fixed;
}

.mainVisual {
  position: relative;
  margin-top: 50px;
  text-align: center;
  box-sizing: border-box;
  background: #000;
  /*@include mq($maxWidth1) {
    aspect-ratio: 16/11;
  }
  @include mq(920px) {
    aspect-ratio: 16/12;
  }
  @include mq($maxWidth2) {
    aspect-ratio: 16/13;
  }
  @include mq($maxWidth3) {
    aspect-ratio: 40/65;
  }*/
}
@media screen and (max-width: 1200px) {
  .mainVisual {
    margin-top: 0px;
  }
}
@media screen and (max-width: 900px) {
  .mainVisual {
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 640px) {
  .mainVisual {
    padding-bottom: 0;
    border-bottom: 10px solid #17153d;
  }
}

.mainVisualVisual {
  background: url(../images/secTitle02Bg.png) #23015e repeat-x center 59px;
  background-size: auto 710px;
}

.mainVisualLogo {
  min-height: 42px;
  padding: 8px 16px;
  background: #292522;
}
.mainVisualLogo img {
  width: 500px;
  margin: 0px auto;
  vertical-align: text-bottom;
}
@media screen and (max-width: 640px) {
  .mainVisualLogo {
    min-height: 32px;
  }
  .mainVisualLogo img {
    width: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
  }
}

.mainVisualPC {
  display: block;
  width: 1200px;
  margin: 0px auto;
}
@media screen and (max-width: 1200px) {
  .mainVisualPC {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .mainVisualPC {
    display: none;
  }
}

.mainVisualSP {
  display: none;
}
@media screen and (max-width: 640px) {
  .mainVisualSP {
    display: block;
  }
}

.secTitle01 {
  margin-bottom: 40px;
  border-top: 6px solid #4002ab;
  border-bottom: 6px solid #17153d;
  background: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .secTitle01 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.secTitle01 div {
  position: relative;
  display: inline-block;
  margin: 0px auto;
  padding: 60px 0px 40px 0px;
}
.secTitle01 div:before, .secTitle01 div:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 32px;
  bottom: auto;
  width: 14px;
  height: 14px;
  border-right: 4px solid #4002ab;
  border-bottom: 4px solid #4002ab;
  transform: rotate(45deg);
}
.secTitle01 div:after {
  top: 22px;
}
@media screen and (max-width: 640px) {
  .secTitle01 {
    margin-bottom: 20px;
  }
  .secTitle01 div {
    display: block;
    margin: 0px 32px;
    padding: 20px 0px;
    border-left: 1px solid #e8e8e8;
    text-align: left;
    box-sizing: border-box;
  }
  .secTitle01 div:before, .secTitle01 div:after {
    top: 0px;
    bottom: 0px;
    right: auto;
    left: -22px;
    transform: rotate(-45deg);
    border-right: 2px solid #4002ab;
    border-bottom: 2px solid #4002ab;
  }
  .secTitle01 div:after {
    left: -28px;
  }
}

.secTitle02 {
  padding: 40px 10px 50px 10px;
  background: url(../images/secTitleBg.png) #fff repeat-x center bottom;
  background-size: 1006px auto;
  box-sizing: border-box;
  border-top: 6px solid #4002ab;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .secTitle02 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .secTitle02 {
    padding: 20px 16px 20px 16px;
  }
}

.secTitle03 {
  position: relative;
  padding: 40px 20px;
  background: #17153d;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .secTitle03 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.secTitle03 span {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3.4rem;
}
@media screen and (max-width: 640px) {
  .secTitle03 span {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
.secTitle03:before {
  display: block;
  position: absolute;
  content: "";
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
}
.secTitle03:after {
  display: block;
  position: absolute;
  content: "";
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
}
@media screen and (max-width: 640px) {
  .secTitle03 {
    padding: 20px;
  }
  .secTitle03:before {
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  .secTitle03:after {
    bottom: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.secTitle03-white {
  background: #fff;
  color: #17153d;
}
.secTitle03-white:before {
  border-top: 4px solid #17153d;
  border-left: 4px solid #17153d;
}
.secTitle03-white:after {
  border-bottom: 4px solid #17153d;
  border-right: 4px solid #17153d;
}
@media screen and (max-width: 640px) {
  .secTitle03-white:before {
    border-top: 1px solid #17153d;
    border-left: 1px solid #17153d;
  }
  .secTitle03-white:after {
    border-bottom: 1px solid #17153d;
    border-right: 1px solid #17153d;
  }
}

.secTitle03Arrow {
  position: relative;
  padding-top: 40px;
}
.secTitle03Arrow:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: auto;
  width: 0;
  height: 0;
  border-top: 16px solid #17153d;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}
.secTitle03Arrow-white:before {
  border-top: 16px solid #fff;
}

.secSubTitle01 {
  margin-bottom: 40px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.4em;
}
@media screen and (max-width: 640px) {
  .secSubTitle01 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .secSubTitle01 {
    margin-bottom: 20px;
    text-align: left;
  }
  .secSubTitle01 .SPdispNone {
    display: none;
  }
}

.secSubTitle01Inline {
  display: inline-block;
  padding: 0px 6px;
  background: #fff;
  letter-spacing: normal;
}

.secSubTitle01InlineBlk {
  background: #4002ab;
  color: #fff;
}

@media screen and (max-width: 780px) {
  .secSubTitle01InlineSlide {
    display: inline;
    padding: 0px;
    background: transparent;
  }
}

.secSubTitle02 {
  position: relative;
  z-index: auto;
  width: 100%;
  margin-bottom: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .secSubTitle02 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}
.secSubTitle02:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #4002ab;
}
.secSubTitle02 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 2px 8px 4px 8px;
  background: #4002ab;
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3.4rem;
}
@media screen and (max-width: 640px) {
  .secSubTitle02 span {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .secSubTitle02 {
    margin-bottom: 20px;
    letter-spacing: 0rem;
  }
}

.musicalTheaterLogo {
  width: 580px;
  margin-bottom: 12px;
}
@media screen and (max-width: 640px) {
  .musicalTheaterLogo {
    width: 100%;
    margin-bottom: 8px;
  }
}

.greenBg {
  padding: 0px 0px 40px 0px;
  background: #e9e4e3;
  border-top: 6px solid #4002ab;
}
@media screen and (max-width: 640px) {
  .greenBg {
    padding: 0px 0px 20px 0px;
  }
}

.greenBgTitle {
  margin-bottom: 40px;
  position: relative;
  padding: 40px 10px 40px 10px;
  border-bottom: 1px solid #17153d;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .greenBgTitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.greenBgTitle span {
  display: inline-block;
  padding: 0px 4px;
  background: #17153d;
  color: #fff;
}
.greenBgTitle:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: auto;
  bottom: -11px;
  width: 20px;
  height: 20px;
  border-right: 1px solid #17153d;
  border-bottom: 1px solid #17153d;
  background: #e9e4e3;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .greenBgTitle {
    margin-bottom: 30px;
    padding: 20px 16px 20px 16px;
  }
}

.greenBgBox {
  position: relative;
  border: 1px solid #17153d;
  border-top: 3px solid #17153d;
  background: #fff;
  text-align: left;
}
.greenBgBox:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 220px;
  height: 6px;
  background: #17153d;
}
.greenBgBox:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  left: 220px;
  width: 0px;
  height: 0px;
  border-top: 6px solid #17153d;
  border-right: 6px solid transparent;
}
.greenBgBox .greenBgBoxInner,
.greenBgBox .ph-left,
.greenBgBox .ph-right {
  padding: 20px 20px 0px 20px;
}
@media screen and (max-width: 640px) {
  .greenBgBox .greenBgBoxInner,
.greenBgBox .ph-left,
.greenBgBox .ph-right {
    padding: 20px 16px 0px 16px;
  }
  .greenBgBox:before {
    width: 110px;
  }
  .greenBgBox:after {
    left: 110px;
  }
}

.greenBgBoxTitle {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8rem;
  padding: 24px 20px 20px 20px;
  border-bottom: 1px dotted #17153d;
}
@media screen and (max-width: 640px) {
  .greenBgBoxTitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .greenBgBoxTitle {
    padding: 24px 16px 16px 16px;
  }
}

.greenBgBoxWrap {
  margin: 0px 20px 20px 20px;
}
@media screen and (max-width: 640px) {
  .greenBgBoxWrap {
    margin: 0px 16px 16px 16px;
  }
}

.greenBgInnerBox {
  padding-bottom: 20px;
  margin: 0px 20px 20px 20px;
  background: #e9e4e3;
}
.greenBgInnerBox span {
  padding: 4px 12px;
  background: #17153d;
  color: #fff;
}
.greenBgInnerBox p {
  margin: 10px 20px 0px 20px;
}
.greenBgInnerBox ul {
  margin: 0px 20px 20px 20px;
}
@media screen and (max-width: 640px) {
  .greenBgInnerBox {
    margin: 0px 16px 16px 16px;
  }
}

.notice {
  width: 480px;
  padding-left: 1.6rem;
  margin: 0px auto;
  color: #666;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3rem;
  text-indent: -1.6rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .notice {
    width: auto;
  }
}

.borderTopSubDominant {
  border-top: 6px solid #17153d;
}
.firstButton {
  position: absolute;
  top: 79%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .firstButton {
    top: auto;
    bottom: 5.5%;
  }
}
@media screen and (max-width: 640px) {
  .firstButton {
    bottom: auto;
    top: 84%;
  }
}

.firstButtonButton {
  display: block;
  width: 700px;
  margin: 0px auto;
  padding: 8px 0px 18px 0px;
  border-radius: 8px;
  background: #1a73e8;
  color: #fff !important;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
  transition: 0.3s;
}
.firstButtonButton .microCopy {
  display: block;
  width: 300px;
  margin: 0px auto 8px;
  /*background: #fff;
  border-radius: 0px 0px 16px 16px;
  color: $color-cv !important;*/
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}
.firstButtonButton .mainCopy {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 700;
}
.firstButtonButton .mainCopy:after {
  display: block;
  position: absolute;
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  width: 16px;
  height: 16px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
.firstButtonButton:hover {
  background: #4994f7;
}
@media screen and (max-width: 1020px) {
  .firstButtonButton {
    width: 64%;
    padding: 2px 0px 8px 0px;
  }
  .firstButtonButton .microCopy {
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .firstButtonButton .mainCopy {
    padding-right: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .firstButtonButton .mainCopy:after {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 640px) {
  .firstButtonButton {
    width: calc(100% - 20px);
  }
}

.clientCompany {
  background: #333;
  background: linear-gradient(#23015e 0%, #17153d 60%);
  background-size: cover;
  padding: 80px 0px 80px 0px;
}
@media screen and (max-width: 640px) {
  .clientCompany {
    padding: 40px 0px 20px 0px;
  }
}

.clientCompanyTitle {
  position: relative;
  z-index: auto;
  width: 100%;
  margin-bottom: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .clientCompanyTitle {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}
.clientCompanyTitle:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #fff;
}
.clientCompanyTitle span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0px 8px 2px 8px;
  border: 1px solid #fff;
  color: #fff;
  background: #17153d;
}
@media screen and (max-width: 640px) {
  .clientCompanyTitle {
    margin-bottom: 20px;
    letter-spacing: 0rem;
  }
}

.clientCompanyList {
  display: flex;
  margin-right: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.clientCompanyList li {
  position: relative;
  background: #fff;
  width: calc(23% - 8px);
  margin: 0 1% 20px 1%;
  padding: 0px 8px 8px 8px;
  box-sizing: border-box;
  color: #4002ab;
  font-weight: 700;
}
.clientCompanyList li:before {
  display: block;
  position: absolute;
  content: "";
  top: -8px;
  left: 4px;
  width: 100%;
  height: 8px;
  background: #fff;
  transform: skewX(-45deg);
}
.clientCompanyList li:after {
  display: block;
  position: absolute;
  content: "";
  top: -5px;
  right: -8px;
  height: calc(100% + 1px);
  width: 8px;
  background: #fff;
  transform: skewY(-45deg);
}
@media screen and (max-width: 780px) {
  .clientCompanyList {
    justify-content: space-between;
  }
  .clientCompanyList li {
    width: calc(49.5% - 8px);
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .clientCompanyList li {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* ご挨拶 */
.hello {
  padding: 0px 0px 40px 0px;
}
@media screen and (max-width: 640px) {
  .hello {
    padding: 0px 0px 0px 0px;
  }
}

.helloSakurada {
  width: 480px;
  margin: 0px auto 40px auto;
}
@media screen and (max-width: 640px) {
  .helloSakurada {
    width: auto;
    margin-bottom: 20px;
  }
}

.trouble {
  position: relative;
  z-index: auto;
  background: url(../images/troubleBg.jpg) #666 no-repeat center top;
  padding: 40px 0px;
}
.trouble:before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  z-index: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(transparent 0%, #333 60%);
}
@media screen and (max-width: 640px) {
  .trouble {
    background-size: 100% auto;
    padding: 20px 0px;
  }
}

.troubleTitle {
  margin-bottom: 40px;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .troubleTitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.troubleTitle span {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3.4rem;
  line-height: 2rem;
}
@media screen and (max-width: 640px) {
  .troubleTitle span {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .troubleTitle {
    margin-bottom: 20px;
  }
}

.troubleList li {
  position: relative;
  width: calc(100% - 4px);
  margin-bottom: 16px;
  background: #fff;
  box-sizing: border-box;
}
.troubleList li a {
  position: relative;
  display: block;
  line-height: 1.4rem;
  padding: 14px;
  color: #4002ab;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.troubleList li a br {
  display: none;
}
.troubleList li a:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 15px;
  margin: auto;
  width: 20px;
  height: 4px;
  background: #4002ab;
}
.troubleList li a:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 23px;
  margin: auto;
  width: 4px;
  height: 20px;
  background: #4002ab;
}
.troubleList li:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -4px;
  left: 4px;
  width: 100%;
  height: 4px;
  background: #000;
}
.troubleList li:after {
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  right: -4px;
  height: 100%;
  width: 4px;
  background: #000;
}
@media screen and (max-width: 1020px) {
  .troubleList a:before {
    right: 10px;
    width: 15px;
    height: 3px;
  }
  .troubleList a:after {
    right: 16px;
    width: 3px;
    height: 15px;
  }
}
@media screen and (max-width: 640px) {
  .troubleList li {
    margin-bottom: 8px;
  }
  .troubleList li a br {
    display: block;
  }
}

.featureSubTitle {
  position: relative;
  border-top: 6px solid #17153d;
  border-bottom: 1px dotted #17153d;
  background: #fff;
  padding: 40px 0px 30px 0px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .featureSubTitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.featureSubTitle img {
  display: inline-block;
  width: 80px;
  vertical-align: baseline;
}
.featureSubTitle span {
  display: block;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -20px;
  width: 40px;
  height: 40px;
  background: #4002ab;
  margin: auto;
  color: #fff;
  font-size: 28px !important;
  line-height: 40px;
}
@media screen and (max-width: 780px) {
  .featureSubTitle {
    border-top: 0px;
    background-color: transparent;
  }
}
@media screen and (max-width: 640px) {
  .featureSubTitle {
    padding: 20px 0px 30px 0px;
  }
  .featureSubTitle img {
    width: 50px;
  }
}

.featureBg {
  padding: 50px 0px 10px 0px;
  background: linear-gradient(#e9e4e3 0%, #f8f8f8 50%);
}
@media screen and (max-width: 780px) {
  .featureBg {
    background: none;
  }
}
@media screen and (max-width: 640px) {
  .featureBg {
    padding: 32px 0px 0px 0px;
  }
}

.techniqueTitle {
  border-top: 6px solid #4002ab;
  border-bottom: 6px solid #17153d;
  padding: 40px 0px 0px 0px;
  background: url(../images/techniqueTitleBg.png) #fff repeat-x center bottom;
  background-size: 1006px auto;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
  font-weight: 700;
  z-index: 7;
}
@media screen and (max-width: 640px) {
  .techniqueTitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .techniqueTitle {
    padding-top: 20px;
  }
}

.techniqueTitleInner {
  position: relative;
  display: block;
  width: 760px;
  margin: 0px auto;
  padding-bottom: 80px;
}
.techniqueTitleInner:before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  bottom: -63px;
  transform: scale(0.6);
  content: url(../images/techniqueTitlePh01.png);
  z-index: 5;
}
.techniqueTitleInner:after {
  display: block;
  position: absolute;
  content: "";
  right: 0px;
  bottom: -63px;
  transform: scale(0.6);
  content: url(../images/techniqueTitlePh02.png);
  z-index: 6;
}
@media screen and (max-width: 780px) {
  .techniqueTitleInner {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .techniqueTitleInner {
    padding: 0px 10px 30px 10px;
    box-sizing: border-box;
  }
  .techniqueTitleInner:before {
    left: -140px;
    bottom: -90px;
    transform: scale(0.4);
  }
  .techniqueTitleInner:after {
    right: -132px;
    bottom: -90px;
    transform: scale(0.4);
  }
}

.techniqueTitleSquare {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  margin: 12px auto 0px auto;
  background: #4002ab;
  color: #fff;
  font-size: 60px !important;
  line-height: 80px;
}
.techniqueTitleSquare:before {
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  right: -4px;
  width: 4px;
  height: 100%;
  background: #17153d;
}
.techniqueTitleSquare:after {
  display: block;
  position: absolute;
  content: "";
  left: 4px;
  bottom: -4px;
  height: 4px;
  width: 100%;
  background: #17153d;
}
@media screen and (max-width: 640px) {
  .techniqueTitleSquare {
    width: 66px;
    height: 66px;
    font-size: 50px !important;
    line-height: 66px;
  }
}

.techniqueSubTitle {
  position: relative;
  margin-bottom: 40px;
  padding: 8px;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 640px) {
  .techniqueSubTitle {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.techniqueSubTitle span {
  display: inline-block;
  margin: 0px 4px;
  padding: 0px 4px;
  background: #4002ab;
  color: #fff;
}
.techniqueSubTitle:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 8px;
  height: 100%;
  border: 5px solid #4002ab;
  border-right: none;
}
.techniqueSubTitle:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  width: 8px;
  height: 100%;
  border: 5px solid #4002ab;
  border-left: none;
}
@media screen and (max-width: 640px) {
  .techniqueSubTitle {
    margin-bottom: 20px;
    letter-spacing: 0.1rem;
  }
}

.techiqueLead {
  padding: 40px 0px;
  background: linear-gradient(#e9e4e3 0%, #fff 500px);
  border-bottom: 1px solid #17153d;
}
.techiqueLead p {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .techiqueLead {
    padding: 20px 0px;
    background: linear-gradient(#e9e4e3 0%, #fff 600px);
  }
}

.techniqueBox {
  position: relative;
  padding: 60px 0px;
}
.techniqueBox p {
  margin-bottom: 0px !important;
}
.techniqueBox:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: auto;
  width: 20px;
  height: 10px;
  background: #17153d;
}
.techniqueBox:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: auto;
  width: 20px;
  height: 10px;
  background: #17153d;
}
@media screen and (max-width: 640px) {
  .techniqueBox {
    padding: 20px 0px;
  }
}

.techniqueBoxNoBottom:after {
  content: none;
}

/* インストラクター */
.instructorBg {
  padding: 40px 0px;
  border-top: 6px solid #17153d;
  background: #e9e4e3;
}
@media screen and (max-width: 640px) {
  .instructorBg {
    padding: 20px 0px;
  }
}

.intructorTitle {
  position: relative;
  z-index: auto;
  width: 100%;
  margin-bottom: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .intructorTitle {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
}
.intructorTitle:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #17153d;
}
.intructorTitle span {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #17153d;
  padding: 2px 16px 4px 16px;
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.3rem;
}
.intructorTitle span:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -4px;
  left: 4px;
  width: 100%;
  height: 4px;
  background: #4002ab;
}
.intructorTitle span:after {
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  right: -4px;
  height: 100%;
  width: 4px;
  background: #4002ab;
}
@media screen and (max-width: 640px) {
  .intructorTitle {
    margin-bottom: 20px;
    letter-spacing: 0rem;
  }
}

.intructorMain {
  float: left;
  width: 36%;
}
@media screen and (max-width: 780px) {
  .intructorMain {
    float: none;
    width: auto;
    margin: 0px auto 20px auto;
  }
}
@media screen and (max-width: 780px) {
  .intructorMain {
    width: 240px;
  }
}

.instructorProfile {
  float: left;
  width: 64%;
  padding: 16px 0px 0px 6%;
  box-sizing: border-box;
}
@media screen and (max-width: 780px) {
  .instructorProfile {
    float: none;
    width: 100%;
    padding: 0px;
  }
}

.instructorBlack, .instructorPriceBlack {
  display: inline-block;
  background: #17153d;
  margin-bottom: 8px;
  padding: 0px 6px 2px 6px;
  color: #fff;
  line-height: 1.3rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.instructorPriceBlack {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2rem;
}
@media screen and (max-width: 780px) {
  .instructorPriceBlack {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6rem;
  }
}

.instructorPriceList {
  margin-bottom: 40px;
}
.instructorPriceList li {
  margin-bottom: 10px;
  padding: 10px 0px;
  border-bottom: dotted 1px #17153d;
}
.instructorPriceList li:last-child {
  margin-bottom: 0px;
}
.instructorPriceList li span {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .instructorPriceList {
    margin-bottom: 20px;
  }
  .instructorPriceList li {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
  .instructorPriceList li span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.instrucotrHistoryTitle {
  margin-bottom: 8px;
  border-bottom: 1px solid #17153d;
  text-align: left;
}
.instrucotrHistoryTitle span {
  display: inline-block;
  background: #17153d;
  padding: 2px 6px 7px 6px;
  color: #fff;
  line-height: 1.2rem;
  text-align: left;
}

.instructorGreeting {
  border: 1px solid #17153d;
  background: #fff;
  margin-top: 40px;
  padding: 0px 20px 20px 20px;
}
@media screen and (max-width: 640px) {
  .instructorGreeting {
    margin-top: 0px;
    padding: 0px 16px 16px 16px;
  }
}

.instructorGreetingTitle {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 60px;
  background: #17153d;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8rem;
  line-height: 24px;
}
@media screen and (max-width: 640px) {
  .instructorGreetingTitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.instructorGreetingTitle:before {
  display: block;
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 0px;
  top: 0px;
  border-left: 24px solid #fff;
  border-top: 32px solid transparent;
}
.instructorGreetingTitle:after {
  display: block;
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  right: 0px;
  top: 0px;
  border-right: 24px solid #fff;
  border-top: 32px solid transparent;
}

/* 初回レッスン */
.firstLesson {
  padding-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .firstLesson {
    padding-bottom: 30px;
  }
}

.firstLessonList li {
  position: relative;
  width: calc(100% - 4px);
  margin: 30px auto 80px;
  padding: 8px;
  background: #fff;
  font-weight: 700;
  line-height: 1.4rem;
  box-sizing: border-box;
}
.firstLessonList li:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -4px;
  left: 4px;
  width: 100%;
  height: 4px;
  background: #999999;
}
.firstLessonList li:after {
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  right: -4px;
  height: 100%;
  width: 4px;
  background: #999999;
}
.firstLessonList li:last-child {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 640px) {
  .firstLessonList {
    margin-bottom: 40px;
  }
  .firstLessonList li {
    margin-bottom: 70px;
  }
}

.firstLessonListNumb {
  position: relative;
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: -30px;
  bottom: auto;
  width: 30px;
  height: 30px;
  background: #4002ab;
  color: #fff;
  line-height: 30px;
  font-weight: 700;
}
.firstLessonListNumb:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: auto;
  top: -30px;
  width: 0;
  height: 0;
  border-top: 16px solid #17153d;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}
@media screen and (max-width: 640px) {
  .firstLessonListNumb:before {
    top: -25px;
  }
}

.firstLessonListNoArrow:before {
  content: none;
}

.firstLessonPriceTitle {
  margin-bottom: 32px;
  color: #17153d;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .firstLessonPriceTitle {
    margin-bottom: 24px;
  }
}

.firstLessonPrice {
  margin-bottom: 20px;
  color: #eb4009;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

/* 特典 */
.benefitsWrap {
  padding: 40px 0px;
}
.benefitsWrap p {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 780px) {
  .benefitsWrap {
    padding: 20px 30px;
  }
}

/* スタジオ */
.studio {
  padding-bottom: 40px;
}
.studio .greenBgInnerBox {
  margin: 0px auto 40px;
  text-align: center;
}
.studio .greenBgInnerBox p {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .studio {
    padding-bottom: 20px;
  }
  .studio .greenBgInnerBox {
    margin-bottom: 20px;
  }
}

.studioPhotos {
  margin-bottom: 40px;
}
.studioPhotos:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.studioPhotos img {
  float: left;
  width: 49.8%;
}
.studioPhotos img:last-child {
  float: right;
}
@media screen and (max-width: 640px) {
  .studioPhotos {
    margin-bottom: 20px;
  }
  .studioPhotos img {
    float: none;
    width: auto;
    /*&:last-child {
      display: none;
    }*/
  }
  .studioPhotos img:first-child {
    margin-bottom: 8px;
  }
}

.studioTxt {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .studioTxt {
    margin-bottom: 20px;
  }
}

.studioPhotoSP {
  display: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .studioPhotoSP {
    display: block;
  }
}

.studioMap {
  width: 100%;
  position: relative;
  margin: 0px auto;
  border: 5px solid #dddddd;
}
.studioMap iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}
@media screen and (max-width: 1020px) {
  .studioMap {
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .studioMap iframe {
    height: 400px;
  }
}
@media screen and (max-width: 440px) {
  .studioMap iframe {
    height: 300px;
  }
}

/* 料金表 */
.priceInner {
  margin-bottom: 60px;
  letter-spacing: 0.1rem;
}
.priceInner .fz40 {
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 640px) {
  .priceInner {
    margin-bottom: 30px;
  }
}

.priceUnderArrow {
  display: block;
  position: relative;
  margin-bottom: 32px;
  font-weight: 700;
}
.priceUnderArrow:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: auto;
  bottom: -24px;
  width: 0;
  height: 0;
  border-top: 16px solid #17153d;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.priceList {
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .priceList {
    margin-bottom: 40px;
  }
}

.priceListCount {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 8px;
  border: 1px solid #999999;
  background: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .priceListCount {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .priceListCount {
    margin-bottom: 4px;
  }
}

.priceListPrice {
  margin-bottom: 30px;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.priceListPrice span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3rem;
  color: #666;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .priceListPrice {
    margin-bottom: 20px;
  }
  .priceListPrice span {
    margin-top: 4px;
  }
}

/* メッセージ */
.message {
  background: linear-gradient(#fff 240px, #e9e4e3 700px);
}
.message .greenBgTitle {
  background: #fff;
}
.message .greenBgTitle:before {
  background: #fff;
}
.message .greenBgBox:before, .message .greenBgBox:after {
  content: none;
}
.message .greenBgBoxInner,
.message .ph-left,
.message .ph-right {
  padding-top: 0px !important;
}
@media screen and (max-width: 640px) {
  .message {
    background: linear-gradient(#fff 100px, #e9e4e3 280px);
  }
}

.messageSakurada {
  margin: 40px auto 20px auto;
  width: 300px;
}
@media screen and (max-width: 640px) {
  .messageSakurada {
    margin: 20px auto;
    width: 210px;
  }
}

/* 追伸 */
.postscript {
  padding-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .postscript {
    padding-bottom: 0px;
  }
}

.VT-title {
  margin: 0px auto 20px auto;
  width: 608px;
}
@media screen and (max-width: 640px) {
  .VT-title {
    width: auto;
  }
}

.VT-media {
  width: 868px;
  margin: 0px auto;
}
@media screen and (max-width: 1020px) {
  .VT-media {
    width: auto;
  }
}

.VT-media-logo {
  letter-spacing: -0.4em;
  text-align: center;
}
.VT-media-logo li {
  display: inline-block;
  margin: 0px 24px 20px 0px;
  vertical-align: middle;
  letter-spacing: normal;
}
.VT-media-logo li:last-child {
  margin-right: 0px;
}
.VT-media-logo li img {
  width: auto;
  height: 68px;
}
@media screen and (max-width: 1020px) {
  .VT-media-logo li {
    margin: 0px 10px 20px 10px;
  }
  .VT-media-logo li:last-child {
    margin-right: 10px;
  }
}

.VT-media-photo {
  letter-spacing: -0.4em;
  text-align: center;
  margin-bottom: 0px !important;
}
.VT-media-photo li {
  display: inline-block;
  width: 31%;
  margin: 30px 3.5% 0px 0;
  letter-spacing: normal;
}
.VT-media-photo li:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 440px) {
  .VT-media-photo li {
    display: block;
    width: auto;
    margin: 0px 0px 20px 0px;
  }
  .VT-media-photo li:last-child {
    margin-bottom: 0px;
  }
}

.inquiry-title {
  display: inline-block;
  margin-bottom: 60px;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3rem;
}
@media screen and (max-width: 640px) {
  .inquiry-title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .inquiry-title {
    margin-bottom: 30px;
  }
}

.toInquiryButton {
  display: block;
  width: 612px;
  margin: 0px auto;
  padding: 22px;
  border: 8px solid #292522;
  box-sizing: border-box;
  background: #fff;
  color: #292522 !important;
}
@media screen and (max-width: 640px) {
  .toInquiryButton {
    width: auto;
    padding: 10px;
  }
}

.toInquiryButton-first {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #292522;
  font-size: 30px;
  font-size: 1.875rem;
}
.toInquiryButton-first span {
  margin: 0px 5px;
  font-weight: 700;
  font-size: 38px;
  font-size: 2.375rem;
}
.toInquiryButton-first:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -14px;
  right: 0px;
  left: 0px;
  margin: auto;
  width: 0px;
  height: 0px;
  border-left: 14px solid transparent;
  border-top: 14px solid #292522;
  border-right: 14px solid transparent;
}
.toInquiryButton-first:after {
  display: block;
  position: absolute;
  content: "";
  bottom: -12px;
  right: 0px;
  left: 0px;
  margin: auto;
  width: 0px;
  height: 0px;
  border-left: 14px solid transparent;
  border-top: 14px solid #fff;
  border-right: 14px solid transparent;
}
@media screen and (max-width: 640px) {
  .toInquiryButton-first {
    margin-bottom: 15px;
    padding: 5px;
    font-size: 18px;
    font-size: 1.125rem;
  }
  .toInquiryButton-first span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.toInquiryButton-order {
  margin-bottom: 25px;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 50px;
}
.toInquiryButton-order span {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .toInquiryButton-order {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
  }
  .toInquiryButton-order span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.toInquiryButton-click {
  position: relative;
  display: inline-block;
  background: #eb4009;
  padding: 10px 60px;
  color: #fff !important;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 30px;
  transition: 0.3s;
}
.toInquiryButton-click:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.toInquiryButton-click:hover {
  background: #fc7e7e;
}
@media screen and (max-width: 640px) {
  .toInquiryButton-click {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    padding: 5px 50px;
  }
}

.inquiry {
  padding-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .inquiry {
    padding-bottom: 20px;
  }
}

.inquiryForm-form {
  width: 600px;
  margin: 30px auto 30px auto;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: left;
}
.inquiryForm-form:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.inquiryForm-form dt {
  float: left;
  width: 240px;
}
@media screen and (max-width: 780px) {
  .inquiryForm-form dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .inquiryForm-form dt br {
    display: none;
  }
}
.inquiryForm-form dd {
  width: 360px;
  padding-left: 240px;
  margin: 0px 0px 30px 0px;
}
.inquiryForm-form dd:last-child {
  margin-bottom: 0px;
}
.inquiryForm-form dd input,
.inquiryForm-form dd textarea {
  width: 96%;
  border: 1px solid #999999;
  border-radius: 10px;
  padding: 5px 2%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
}
.inquiryForm-form dd select {
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
}
.inquiryForm-form dd select.inquiryForm-form-place {
  width: 100%;
}
.inquiryForm-form dd input, .inquiryForm-form dd select {
  height: 45px;
}
@media screen and (max-width: 780px) {
  .inquiryForm-form dd {
    width: auto;
    margin-bottom: 15px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 640px) {
  .inquiryForm-form {
    width: auto;
    margin: 20px auto;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.inquiryForm-form-select {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.inquiryForm-form-select .inquiryForm-form-wdMin {
  width: 20%;
}
.inquiryForm-form-select .inquiryForm-form-wdMax {
  width: 28%;
}

.inquiryForm-submitButtonArea {
  text-align: center;
}

.inquiryForm-submitCheck {
  width: 480px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #4002ab;
  border-radius: 8px;
  margin: 0px auto 50px auto;
  background: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  font-weight: 700;
  text-align: left;
}
.inquiryForm-submitCheck:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.inquiryForm-submitCheck span {
  display: block;
  margin-left: 50px;
}
.inquiryForm-submitCheck input {
  float: left;
  width: 20px;
  height: 20px;
  margin: 0px;
  transform: scale(1.4);
}
@media screen and (max-width: 640px) {
  .inquiryForm-submitCheck input {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 640px) {
  .inquiryForm-submitCheck {
    width: auto;
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
  }
}

.inquiryForm-submitButton {
  display: inline-block;
  position: relative;
  margin: 0px auto;
  padding: 20px 70px;
  border-radius: 10px;
  background-color: #1a73e8;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "NotoSansJP", "Noto Sans", "Noto Sans CJK JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.inquiryForm-submitButton:hover {
  background: #fc7e7e;
}
@media screen and (max-width: 640px) {
  .inquiryForm-submitButton {
    display: block;
    width: 100%;
    padding: 20px 0px;
  }
}

.inquiryForm-form-item {
  display: inline-block;
  padding: 0px 10px;
  background: #17153d;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .inquiryForm-form-item {
    padding: 0px 6px 2px 6px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 26px;
  }
}

.required {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 8px;
  background: #eb4009;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 30px;
}
@media screen and (max-width: 640px) {
  .required {
    padding: 0px 6px 2px 6px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 26px;
  }
}

.candidate {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .candidate {
    font-size: 16px;
    font-size: 1rem;
  }
}

.breadColumnList {
  padding: 8px 0px;
}
.breadColumnList ul {
  margin-bottom: 0px !important;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3rem;
  text-align: left;
}
.breadColumnList ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.breadColumnList ul li {
  display: inline;
  margin-right: 10px;
}
.breadColumnList ul li a {
  position: relative;
  color: #4002ab;
  padding-right: 10px;
}
@media screen and (max-width: 440px) {
  .breadColumnList ul li {
    margin-right: 10px;
  }
}

footer {
  padding: 5px 0px;
  text-align: center;
  background: #17153d;
  color: #fff;
}
@media screen and (max-width: 780px) {
  footer {
    padding-bottom: 40px;
  }
}

.toPageTop {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 200;
}
.toPageTop a {
  display: block;
  text-indent: -9999px;
}
.toPageTop a:hover {
  -webkit-animation: pageTopShake 0.3s 1;
          animation: pageTopShake 0.3s 1;
}
@media screen and (max-width: 440px) {
  .toPageTop {
    bottom: 10px;
    right: 10px;
  }
  .toPageTop a {
    opacity: 0.8;
  }
}

/*バナー*/
.bannerArea {
  background: linear-gradient(#23015e 0%, #17153d 60%);
  padding: 80px 0px;
}
@media screen and (max-width: 640px) {
  .bannerArea {
    padding: 40px 0px;
  }
}

.bannerArea-title {
  position: relative;
  display: inline-block;
  padding: 8px 20px 6px 20px;
  border: 3px solid #17153d;
  border-bottom: none;
  background: #17153d;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .bannerArea-title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  .bannerArea-title {
    padding: 2px 20px 4px 20px;
  }
}

.bannerArea-buttonLeft {
  display: block;
  float: left;
  width: 48%;
}
@media screen and (max-width: 640px) {
  .bannerArea-buttonLeft {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}

.bannerArea-buttonRight {
  display: block;
  float: right;
  width: 48%;
}
@media screen and (max-width: 640px) {
  .bannerArea-buttonRight {
    float: none;
    width: 100%;
  }
}

/* 新規追加スタイル20180515 */
.buttonAreaBg {
  padding: 60px 0px 60px 0px;
}
@media screen and (max-width: 640px) {
  .buttonAreaBg {
    padding: 20px 0px 20px 0px;
  }
}

.toInquiryButton2 {
  display: block;
  width: 612px;
  margin: 0px auto;
  padding: 22px;
  border: 8px solid #292522;
  box-sizing: border-box;
  background: #fff;
  color: #292522 !important;
}
.toInquiryButton2:hover {
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .toInquiryButton2 {
    width: auto;
    padding: 10px;
  }
}

.toInquiryButton2-first {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 10px 0px 10px;
  border: 1px solid #292522;
  background: #292522;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 3rem;
}
.toInquiryButton2-first span {
  margin: 0px 5px;
  font-weight: 700;
  font-size: 38px;
  font-size: 2.375rem;
}
.toInquiryButton2-first:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -14px;
  right: 0px;
  left: 0px;
  margin: auto;
  width: 0px;
  height: 0px;
  border-left: 14px solid transparent;
  border-top: 14px solid #292522;
  border-right: 14px solid transparent;
}
.toInquiryButton2-first:after {
  /*@include pe;
  	bottom: -12px;
  	right: 0px;
  	left: 0px;
  	margin: auto;
  	width: 0px;
  	height: 0px;
  	border-left: 14px solid transparent;
  	border-top: 14px solid #fff;
  	border-right: 14px solid transparent;
  */
}
@media screen and (max-width: 780px) {
  .toInquiryButton2-first {
    margin-bottom: 15px;
    padding: 3px 5px 0px 5px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.8rem;
  }
  .toInquiryButton2-first span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.toInquiryButton2-order {
  margin-bottom: 25px;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 50px;
}
.toInquiryButton2-order span {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 780px) {
  .toInquiryButton2-order {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 30px;
  }
  .toInquiryButton2-order span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.toInquiryButton2-click {
  position: relative;
  display: inline-block;
  background: #cc0000;
  padding: 10px 60px;
  color: #fff !important;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 30px;
  transition: 0.3s;
}
.toInquiryButton2-click:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.toInquiryButton2-click:hover {
  background: #cc0000;
}
@media screen and (max-width: 780px) {
  .toInquiryButton2-click {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 24px;
    padding: 5px 50px;
  }
}

.toLINEButton {
  display: block;
  width: 612px;
  border: 8px solid #00b900;
  margin: 20px auto 0px auto;
  padding: 15px;
  background: #fff;
  box-sizing: border-box;
  color: #292522 !important;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 40px;
}
.toLINEButton em {
  display: inline-block;
  padding: 10px 0px 15px 0px;
  color: #00b900;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 50px;
}
.toLINEButton:hover {
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .toLINEButton {
    width: auto;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
  }
  .toLINEButton em {
    padding: 6px 0px 10px 0px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
  }
}

.toLINEButton-button {
  display: inline-block;
  padding: 10px 30px 14px 30px;
  background: #00b900;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
.toLINEButton-button img {
  width: 130px;
  margin-top: 3px;
  margin-right: 10px;
  vertical-align: text-bottom;
}
@media screen and (max-width: 780px) {
  .toLINEButton-button {
    padding: 4px 20px 8px 20px;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
  }
  .toLINEButton-button img {
    width: 100px;
  }
}

.LINEMerit {
  padding: 60px 0px;
  background: #00b900;
  color: #fff;
}
@media screen and (max-width: 780px) {
  .LINEMerit {
    padding: 30px 0px;
  }
}

.LINEMerit-title {
  margin-bottom: 30px;
  color: #fff;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 60px;
  font-weight: 700;
}
.LINEMerit-title img {
  width: 130px;
  margin: 0px 10px 8px 0px;
  vertical-align: middle;
}
@media screen and (max-width: 780px) {
  .LINEMerit-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 40px;
  }
}

.LINEMerit-title-sec01 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 40px;
}
.LINEMerit-title-sec01 br {
  display: none;
}
@media screen and (max-width: 780px) {
  .LINEMerit-title-sec01 {
    display: inline-block;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
  }
  .LINEMerit-title-sec01 br {
    display: block;
  }
}

.LINEMerit-wrap {
  width: 612px;
  margin: 0px auto;
  padding: 30px 30px 40px 30px;
  background: #fff;
  border-radius: 8px;
  color: #00b900;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
}
@media screen and (max-width: 780px) {
  .LINEMerit-wrap {
    width: auto;
    padding: 20px 20px 30px 20px;
  }
}

.LINEMerit-list {
  margin-bottom: 50px;
}
.LINEMerit-list li {
  position: relative;
  border-bottom: 1px dotted #00b900;
  margin-bottom: 15px;
  padding: 0px 0px 15px 50px;
  text-align: left;
}
.LINEMerit-list li:before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: -2px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #00b900;
  content: "1";
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
}
.LINEMerit-list li:nth-child(2):before {
  content: "2";
}
.LINEMerit-list li:nth-child(3):before {
  content: "3";
}
.LINEMerit-list li:last-child:before {
  content: "4";
}
@media screen and (max-width: 780px) {
  .LINEMerit-list {
    margin-bottom: 20px;
  }
  .LINEMerit-list li:before {
    top: 3px;
  }
}

.LINEMerit-button {
  margin: 0px auto;
  padding: 10px 20px;
  border-radius: 8px;
  background: #cc0000;
  color: #fff !important;
  font-size: 32px;
  font-size: 2rem;
  line-height: 40px;
  font-weight: 700;
}
.LINEMerit-button:hover {
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .LINEMerit-button {
    display: block;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 30px;
  }
}

.footerNav {
  position: relative;
  display: none;
  background: #fff;
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  transition: 0.7s;
  opacity: 0;
  z-index: 100;
}
.footerNav:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.footerNav a {
  position: relative;
  display: block;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #1a73e8;
  font-weight: bold;
  color: #fff !important;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.footerNav a:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 18px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 780px) {
  .footerNav {
    display: block;
  }
}

.footerNav-show {
  opacity: 1;
}

.footerNav-hide {
  opacity: 0;
}

.headerNav-show {
  opacity: 1;
}

/*20200519オンライン追加分*/
.grayTxtBox {
  position: relative;
  margin: 0px auto 60px auto;
  padding: 40px;
  background: #dddddd;
  box-sizing: border-box;
  text-align: left;
}
.grayTxtBox .youtube-outer {
  margin-top: 40px;
}
.grayTxtBox:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 900px) {
  .grayTxtBox {
    width: auto;
  }
}
@media screen and (max-width: 780px) {
  .grayTxtBox {
    margin-bottom: 20px;
    padding: 20px;
  }
  .grayTxtBox .youtube-outer {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .grayTxtBox {
    text-align: center;
  }
}

.nextBottomArrow {
  position: relative;
  margin-bottom: 30px;
}
.nextBottomArrow:before {
  display: block;
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0px;
  right: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #17153d;
}

.firstLessonDetail-title {
  font-weight: bold;
  margin-bottom: 30px;
  background: #4002ab;
}
.firstLessonDetail-title:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.firstLessonDetail-title dt {
  display: block;
  position: relative;
  float: left;
  width: 90px;
  min-height: 30px;
  padding: 5px 0px;
  box-sizing: border-box;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  text-align: center;
}
.firstLessonDetail-title dd {
  position: relative;
  margin: 0px 0px 0px 90px;
  padding: 5px 10px;
  min-height: 30px;
  box-sizing: border-box;
  background: #fff;
  color: #17153d;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .firstLessonDetail-title {
    margin-bottom: 15px;
  }
  .firstLessonDetail-title dt {
    width: 80px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
  }
  .firstLessonDetail-title dd {
    margin-left: 80px;
    color: #17153d;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
  }
}

.firstLessonDetail-text {
  text-align: center;
}
.firstLessonDetail-text:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.firstLessonDetail-text img {
  float: left;
  margin-right: 40px;
  width: 282px;
}
.firstLessonDetail-text p {
  text-align: left;
  margin-bottom: 0px !important;
}
@media screen and (max-width: 900px) {
  .firstLessonDetail-text br {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .firstLessonDetail-text img {
    float: none;
    margin: 20px auto;
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .firstLessonDetail-text img {
    margin: 10px auto;
  }
}

/* 2020リニューアル */
.outline {
  padding: 60px 0px;
  background: #e9e4e3;
}
@media screen and (max-width: 640px) {
  .outline {
    padding: 20px 0px;
  }
}

.outlineTitle {
  position: relative;
  margin: 0px auto 30px;
}
.outlineTitle:before {
  display: block;
  position: absolute;
  content: "";
  z-index: 1;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 100%;
  height: 10px;
  border-bottom: 10px solid #17153d;
  background: #4002ab;
}
.outlineTitle span {
  position: relative;
  display: inline-block;
  padding: 0px 20px;
  background: #e9e4e3;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .outlineTitle {
    margin: 0px auto 10px;
    /*
    &:after{
      @include pe;
      bottom: 0;
      width: 90%;
      right: 0;
      height: 7px;
      border-bottom: 7px solid $color-tonic;
      background: $color-tonic-deep;
    }*/
  }
  .outlineTitle:before {
    height: 4px;
    border-bottom: 4px solid #17153d;
  }
  .outlineTitle span {
    margin: 0px 15%;
    padding: 0 3%;
  }
}

.outlineLead {
  margin-bottom: 50px;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 3rem;
  line-height: 3.6rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .outlineLead {
    margin-bottom: 20px;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

.outlineLeadMin {
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 3rem;
}
@media screen and (max-width: 640px) {
  .outlineLeadMin {
    margin-bottom: 8px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .outlineLeadMid {
    line-height: 2.6rem;
  }
}

.outlineImages {
  position: relative;
  min-height: 406px;
}
.outlineImages img {
  position: absolute;
  margin: auto;
}
.outlineImages img:nth-child(1) {
  top: 0px;
  left: 0px;
}
.outlineImages img:nth-child(2) {
  top: 0px;
  bottom: 0px;
  left: 460px;
}
.outlineImages img:nth-child(3) {
  top: 0px;
  bottom: 0px;
  right: 0px;
}
@media screen and (max-width: 1020px) {
  .outlineImages {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
  }
  .outlineImages img {
    position: relative;
  }
  .outlineImages img:nth-child(1), .outlineImages img:nth-child(2), .outlineImages img:nth-child(3) {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .outlineImages img:nth-child(1) {
    width: 45%;
  }
  .outlineImages img:nth-child(2) {
    width: 6%;
  }
  .outlineImages img:nth-child(3) {
    width: 45%;
  }
}
@media screen and (max-width: 640px) {
  .outlineImages {
    display: block;
  }
  .outlineImages img {
    display: block;
  }
  .outlineImages img:nth-child(1) {
    max-width: 482px;
    width: 100%;
  }
  .outlineImages img:nth-child(2) {
    width: 39px;
    margin: 20px auto;
  }
  .outlineImages img:nth-child(3) {
    max-width: 418px;
    width: 100%;
  }
}

.instructorWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.instructorItem {
  width: 22%;
  text-align: left;
}
.instructorItem h2 {
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #17153d;
  font-size: 18px;
  font-size: 1.125rem;
  color: #17153d;
  line-height: 40px;
  letter-spacing: 0.2rem;
}
.instructorItem img {
  margin-top: 20px;
}
.instructorItem ul {
  margin-top: 20px;
  border-bottom: 1px dotted #17153d;
}
.instructorItem ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3rem;
}
.instructorItem ul li:before {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 0px;
  display: block;
  background: #02d467;
  width: 10px;
  height: 10px;
}
.instructorItem ul li:last-child:before {
  background: #4002ab;
}
.instructorItem p {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 25px;
  letter-spacing: 0.1rem;
}
.instructorItem p .price {
  display: inline-block;
  padding: 0px 5px;
  margin: 0px 10px 10px 0px;
  background: #17153d;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 20px;
  vertical-align: middle;
}
.instructorItem p .tax {
  display: inline-block;
  margin-left: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .instructorItem {
    width: 47%;
  }
  .instructorItem:nth-child(3), .instructorItem:nth-child(4) {
    margin-top: 30px;
  }
  .instructorItem p {
    margin-bottom: 6px;
  }
  .instructorItem p .price {
    margin-bottom: 8px;
  }
}

.instructorButton, .instructorPriceButton {
  position: relative;
  display: block;
  background: #1a73e8;
  padding: 0px 15px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #fff !important;
  letter-spacing: 0.1rem;
  transition: 0.3s;
}
.instructorButton:hover, .instructorPriceButton:hover {
  background: #4994f7;
}
.instructorButton:before, .instructorPriceButton:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 15px;
  margin: auto;
  width: 20px;
  height: 4px;
  background: #fff;
}
.instructorButton:after, .instructorPriceButton:after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: 23px;
  margin: auto;
  width: 4px;
  height: 20px;
  background: #fff;
}
@media screen and (max-width: 1020px) {
  .instructorButton, .instructorPriceButton {
    padding: 0px 10px;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 40px;
  }
  .instructorButton:before, .instructorPriceButton:before {
    right: 10px;
    width: 15px;
    height: 3px;
  }
  .instructorButton:after, .instructorPriceButton:after {
    right: 16px;
    width: 3px;
    height: 15px;
  }
}

.instructorPriceButton {
  margin-top: 10px;
  background: #4002ab;
}
.instructorPriceButton:hover {
  background: #6430d6;
}

.modal {
  display: none;
}

.modalWrap {
  margin-bottom: 30px;
}
.modalWrap:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 640px) {
  .modalWrap {
    margin-bottom: 20px;
  }
}

.modalTitle {
  border-bottom: 6px solid #17153d;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  color: #17153d;
}
.modalTitle span {
  display: inline-block;
  margin-left: 20px;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .modalTitle {
    border-bottom: 4px solid #17153d;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .modalTitle span {
    margin-left: 10px;
    font-size: 12px;
  }
}

.modalSubTitle {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #17153d;
}
@media screen and (max-width: 640px) {
  .modalSubTitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.modalList {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
}
.modalList li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1.5rem;
}
@media screen and (max-width: 640px) {
  .modalList {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6rem;
  }
}

.modalMiniTitle {
  display: block;
  margin-bottom: 10px;
}

.voicesWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 780px) {
  .voicesWrap {
    margin: 0px 5px;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 640px) {
  .voicesWrap {
    margin-top: 20px;
  }
}

.voicesCard {
  width: 48.2%;
  background: #fff;
}
.voicesCard:nth-child(3), .voicesCard:nth-child(4) {
  margin-top: 40px;
}
@media screen and (max-width: 780px) {
  .voicesCard {
    width: 100%;
  }
  .voicesCard:nth-child(3), .voicesCard:nth-child(4) {
    margin-top: 0px;
  }
}

.voicesCardTitle {
  position: relative;
  padding: 10px 20px;
  background-color: #17153d;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: left;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8rem;
}
@media screen and (max-width: 640px) {
  .voicesCardTitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.voicesCardTitle:before {
  display: block;
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  right: 0px;
  margin: auto;
  bottom: auto;
  width: 0;
  height: 0;
  border-top: 16px solid #e9e4e3;
  border-left: 16px solid transparent;
}

.voicesCardWrap {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}
.voicesCardWrap div {
  width: 25%;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.voicesCardWrap div img {
  width: 90px;
  margin: 0 auto 10px;
}
.voicesCardWrap div span {
  display: inline-block;
  padding-top: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.voicesCardWrap p {
  width: 73%;
  margin-bottom: 0px !important;
  text-align: left;
}
@media screen and (max-width: 780px) {
  .voicesCardWrap {
    display: block;
  }
  .voicesCardWrap div {
    width: 100%;
    margin-bottom: 20px;
  }
  .voicesCardWrap div img {
    display: block;
    width: 60%;
  }
  .voicesCardWrap p {
    width: 100%;
  }
}

.g-recaptcha {
  margin-bottom: 30px;
}
.g-recaptcha div {
  margin: 0px auto;
}

@media screen and (max-width: 780px) {
  .originSlideWrap {
    margin: 0px 5px;
    padding: 0px 40px;
  }
}

.benefits {
  background: #e9e4e3;
}

@media screen and (max-width: 780px) {
  .benefitsSlide {
    margin: 0px 20px;
    background: #e9e4e3;
  }
}

.secTitleBorderBottom {
  border-bottom: 6px solid #17153d;
}

@media screen and (max-width: 780px) {
  .slideChangeColor {
    background: #e9e4e3;
  }
}

@media screen and (max-width: 780px) {
  .secTitleFeatureSlide {
    border-bottom: 6px solid #17153d;
  }
}

@media screen and (max-width: 780px) {
  .feature {
    background: linear-gradient(#e9e4e3 0%, #f8f8f8 50%);
  }
}

@media screen and (max-width: 780px) {
  .featureSlideWrap {
    margin: 0px 15px;
  }
}

@media screen and (max-width: 780px) {
  .featureCard {
    margin: 0px 40px;
  }
}/*# sourceMappingURL=style.css.map */