@charset "UTF-8";
/* **************************************


     追加


***************************************/
/*最小値:$value+0.2 → 可変（$value + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px,2560px:12px））→ 最大値:$value + 1.2*/
/*最小値:$value+0.2 → 可変（$value + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px,2560px:12px））→ 最大値:$value + 1.2*/
body {
  color: #202020;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.66667;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: flipDownAnime;
          animation-name: flipDownAnime;
  opacity: 0;
}

@-webkit-keyframes flipDownAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
  }
}

@keyframes flipDownAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
  }
}

/* 左へ */
.flipLeft {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  opacity: 0;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
}

@-webkit-keyframes flipLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

@keyframes flipLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

/* 左上へ */
.flipLeftTop {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes flipLeftTopAnime {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}

/* 右へ */
.flipRight {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: flipRightAnime;
          animation-name: flipRightAnime;
  opacity: 0;
  -webkit-perspective-origin: right center;
          perspective-origin: right center;
}

@-webkit-keyframes flipRightAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

@keyframes flipRightAnime {
  from {
    opacity: 0;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
  }
  to {
    opacity: 1;
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  }
}

/* 右上へ */
.flipRightTop {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: flipRightTopAnime;
          animation-name: flipRightTopAnime;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
  }
}

@keyframes flipRightTopAnime {
  from {
    opacity: 0;
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: rotateXAnime;
          animation-name: rotateXAnime;
}

@-webkit-keyframes rotateXAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
  }
}

@keyframes rotateXAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
  }
}

/*　Y軸（横へ） */
.rotateY {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: rotateYAnime;
          animation-name: rotateYAnime;
}

@-webkit-keyframes rotateYAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

@keyframes rotateYAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
  }
}

/* Z 軸（左へ） */
.rotateLeftZ {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: rotateLeftZAnime;
          animation-name: rotateLeftZAnime;
}

@-webkit-keyframes rotateLeftZAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

@keyframes rotateLeftZAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
  }
}

/*　Z 軸（右へ） */
.rotateRightZ {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: rotateRightZAnime;
          animation-name: rotateRightZAnime;
}

@-webkit-keyframes rotateRightZAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes rotateRightZAnime {
  from {
    opacity: 0;
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  to {
    opacity: 1;
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
}

@-webkit-keyframes zoomInAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomInAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* 拡大 */
.zoomInLeft {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: zoomInLeftAnime;
          animation-name: zoomInLeftAnime;
}

@-webkit-keyframes zoomInLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6) translateX(-50%);
            transform: scale(0.6) translateX(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0px);
            transform: scale(1) translateX(0px);
  }
}

@keyframes zoomInLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6) translateX(-50%);
            transform: scale(0.6) translateX(-50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0px);
            transform: scale(1) translateX(0px);
  }
}

/* 拡大 */
.zoomInRight {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: zoomInRightAnime;
          animation-name: zoomInRightAnime;
}

@-webkit-keyframes zoomInRightAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6) translateX(50%);
            transform: scale(0.6) translateX(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
            transform: scale(1) translateX(0%);
  }
}

@keyframes zoomInRightAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(0.6) translateX(50%);
            transform: scale(0.6) translateX(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0%);
            transform: scale(1) translateX(0%);
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
}

@-webkit-keyframes zoomOutAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomOutAnime {
  from {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLeftTrigger,
.zoomInRightTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: smoothAnime;
          animation-name: smoothAnime;
  opacity: 0;
  -webkit-transform-origin: left;
          transform-origin: left;
}

@-webkit-keyframes smoothAnime {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
  }
}

@keyframes smoothAnime {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  /* 枠線が書かれる基点*/
  opacity: 0;
  position: relative;
}

.lineTrigger.lineanime {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: lineAnimeBase;
          animation-name: lineAnimeBase;
}

@-webkit-keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  background: #333;
  content: "";
  height: 1px;
  position: absolute;
  width: 0;
  /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  background: #333;
  content: "";
  height: 0;
  position: absolute;
  width: 1px;
  /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  left: 0;
  top: 0;
}

.lineTrigger.lineanime::before {
  -webkit-animation: lineAnime 0.5s linear 0s forwards;
          animation: lineAnime 0.5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  right: 0;
  top: 0;
}

.lineTrigger.lineanime .line2::before {
  -webkit-animation: lineAnime2 0.5s linear 0.5s forwards;
          animation: lineAnime2 0.5s linear 0.5s forwards;
  /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  -webkit-animation: lineAnime 0.5s linear 1s forwards;
          animation: lineAnime 0.5s linear 1s forwards;
  /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  -webkit-animation: lineAnime2 0.5s linear 1.5s forwards;
          animation: lineAnime2 0.5s linear 1.5s forwards;
  /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@-webkit-keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  -webkit-animation: lineInnerAnime 0.5s linear 1.5s forwards;
          animation: lineInnerAnime 0.5s linear 1.5s forwards;
  /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0;
  /*初期値を透過0にする*/
}

@-webkit-keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
  overflow: hidden;
  position: relative;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から*/
.bgLRextend::before {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

/*右から*/
.bgRLextend::before {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

/*下から*/
.bgDUextend::before {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}

/*上から*/
.bgUDextend::before {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  background-color: #666;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

.LR {
  -webkit-animation: LRAnime 1.5s forwards linear;
          animation: LRAnime 1.5s forwards linear;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

@-webkit-keyframes LRAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes LRAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.TB {
  -webkit-animation: TBAnime 1.5s forwards linear;
          animation: TBAnime 1.5s forwards linear;
  display: inline-block;
  height: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}

@-webkit-keyframes TBAnime {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes TBAnime {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.flowing {
  -webkit-animation: flowing-anim 1s forwards linear;
          animation: flowing-anim 1s forwards linear;
  display: block;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
}

@-webkit-keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* .flowingTrigger {
  opacity: 0;
} */
/*========= レイアウトのためのCSS ===============*/
.wrapper {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.box {
  background: #666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  margin: 0 20px 20px 20px;
  padding: 20px;
  width: 220px;
}

.bgextend,
.lineTrigger {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 20px 20px 20px;
  padding: 20px;
  width: 220px;
}

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
  /*この数字を必要回数分に変更*/
}

.countinfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time04._sp {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

[data-target] {
  cursor: pointer;
}

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

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  opacity: 0;
  overflow-wrap: break-word;
  overflow-x: hidden;
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
  visibility: hidden;
  z-index: 1;
}

body.over {
  overflow: hidden;
}

body[data-loading="true"] {
  opacity: 1;
  visibility: visible;
}

body.is-checked {
  overflow: hidden;
}

ul,
li {
  list-style: none;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

form button {
  -webkit-appearance: none;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0;
  padding: 0.6em 2em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: auto;
}

form button:hover, form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.7;
}

form button ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #fff;
  background-image: none;
  border: none;
  border: 0.5px solid #c3c4c6;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 8px;
  width: 100%;
}

textarea {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

textarea:hover, textarea:focus {
  outline: none;
}

textarea:focus {
  background: #fff;
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input:focus {
  background: #fff;
  border: 1px solid #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input[type="submit"], input[type="button"] {
  -webkit-appearance: none;
  background: transparent;
  background: #f6921e;
  background-image: none;
  border: none;
  border-radius: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  height: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  width: auto;
  width: 100%;
  width: 100%;
}

input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus {
  opacity: 0.7;
}

input[type="submit"] ::-moz-focus-inner, input[type="button"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* =============================================================================


     font-face


============================================================================= */
@font-face {
  src: url("../asset/font/Agenda_Medium.otf") format("opentype");
  font-family: "Agenda_Medium";
  font-weight: 600;
}

/* =============================================================================


     form


============================================================================= */
form {
  margin: 0;
  padding: 0;
}

form button {
  -webkit-appearance: none;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0;
  padding: 0.6em 2em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: auto;
}

form button:hover, form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.7;
}

form button ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input,
textarea {
  background: #fff;
  background-image: none;
  border: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #202020;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-weight: 500;
  padding: 8px;
  width: 100%;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

input,
select {
  height: 56px;
}

textarea {
  height: 230px;
}

textarea:hover, textarea:focus {
  outline: none;
}

textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input[type="submit"], input[type="button"] {
  background: transparent;
  background-image: none;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  width: 100%;
  /*     &:hover,
    &:focus {
      opacity: 0.7;
    } */
}

input[type="submit"] ::-moz-focus-inner, input[type="button"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input[type="submit"]:disabled, input[type="button"]:disabled {
  background: #ccc;
  border: none;
  color: #fff;
  pointer-events: none;
}

/***********************
   select
***********************/
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url(../asset/images/common/select-arrow.svg) no-repeat center right 8px/16px 16px;
  border-radius: 0;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  color: #202020;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: 8px;
  width: 100%;
}

select:-ms-expand {
  display: none;
}

select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/***********************
   checkbox
***********************/
input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span,
input[type="checkbox"] + input[type="hidden"] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 calc(20px + 0.5em);
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input[type="checkbox"] + span:hover,
input[type="checkbox"] + input[type="hidden"] + span:hover {
  opacity: 0.7;
}

input[type="checkbox"] + span:before,
input[type="checkbox"] + input[type="hidden"] + span:before {
  background: #fff;
  border: 1.5px solid #202020;
  border-radius: 0%;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}

input[type="checkbox"] + span:after,
input[type="checkbox"] + input[type="hidden"] + span:after {
  border-bottom: 3px solid #b20026;
  border-left: 3px solid #b20026;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
  /*       background: $cr_txt;
      border-radius: 50%;
      content: "";
      display: block;
      height: 12px;
      width: 12px;
      left: 4px;
      opacity: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transition: all 0.3s ease 0s; */
}

input[type="checkbox"]:checked + span::after,
input[type="checkbox"]:checked + input[type="hidden"] + span::after {
  opacity: 1;
}

input[type="checkbox"]:checked + span + span::after {
  opacity: 1;
}

input[type="checkbox"] + span,
input[type="radio"] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 2;
  margin: 0;
  padding: 0 0 0 2em;
  position: relative;
}

input[type="radio"] {
  height: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  visibility: hidden;
  width: 0;
}

input[type="radio"] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: none;
  border: 1px solid #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

input[type="radio"] + span::after {
  -webkit-transform: translateY(-50%);
  background: #202020;
  border-radius: 50%;
  content: "";
  display: block;
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
}

.inner {
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  min-width: 1180px;
  padding: 0;
  position: relative;
  width: 85vw;
}

.inner._header {
  margin: 0 0 0 auto;
  padding: 0 32px;
  width: 100%;
}

.inner._big {
  width: 95%;
}

.inner._middle {
  width: 90%;
}

.main {
  overflow: hidden;
}

/* =============================================================================


     btn


============================================================================= */
.btnbox {
  margin: 60px auto 0;
  text-align: center;
}

.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b20026;
  border-radius: 38px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: auto;
  max-width: 400px;
  min-width: 320px;
  overflow: hidden;
  padding: 18px 100px 18px 25px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn:hover {
  background: #d5002d;
}

.btn:hover span {
  right: 24px;
}

.btn > span {
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  transition: 0.2s;
  width: 10px;
}

.pagebtn-list {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 1080px;
}

.pagebtn-item {
  max-width: 300px;
  width: calc(25% - 20px);
}

.pagebtn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b20026;
  border-radius: 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em 1em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}

.pagebtn:hover {
  background: #fff;
  color: #202020;
}

/* =============================================================================


     can


============================================================================= */
/* .can {
  background: transparent url(../../asset/images/top/b.svg) no-repeat top center / cover;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  &.top {
    background: rgba($color: #bbb, $alpha: 0.2) url(../../asset/images/top/b.svg) no-repeat top center / cover;
  }

  &.green {
    background: transparent url(../../asset/images/top/cam-bg_g.svg) no-repeat top center / cover;
  }

  &.orenge {
    background: transparent url(../../asset/images/top/cam-bg_y.svg) no-repeat top center / cover;
  }
}

.can-ex {
  max-width: 400px;
  margin: auto;
  width: 20vw;
  min-width: 200px;
  margin-top: -1%;
  @include mq("tab") {
  }

  @include mq("sp") {
    width: 50vw;
  }
}

.can-en {
  width: 520px;
  position: absolute;
  bottom: -15%;
  right: -10%;

  @include mq("tab") {
    width: 300px;
    right: -$pd-tab;
  }

  @include mq("sp") {
    right: 0;
    width: 40vw;
    max-width: 300px;
  }
}

.can-ttl {
  font-size: fs(6.4rem);
  text-align: center;
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 1;

  @include mq("tab") {
    font-size: fs(4.5rem);
  }
  &:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 100%;
    z-index: -1;
  }

  &.blue:before,
  &.top:before {
    background: transparent url(../../asset/images/top/cam-b_y.svg) no-repeat bottom center / contain;
  }
  &.orenge:before {
    background: transparent url(../../asset/images/top/cam-b_o.svg) no-repeat bottom center / contain;
  }
  &.green:before {
    background: transparent url(../../asset/images/top/cam-b_w.svg) no-repeat bottom center / contain;
  }
}

.can-yen {
  max-width: 1000px;
  margin: auto;
  width: 90%;
  position: relative;

  @include mq("tab") {
    width: 80%;
  }

  @include mq("sp") {
    width: 100%;
  }
}

.can-head {
  font-size: fs(2.8rem);
  margin-top: 24px;
  text-align: center;
  display: inline-block;
  color: #534741;
  border-bottom: 3px solid #534741;
  font-weight: bold;

  @include mq("sp") {
    font-size: fs(2.2rem);
  }
}
.can-list {
  margin-top: 32px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  flex-direction: row;
  gap: 25px;
  max-width: 1180px;
  margin: 32px auto 0;

  @include mq("tab") {
    gap: 12px;
  }

  @include mq("sp") {
    flex-wrap: wrap;
    gap: 25px 16px;
  }
}

.can-item {
  width: calc(25% - ((25px * 3) / 4));
  letter-spacing: -0.04em;

  @include mq("tab") {
    width: calc(25% - ((12px * 3) / 4));
  }

  @include mq("sp") {
    width: calc(50% - 16px);
  }
}

.can-item-img {
  position: relative;
  img {
    width: 100%;
  }

  figcaption {
    width: 4em;
    height: 4em;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 1em;
    text-align: left;
    color: #fff;
    font-size: fs(2.5rem);
    font-weight: 600;
    background: #f0aa3e;
    clip-path: polygon(0 0, 0% 100%, 100% 0);

    @include mq("sp") {
      font-size: fs(2rem);
    }
  }
}

.can-item-txt {
  margin-top: 8px;
  font-weight: bold;
  color: #534741;
  font-size: fs(2rem);
}

.can-btntxt {
  margin-top: 40px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: fs(2.4rem);
  padding: 0 1.2em;

  @include mq("sp") {
    font-size: fs(2.2rem);
  }

  span {
    font-size: fs(2.8rem);

    @include mq("sp") {
      font-size: fs(2.4rem);
    }
  }

  &:before,
  &:after {
    font-size: inherit;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    background: transparent url(../../asset/images/common/txt_deco02.svg) no-repeat center center / contain;
    height: 1em;
  }

  &:before {
    left: 0;
    transform: translateY(-50%) scale(-1, 1);
  }

  &:after {
    right: 0;
  }
} */
.can {
  background: #fff;
  border-radius: 30px;
  padding: 40px 0;
}

.can-ex {
  font-size: clamp(3.4rem, calc(3.2rem + (0.625vw * 1)), 4.4rem);
  font-weight: bold;
  padding: 0 16px;
  text-align: center;
}

.can-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ec8e26;
  border-radius: 60px;
  -webkit-box-shadow: 3px 3px 3px #23191680;
          box-shadow: 3px 3px 3px #23191680;
  color: #fff;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  height: 130px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto 0;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 700px;
}

.can-btn:hover {
  opacity: 0.7;
}

.can-btn .sm {
  font-size: 80%;
}

.can-btn > span {
  border: 3px solid #fff;
  border-radius: inherit;
  height: calc(100% - 20px);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 20px);
}

.can-btn > span:before {
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  content: "";
  height: 14px;
  position: absolute;
  right: 60px;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 14px;
}

.can-ttl {
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #183e7c;
  color: #eee93a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: clamp(5.8rem, calc(5.6rem + (0.625vw * 1)), 6.8rem);
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 3px;
  line-height: 1.3;
  padding: 0.2em 0;
}

.can-ttl span {
  border-bottom: 2px solid #eee93a;
  border-top: 2px solid #eee93a;
  font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  padding: 0.15em 0;
}

.cam-contents {
  background: #fff;
  border: 3px solid #183e7c;
  border-radius: 30px;
  margin: auto;
  max-width: 1080px;
  overflow: hidden;
  padding-bottom: 20px;
}

.cam-content {
  padding: 50px 10px 10px;
}

.cam-lists {
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cam-list {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cam-item {
  background: #183e7c;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: clamp(2.6rem, calc(2.4rem + (0.625vw * 1)), 3.6rem);
  font-weight: bold;
  padding: 0.15em 1em;
  text-align: center;
}

.cam-list-txt {
  font-size: clamp(3rem, calc(2.8rem + (0.625vw * 1)), 4rem);
  font-weight: bold;
}

.cam-figure._off {
  margin-top: 40px;
}

.cam-exs {
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eaf5fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
  margin: 20px 0;
  padding: 0.25em 0.5em;
}

.cam-exs span {
  min-width: 5em;
  position: relative;
  width: 5em;
}

.cam-exs span::before {
  content: "▶︎";
  position: absolute;
  right: -1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cam-ex {
  max-width: calc(100% - 7em);
}

/* =============================================================================


     common


============================================================================= */
.head-ttl {
  font-weight: bold;
}

.head-ttl._c {
  text-align: center;
}

.head-ttl-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, calc(1.2rem + (0.625vw * 1)), 2.4rem);
  text-transform: uppercase;
  /* 前だけ capitalize; */
}

.head-ttl-en._sm {
  font-size: 1.4rem;
}

.head-ttl-jp {
  font-size: clamp(4.2rem, calc(4rem + (0.625vw * 1)), 5.2rem);
  line-height: 1.2;
}

.head-ttl-jp._sm {
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
}

.submv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  max-height: 1100px;
  min-height: 400px;
  position: relative;
}

.submv:before {
  background: #202020;
  content: "";
  height: 100%;
  left: 50%;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.submv:after {
  background: #202020;
  bottom: 0;
  -webkit-clip-path: polygon(0 150px, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 150px, 100% 0, 100% 100%, 0% 100%);
  content: "";
  height: 30%;
  left: 50%;
  max-height: 600px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.submv-ttl {
  margin: auto auto clamp(120px, 5vw, 15vw);
  margin-top: auto;
  position: relative;
  text-align: center;
  z-index: 1;
}

.submv-ttl-en {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(11.4rem, calc(11.2rem + (0.625vw * 1)), 12.4rem);
  font-weight: bold;
  line-height: 1;
  margin-top: 0.15em;
  text-shadow: 5px 5px 5px #0006;
}

.submv-ttl-en._b {
  color: #202020;
  text-shadow: 5px 5px 5px #00000029;
}

.submv-ttl-jp {
  color: #fff;
  font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  line-height: 1;
}

.submv-scroll {
  bottom: clamp(220px, 15vw, 25vw);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, calc(1.2rem + (0.625vw * 1)), 2.4rem);
  font-weight: 300;
  left: 30px;
  letter-spacing: 2px;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 2;
}

.submv-scroll:hover {
  opacity: 0.7;
}

.pageheader {
  color: #fff;
  padding: 60px 0 180px;
}

.pageheader._news {
  color: #202020;
}

.pageheader-content {
  margin: auto;
  max-width: 900px;
}

.pageheader-head {
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  margin-top: 32px;
  text-align: center;
}

.pageheader-txt {
  font-size: 1.8rem;
  margin-top: 20px;
}

.pageheader-txt._c {
  text-align: center;
}

.page-sns-list {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.page-snslink {
  display: inline-block;
  width: 30px;
}

.section {
  padding: 160px 0;
}

.gray {
  color: #fff;
  padding: 220px 0;
  position: relative;
}

.gray:before {
  background: #404040;
  -webkit-clip-path: polygon(0 150px, 100% 0%, 100% calc(100% - 150px), 0% 100%);
          clip-path: polygon(0 150px, 100% 0%, 100% calc(100% - 150px), 0% 100%);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.pageheader {
  color: #fff;
  padding: 60px 0 180px;
}

.page_lesson-txt {
  font-size: 1.8rem;
  margin-top: 60px;
  text-align: center;
}

.drawer {
  background: #b20026;
  border-radius: 20px;
  height: 80px;
  position: fixed;
  right: 40px;
  top: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 80px;
  z-index: 40;
  z-index: 100;
}

.drawer:hover {
  background: #d5002d;
}

.is-checked .drawer,
[data-scroll="true"] .drawer {
  right: 20px;
  top: 10px;
}

.is-checked .drawer {
  background: #d5002d;
}

.drawer-close {
  background: #000;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 39;
}

.drawer-close.is-checked {
  display: block;
  opacity: 0.4;
}

.drawer-icon {
  background-color: inherit;
  border: 1px solid #202020;
  border-radius: 20px;
  cursor: pointer;
  display: block;
  display: block;
  font-weight: bold;
  height: 100%;
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 41;
}

.drawer-icon:focus {
  outline: none;
}

.drawer-icon.is-checked + body {
  overflow: hidden;
}

.drawer-bars {
  display: inline-block;
  height: 11px;
  margin: auto;
  position: relative;
  top: -0.5em;
  vertical-align: bottom;
  width: 100%;
  width: 30px;
}

.drawer-bars:before {
  border-radius: 50%;
  content: "";
  height: 78px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 78px;
  z-index: -1;
}

.drawer-bars:after {
  color: #fff;
  content: "MENU";
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-weight: bold;
  left: 50%;
  letter-spacing: 1.2px;
  position: absolute;
  top: calc(100% + 0.15em);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}

.is-checked .drawer-bars:after {
  content: "CLOSE";
}

.drawer-bar {
  background: #fff;
  border-radius: 0px;
  display: block;
  height: 2px;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  /*     &:nth-of-type(3) {
      top: ($drawer-bar-space + $drawer-bar-height) * 2;
    } */
}

.drawer-bar:nth-of-type(1) {
  top: 0;
}

.drawer-bar:nth-of-type(2) {
  top: 9px;
}

.is-checked .drawer-bar {
  background: #fff;
}

.is-checked .drawer-bar:nth-of-type(1) {
  top: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  width: 100%;
}

.is-checked .drawer-bar:nth-of-type(2) {
  top: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  width: 100%;
}

.drawer-content {
  background: #404040;
  border-top: 1px solid #fff;
  bottom: auto;
  font-weight: 600;
  height: 100%;
  left: auto;
  margin: auto;
  overflow: auto;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: left;
  top: 108px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 300px;
}

.drawer-content.is-checked {
  opacity: 1;
  top: 108px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}

.drawer-content.is-checked:before {
  opacity: 1;
  visibility: visible;
}

.drawer-content--right.is-checked {
  -webkit-transform: 0;
          transform: 0;
}

.drawer-content--op {
  bottom: auto;
  height: auto;
  min-width: 100%;
  min-width: auto;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.drawer-content--top {
  bottom: auto;
  height: auto;
  max-width: 100%;
  min-width: 100%;
  min-width: auto;
  padding-top: 120px;
  top: 0px;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  width: 100%;
}

.drawer-bg {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.drawer-bg:before {
  content: "";
  height: inherit;
  height: 108px;
  left: 0;
  position: inherit;
  top: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: inherit;
}

.drawer-bg.is-checked {
  background: rgba(0, 0, 0, 0.4);
  height: calc(100vh - 0px);
  width: 100vw;
}

.drawer-bg.is-checked:before {
  background: #404040;
}

.drawer-navbox {
  max-height: calc(100vh - 108px);
  padding-top: 20px;
}

.g-navbox {
  gap: 24px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 85vw;
  padding: 0px 0 40px;
}

.g-nav-list {
  color: #fff;
  font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
}

.g-nav-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*   position: relative; */
  height: 100%;
}

.g-nav-item + li {
  margin-top: 12px;
}

.g-nav-item:hover .g-nav-child {
  -webkit-transform: scaleY(1) translateX(-50%);
          transform: scaleY(1) translateX(-50%);
}

.g-nav-link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.g-nav-link:hover {
  text-decoration: underline;
}

.g-nav-icon {
  margin: auto;
  width: 65px;
}

.g-nav-child {
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(196, 196, 196, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  padding: 24px;
  position: absolute;
  top: calc(100% + 0px);
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100vw;
}

.g-nav-childitem {
  position: relative;
}

.g-nav-childitem + .g-nav-childitem:before {
  background: #202020;
  content: "";
  height: 70%;
  left: -1em;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
}

.g-nav-link._child {
  gap: 10px;
  color: #202020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2.4rem;
  height: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.g-nav-link._child:hover {
  opacity: 0.3;
}

/* =============================================================================


     .faq

============================================================================= */
.faq-contents {
  margin-top: 68px;
}

.faq-item {
  border: 1px solid #707070;
  border-radius: 40px;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 30px;
}

.faq-item-ttl {
  background: #b20026;
  color: #fff;
  cursor: pointer;
  margin: 0;
  position: relative;
  text-align: justify;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /* そのうち1本を縦にする */
  /* プラスアイコンクリック後、マイナスにする */
}

.faq-item-ttl:hover {
  opacity: 0.7;
}

.faq-item-ttl:before, .faq-item-ttl:after {
  background: #fff;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 30px;
}

.faq-item-ttl:before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq-item-ttl.on:before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.faq-item-txtbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 24px calc(40px + 50px) 24px 40px;
}

.faq-item-txtbox._a {
  padding: 24px 40px;
}

.faq-item-txtbox._pay {
  color: #202020;
  display: block;
  padding: 60px;
}

.faq-item-txtbox dt {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, calc(1.8rem + (0.625vw * 1)), 3rem);
  font-weight: bold;
  line-height: 1.5;
  min-width: 1.5em;
  width: 1.5em;
}

.faq-item-txtbox dt._a {
  color: #b20026;
}

.faq-item-txtbox dd,
.faq-item-txtbox > span {
  font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  font-weight: bold;
  padding-left: 10px;
}

.faq-item-txtbox dd._a,
.faq-item-txtbox > span._a {
  color: #202020;
  font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
}

.faq-item-content {
  background: #fff;
  display: none;
  position: relative;
  text-align: justify;
}

/* =============================================================================


     floating


============================================================================= */
.floating-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #b20026;
  border: 1px solid #202020;
  border-radius: 30px 30px 0px 0px;
  bottom: 0px;
  color: #fff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: clamp(2.2rem, calc(2rem + (0.625vw * 1)), 3.2rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 50%;
  line-height: 1;
  padding: 0.75em;
  position: fixed;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 540px;
  z-index: 10;
}

.floating-btn:hover {
  background: #d5002d;
}

.floating-btn span {
  font-weight: bold;
}

.floating-school {
  background: #fec716;
  border: 1px solid #707070;
  border-radius: 20px 0px 0px 20px;
  bottom: 100px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 20px;
  position: fixed;
  right: 0;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10;
}

.floating-school span {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
}

.floating-school:hover {
  background: #fd0;
}

.floating-top {
  background: #b20026;
  border-radius: 50%;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  position: fixed;
  right: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 60px;
  z-index: 10;
}

.floating-top:hover {
  background: #d5002d;
}

.floating-top:before {
  background: transparent url(../asset/images/common/arrow.svg) no-repeat center center/contain;
  content: "";
  height: 30px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
}

.floating-tel {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.floating-tel span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: clamp(4.6rem, calc(4.4rem + (0.625vw * 1)), 5.6rem);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.2;
  padding-left: 0.5em;
}

/* =============================================================================


    inner-page


============================================================================= */
.ir-section-txt {
  line-height: 2;
  margin: auto;
  max-width: 700px;
  padding: 80px 0 0px;
  text-align: left;
}

.page {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  text-align: center;
}

.page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: inherit;
  background: #fff;
  border: none;
  border: 1px solid #202020;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 60px;
}

.page-numbers + .page-numbers {
  margin-left: 20px;
}

.page-numbers.current {
  background: #202020;
  color: #fff;
  cursor: default;
  opacity: 1;
}

.page-numbers.current:hover {
  background: #202020;
  color: #fff;
}

.page-numbers:hover {
  background: #202020;
  color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
  background: #b20026;
  position: relative;
}

.page-numbers.prev:before,
.page-numbers.next:before {
  background: transparent url(../asset/images/common/arrow.svg) no-repeat center center/contain;
  content: "";
  height: 28px;
  left: 0%;
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  width: 28px;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: #d5002d;
}

.page-numbers.prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* =============================================================================


     swiper


============================================================================= */
.slider-wrap {
  position: relative;
}

.swiper {
  overflow: visible;
  width: 80%;
}

.swiper-img img {
  width: 100%;
}

.swiper-button {
  background: #b20026;
  border-radius: 50%;
  cursor: pointer;
  height: 54px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 54px;
  z-index: 2;
}

.swiper-button:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 12px;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 12px;
}

.swiper-button.swiper-button-prev {
  left: 0;
  right: auto;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

/* =============================================================================


     works-category

============================================================================= */
.works-category {
  margin: 40px auto 40px;
}

.works-category-contents {
  background: #202020;
  color: #fff;
  padding: 60px 120px;
}

.works-category-ttl {
  font-family: "Oswald", sans-serif;
  font-size: 3.8rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
}

.works-category-list {
  gap: 30px 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}

.works-category-item {
  width: calc(50% - 40px);
}

.works-category-item a {
  font-size: 2.4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.works-category-item a:hover {
  opacity: 0.7;
}

#dialog {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  position: fixed;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 100vw;
  z-index: 9999999999;
}

#dialog .dialog-box {
  background: #2748cf;
  border-radius: 0px;
  color: #fff;
  left: 50%;
  max-width: calc(100% - 16px);
  min-width: 640px;
  padding: 60px 20px;
  position: relative;
  position: fixed;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 9999999999;
}

#dialog .dialog-text {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1em;
}

#dialog button#cancel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #202020;
  border: 3px solid #202020;
  border-radius: 18px;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 3.9px;
  line-height: normal;
  margin: auto;
  margin-top: 30px;
  padding: 0.25em 0;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 300px;
}

#dialog button:hover {
  opacity: 0.7;
}

/* =============================================================================


     footer


============================================================================= */
footer {
  background: #202020;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 30px;
  position: relative;
  /*   mix-blend-mode: multiply;
  opacity: 0.9; */
  z-index: 1;
}

footer:before, footer:after {
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

footer:before {
  background: transparent url(../asset/images/common/footer-bg.jpg) no-repeat top center/cover;
}

footer:after {
  background: #202020;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-logo {
  width: 200px;
}

.footer-store {
  margin-left: 60px;
}

.footer-other {
  margin-left: 48px;
}

.footer-storename {
  font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  font-weight: 400;
}

.footer-storetxt {
  font-size: 1.4rem;
  margin-top: 4px;
}

.footer-storetxt a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-storetxt a:hover {
  opacity: 0.7;
}

.footer-time {
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-time span {
  font-size: 1.4rem;
  font-weight: 300;
}

.footer-sns-list {
  gap: 8px 10px;
  display: grid;
  grid-template-columns: repeat(4, 50px);
  grid-template-rows: auto 1fr;
  margin-top: 20px;
  text-align: center;
}

.footer-sns {
  margin: auto;
  width: 30px;
}

.footer-sns a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}

.footer-item {
  font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
}

.footer-item + li {
  margin-top: 12px;
}

.footer-link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-nav-head {
  border: 1px solid #fff;
  border-radius: 10px;
  display: inline-block;
  font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0.5em 0.75em;
}

.footer-affiliated-list {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-affiliated-item {
  max-width: 320px;
}

.footer-affiliated-btn {
  background: #003cff;
  border-radius: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  padding: 1.25em 1em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer-affiliated-btn:hover {
  background: #0b39b9;
}

.footer-affiliated-btn._matsuzaka {
  background: #ffd500;
  color: #202020;
}

.footer-affiliated-btn._matsuzaka:hover {
  background: #ffb300;
}

.footer-copy {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin-top: 120px;
  text-align: center;
}

.footer-sns-box {
  font-size: 1.2rem;
  grid-area: 1 / 3 / 2 / 5;
}

.footer-sns-box:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}

/* =============================================================================


     header


============================================================================= */
header {
  background: #202020;
  -webkit-box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 5px 5px 5px 1px rgba(0, 0, 0, 0.2);
  height: 0;
  height: 0;
  left: 0;
  padding: 0px;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
  width: 100%;
  z-index: 20;
}

.header-link {
  display: block;
  height: 140px;
  left: 40px;
  position: fixed;
  top: 40px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 200px;
  z-index: 1000000;
}

.is-checked .header-link {
  height: 80px;
  left: 20px;
  top: 20px;
  width: 110px;
}

.header-link:hover {
  opacity: 0.7;
}

.header-logo {
  background: transparent url(../asset/images/common/logo_tsu.svg) no-repeat center/contain;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.header-contents {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  z-index: 2;
}

.header-nav-container {
  height: 100%;
  margin-right: 280px;
  z-index: 100;
}

[data-scroll="true"] header {
  height: 100px;
}

[data-scroll="true"] header .header-link {
  height: 80px;
  left: 20px;
  top: 20px;
  width: 110px;
}

/* =============================================================================


     subfooter


============================================================================= */
.lesson-banner-link {
  background: #b20026;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding: 48px 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}

.lesson-banner-link:before {
  background: #d5002d;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 30%);
          clip-path: polygon(100% 0, 0 0, 0 30%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}

.lesson-banner-link:hover {
  background: #d5002d;
}

.lesson-banner-ttl {
  color: #202020;
  font-family: "Oswald", sans-serif;
  font-size: clamp(12.4rem, calc(12.2rem + (0.625vw * 1)), 13.4rem);
  font-weight: bold;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 2;
}

.lesson-banner-txt {
  color: #fff;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.map iframe {
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  height: 500px;
  width: 100%;
}

.about {
  background: #d5002d;
  color: #fff;
  padding: 120px 0;
  position: relative;
}

.about:before {
  background: #b20026;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 30%);
          clip-path: polygon(100% 0, 0 0, 0 30%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.about-list {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 36px;
}

.about-item {
  width: calc(50% - 15px);
}

.about-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 10px;
  color: #202020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(2.8rem, calc(2.6rem + (0.625vw * 1)), 3.8rem);
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 10px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.about-btn:hover {
  background: #202020;
  color: #fff;
}

.sub_contact {
  background: transparent url(../asset/images/common/contact_bg.jpg) no-repeat top center/cover;
  color: #fff;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.sub_contact:after {
  background: #202020;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 30%);
          clip-path: polygon(100% 0, 0 0, 0 30%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.sub_contact:before {
  background: rgba(32, 32, 32, 0.4);
  content: "";
  height: 100%;
  left: 50%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.sub_contact-contents {
  background: rgba(32, 32, 32, 0.7);
  border: 1px solid #fff;
  border-radius: 10px;
  margin-top: 48px;
  padding: 60px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
}

.sub_contact-txt {
  font-size: clamp(1.4rem, calc(1.2rem + (0.625vw * 1)), 2.4rem);
  text-align: center;
}

.sub_contact-btnbox {
  margin-top: 30px;
  text-align: center;
}

.sub_contact-btnbox + .sub_contact-btnbox {
  margin-top: 15px;
}

.lesson-banner-tel {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Oswald", sans-serif;
  font-size: clamp(6.4rem, calc(6.2rem + (0.625vw * 1)), 7.4rem);
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.lesson-banner-tel span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: clamp(9.4rem, calc(9.2rem + (0.625vw * 1)), 10.4rem);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.2;
  padding-left: 0.3em;
}

.sub_contact-tel {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.5em;
  position: relative;
  text-align: center;
  z-index: 2;
}

.sub_contact-tel span {
  font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  margin-left: 0.15em;
}

.btn._sub_contact._tel {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  max-width: 560px;
  width: 560px;
}

.pc-dis {
  display: none;
}

.tab-none {
  display: block;
}

.tab-dis {
  display: none;
}

.sp-none {
  display: block;
}

.sp-dis {
  display: none;
}

@media (max-width: 1366px){
  .pc-dis {
    display: block;
  }
}

@media (max-width: 1228px){
  .inner._header {
    margin: auto;
    padding: 0 16px;
    width: 100%;
  }
  .inner {
    min-width: unset;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  .pagebtn-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pagebtn {
    font-size: 1.8rem;
    padding: 1em 0.5em;
  }
  .head-ttl-jp {
    font-size: clamp(3.8rem, calc(3.6rem + (0.625vw * 1)), 4.8rem);
  }
  .head-ttl-jp._sm {
    font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  }
  .submv {
    max-height: 700px;
  }
  .submv-ttl-en {
    font-size: clamp(9.4rem, calc(9.2rem + (0.625vw * 1)), 10.4rem);
  }
  .pageheader {
    padding-bottom: 120px;
  }
  .pageheader-head {
    font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  }
  .page-sns-list {
    gap: 20px;
    right: 8px;
  }
  .page-snslink {
    width: 20px;
  }
  .section {
    padding: 100px 0;
  }
  .gray:before {
    -webkit-clip-path: polygon(0 100px, 100% 0%, 100% calc(100% - 100px), 0% 100%);
            clip-path: polygon(0 100px, 100% 0%, 100% calc(100% - 100px), 0% 100%);
  }
  .gray {
    padding: 160px 0;
  }
  .drawer-bars:before {
    height: 54px;
    width: 54px;
  }
  .drawer-content--right {
    left: auto;
    right: 0;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  .drawer-content--left {
    left: 0;
    right: auto;
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .g-navbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .g-nav-item + li {
    margin-top: 16px;
  }
  .g-nav-item:hover .g-nav-child {
    -webkit-transform: none;
            transform: none;
  }
  .g-nav-link {
    height: auto;
  }
  .g-nav-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .g-nav-child {
    gap: 10px;
    gap: 10px;
    background: none;
    border: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: auto;
    margin-top: 10px;
    padding: 10px;
    padding: 0;
    position: relative;
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: auto;
  }
  .g-nav-childitem + .g-nav-childitem:before {
    display: none;
  }
  .g-nav-child-img {
    display: none;
  }
  .g-nav-link._child {
    color: #fff;
    font-size: 1.6rem;
    width: auto;
  }
  .faq-item-txtbox dd._a,
  .faq-item-txtbox > span._a {
    margin-top: clamp(-0.2rem, calc(-0.4rem + (0.625vw * 1)), 0.8rem);
  }
  .works-category-contents {
    padding: 40px 60px;
  }
  .works-category-ttl {
    font-size: 3.4rem;
  }
  .works-category-list {
    gap: 30px 40px;
  }
  .works-category-item {
    text-align: center;
    width: calc(50% - 20px);
  }
  .works-category-item a {
    font-size: 1.8rem;
  }
  .footer-logo {
    width: 160px;
  }
  .footer-store {
    margin-left: 30px;
    min-width: 230px;
  }
  .footer-other {
    margin-left: 20px;
  }
  .footer-contents {
    gap: 30px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-affiliated-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    width: 100%;
  }
  .header-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .lesson-banner-ttl {
    font-size: clamp(9.4rem, calc(9.2rem + (0.625vw * 1)), 10.4rem);
  }
  .about-btn {
    font-size: clamp(2.2rem, calc(2rem + (0.625vw * 1)), 3.2rem);
  }
  .lesson-banner-tel {
    font-size: clamp(5.4rem, calc(5.2rem + (0.625vw * 1)), 6.4rem);
  }
  .lesson-banner-tel span {
    font-size: clamp(7.4rem, calc(7.2rem + (0.625vw * 1)), 8.4rem);
  }
  .tab-none {
    display: none;
  }
  .tab-dis {
    display: block;
  }
}

@media (max-width: 767px){
  .delay-time01 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .delay-time02 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .delay-time04 {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  body {
    font-size: 1.4rem;
    min-width: unset;
  }
  input,
  textarea {
    width: 100%;
  }
  input[type="submit"], input[type="button"] {
    font-size: 1.6rem;
  }
  input,
  textarea {
    font-size: 1.6rem;
    width: 100%;
  }
  input,
  select {
    height: 50px;
  }
  textarea {
    height: 200px;
  }
  input[type="submit"], input[type="button"] {
    font-size: 1.6rem;
  }
  select {
    font-size: 1.6rem;
    width: 100%;
  }
  input[type="checkbox"] + span,
  input[type="radio"] + span {
    padding-left: 2em;
  }
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btn {
    font-size: 1.8rem;
    min-width: 180px;
    padding-right: 50px;
  }
  .btn:hover span {
    right: 12px;
  }
  .btn > span {
    right: 24px;
  }
  .pagebtn-list {
    gap: 20px;
    max-width: 600px;
  }
  .pagebtn-item {
    width: calc(50% - 20px);
  }
  .can-ex {
    font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  }
  .can-btn {
    font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
    height: 80px;
    max-width: 320px;
    width: 100%;
  }
  .can-btn > span {
    border: 1.5px solid #fff;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
  }
  .can-btn > span:before {
    height: 10px;
    right: 16px;
    width: 10px;
  }
  .can-ttl {
    font-size: clamp(3.4rem, calc(3.2rem + (0.625vw * 1)), 4.4rem);
  }
  .can-ttl span {
    font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  }
  .cam-lists {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cam-item {
    font-size: clamp(2rem, calc(1.8rem + (0.625vw * 1)), 3rem);
    padding: 0.15em 0.5em;
  }
  .cam-list-txt {
    font-size: clamp(2rem, calc(1.8rem + (0.625vw * 1)), 3rem);
  }
  .cam-figure._off {
    margin-top: 28px;
  }
  .cam-exs {
    font-size: clamp(1.2rem, calc(1rem + (0.625vw * 1)), 2.2rem);
  }
  .head-ttl-en {
    font-size: clamp(1.2rem, calc(1rem + (0.625vw * 1)), 2.2rem);
  }
  .head-ttl-en._sm {
    font-size: 1.2rem;
  }
  .head-ttl-jp {
    font-size: clamp(3rem, calc(2.8rem + (0.625vw * 1)), 4rem);
  }
  .head-ttl-jp._sm {
    font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  }
  .submv {
    height: 80vw;
    min-height: 300px;
  }
  .submv:after {
    -webkit-clip-path: polygon(0 75px, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 75px, 100% 0, 100% 100%, 0% 100%);
  }
  .submv-ttl {
    margin-bottom: 20px;
  }
  .submv-ttl-en {
    font-size: clamp(6.4rem, calc(6.2rem + (0.625vw * 1)), 7.4rem);
  }
  .submv-ttl-jp {
    font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
  }
  .submv-scroll {
    bottom: 100px;
    font-size: clamp(1rem, calc(0.8rem + (0.625vw * 1)), 2rem);
    left: 8px;
  }
  .pageheader-head {
    font-size: clamp(2rem, calc(1.8rem + (0.625vw * 1)), 3rem);
    margin-top: 10px;
  }
  .pageheader-txt {
    font-size: 1.4rem;
  }
  .pageheader-txt._c {
    margin: 20px auto 0;
    max-width: 480px;
    text-align: left;
  }
  .page-sns-list {
    gap: 8px;
  }
  .page-snslink {
    width: 16px;
  }
  .section {
    padding: 80px 0;
  }
  .gray:before {
    -webkit-clip-path: polygon(0 70px, 100% 0%, 100% calc(100% - 70px), 0% 100%);
            clip-path: polygon(0 70px, 100% 0%, 100% calc(100% - 70px), 0% 100%);
  }
  .gray {
    padding: 100px 0;
  }
  .pageheader {
    padding: 50px 0 80px;
  }
  .page_lesson-txt {
    font-size: 1.4rem;
    margin-top: 40px;
  }
  .is-checked .drawer,
  [data-scroll="true"] .drawer {
    right: 5px;
    top: 5px;
  }
  .drawer {
    height: 50px;
    right: 5px;
    top: 5px;
    width: 50px;
  }
  .drawer-bars {
    height: 11px;
    width: 28px;
  }
  .drawer-bars:after {
    font-size: 1rem;
    margin-top: 0.25em;
  }
  .drawer-bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-bar:nth-of-type(3) {
    top: 18px;
  }
  .drawer-content.is-checked {
    top: 68px;
  }
  .drawer-content {
    top: 68px;
  }
  .drawer-content--top {
    padding-top: 100px;
  }
  .drawer-bg:before {
    height: 68px;
  }
  .drawer-navbox {
    max-height: calc(100vh - 68px);
  }
  .g-navbox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0 40px;
  }
  .g-nav-list {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  }
  .g-nav-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(50% - 10px);
  }
  .g-nav-item + li {
    margin-top: 0px;
  }
  .g-nav-icon {
    width: 40px;
  }
  .faq-item-ttl:before, .faq-item-ttl:after {
    right: 20px;
    width: 20px;
  }
  .faq-item-txtbox._a {
    padding: 18px calc(20px);
  }
  .faq-item-txtbox._pay {
    padding: 18px calc(20px);
  }
  .faq-item-txtbox {
    padding: 18px calc(20px + 40px) 26px 20px;
  }
  .faq-item-txtbox dt {
    line-height: 1.3;
    min-width: 1.5em;
    width: 1.5em;
  }
  .faq-item-txtbox dd,
  .faq-item-txtbox > span {
    font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
    padding-left: 0;
  }
  .faq-item-txtbox dd._a,
  .faq-item-txtbox > span._a {
    font-size: clamp(1.4rem, calc(1.2rem + (0.625vw * 1)), 2.4rem);
    margin-top: clamp(0rem, calc(-0.2rem + (0.625vw * 1)), 1rem);
  }
  .floating-btn {
    border-radius: 15px 15px 0 0;
    font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
    max-width: 100%;
    padding: 10px;
  }
  .floating-school span {
    font-size: 1.2rem;
  }
  .floating-school {
    bottom: 140px;
    font-size: 1.4rem;
    padding: 12px;
  }
  .floating-top {
    bottom: 90px;
    height: 40px;
    right: 10px;
    width: 40px;
  }
  .floating-top:before {
    height: 15px;
    width: 15px;
  }
  .floating-tel {
    font-size: clamp(2.4rem, calc(2.2rem + (0.625vw * 1)), 3.4rem);
  }
  .floating-tel span {
    font-size: clamp(3.4rem, calc(3.2rem + (0.625vw * 1)), 4.4rem);
  }
  .ir-section-txt {
    padding: 60px 0 0px;
  }
  .page {
    margin-top: 40px;
  }
  .page-numbers {
    font-size: 1.6rem;
    height: 40px;
    width: 40px;
  }
  .page-numbers + .page-numbers {
    margin-left: 10px;
  }
  .page-numbers.prev:before,
  .page-numbers.next:before {
    height: 20px;
    width: 20px;
  }
  .works-category-contents {
    padding: 28px 20px;
  }
  .works-category-ttl {
    font-size: 2.6rem;
  }
  .works-category-list {
    gap: 20px 12px;
  }
  .works-category-item {
    text-align: left;
    width: calc(50% - 6px);
  }
  .works-category-item a {
    font-size: 1.4rem;
  }
  #dialog .dialog-box {
    padding: 16px;
  }
  #dialog .dialog-box {
    min-width: 300px;
  }
  #dialog .dialog-text {
    font-size: 2.4rem;
  }
  footer {
    padding: 60px 0;
  }
  .footer-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-store {
    margin-left: 0;
    margin-top: 10px;
  }
  .footer-other {
    margin-left: 0;
    margin-top: 20px;
  }
  .footer-time {
    font-size: 1.5rem;
  }
  .footer-time span {
    font-size: 1.2rem;
  }
  .footer-list {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 16px;
  }
  .footer-item {
    font-size: clamp(1.6rem, calc(1.4rem + (0.625vw * 1)), 2.6rem);
    text-align: center;
    width: calc(50% - 10px);
  }
  .footer-item + li {
    margin-top: 0px;
  }
  .footer-categorynav {
    margin-top: 20px;
    text-align: center;
  }
  .footer-nav-head {
    font-size: clamp(2rem, calc(1.8rem + (0.625vw * 1)), 3rem);
    text-align: center;
  }
  .footer-affiliated-list {
    gap: 10px;
    margin-top: 20px;
  }
  .footer-affiliated-btn {
    font-size: clamp(2.2rem, calc(2rem + (0.625vw * 1)), 3.2rem);
  }
  .is-checked .header-link {
    height: 50px;
    left: 5px;
    top: 5px;
    width: 70px;
  }
  .header-link {
    height: 50px;
    left: 10px;
    top: 5px;
    width: 70px;
  }
  .header-nav-container {
    height: auto;
    margin-bottom: auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: auto;
  }
  [data-scroll="true"] header .header-link {
    height: 50px;
    left: 10px;
    top: 5px;
    width: 70px;
  }
  [data-scroll="true"] header {
    height: 60px;
  }
  .lesson-banner-ttl {
    font-size: clamp(5.8rem, calc(5.6rem + (0.625vw * 1)), 6.8rem);
  }
  .lesson-banner-txt {
    font-size: clamp(2.2rem, calc(2rem + (0.625vw * 1)), 3.2rem);
  }
  .lesson-banner-txt {
    font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  }
  .about {
    padding: 60px 0;
  }
  .about-btn {
    font-size: clamp(1.8rem, calc(1.6rem + (0.625vw * 1)), 2.8rem);
  }
  .sub_contact {
    padding: 60px 0;
  }
  .sub_contact-contents {
    padding: 20px;
  }
  .lesson-banner-tel {
    font-size: clamp(2.9rem, calc(2.7rem + (0.625vw * 1)), 3.9rem);
  }
  .lesson-banner-tel span {
    font-size: clamp(4.9rem, calc(4.7rem + (0.625vw * 1)), 5.9rem);
  }
  .btn._sub_contact._tel {
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 18px 25px 18px 25px;
    width: 100%;
  }
  .sp-none {
    display: none;
  }
  .sp-dis {
    display: block;
  }
}

@media (min-width: 1366px){
  html {
    font-size: calc(62.5% * 1.0125);
  }
}


/*# sourceMappingURL=common.css.map*/