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


     追加


***************************************/
/*最小値:$value+0.2 → 可変（$value + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px,2560px:12px））→ 最大値:$value + 1.2*/
body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: lh(40, 22);
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.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.07em;
  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


============================================================================= */
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;
  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: #f0f0f0;
  background-image: none;
  border: none;
  border: 1px solid #000000;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #231815;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  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: 60px;
}

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: inherit;
  background-image: none;
  border: none;
  border-radius: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-weight: bold;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  width: 100%;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=button]:hover, input[type=button]:focus {
  background: inherit;
  color: inherit;
}
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: #231815;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  min-width: 5em;
  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 #231815;
  border-radius: 50%;
  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 {
  -webkit-transform: translateY(-50%);
  /*       border-bottom: 2px solid $cr_txt;
  border-left: 2px solid $cr_txt;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1em; */
  background: #231815;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 12px;
}
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,
input[type=radio] + input + span {
  cursor: pointer;
  display: inline-block;
  line-height: 2;
  margin: 0;
  padding: 0 0 0 1.5em;
  position: relative;
}

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

input[type=radio] + span::before,
input[type=radio] + input + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: none;
  border: 1px solid #231815;
  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,
input[type=radio] + input + span::after {
  -webkit-transform: translateY(-50%);
  background: #000;
  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,
input[type=radio]:checked + input + span::after {
  opacity: 1;
}

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


    privacy


============================================================================= */
.privacy {
  margin: 100px auto 0;
}

.privacy-ttl {
  color: #231815;
  font-size: 2rem;
  text-align: center;
}

.privacy-content {
  background: #fff;
  border: 1px solid #534741;
  font-size: 1.6rem;
  height: 330px;
  line-height: 2;
  margin-top: 20px;
  max-height: 330px;
  overflow-y: auto;
  padding: 2rem;
}

.privacy-item {
  margin-top: 1em;
  text-align: center;
}

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


    form


============================================================================= */
.contact-form {
  margin: auto;
  max-width: 980px;
}

.contact-list {
  margin: auto;
  max-width: 680px;
}

.contact-item {
  gap: 1em;
  -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: 2rem;
  font-weight: bold;
}
.contact-item + .contact-item {
  margin-top: 32px;
}
.contact-item._name {
  padding-bottom: 0;
}

.form-content {
  padding: 0px 0 160px;
  position: relative;
  z-index: 1;
}
.form-content._form:before {
  background: #f7f5f1;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  z-index: -1;
}

.contact-container form {
  margin: auto;
  overflow: hidden;
  padding: 100px 0 0;
}

.contact-item-ttl {
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0;
  line-height: 1.45;
  margin-top: 0.5em;
}
.contact-list._comfirm .contact-item-ttl {
  margin-top: 0;
}
.contact-item-ttl .re {
  background: #0071bb;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 0.3em;
  padding: 0 0.5em;
  white-space: nowrap;
}
.contact-item-ttl._accept {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  text-align: center;
  width: 100%;
}

/* .contact-list {
  margin-top: 80px;
}
 */
.contact-radio span {
  display: block;
}

.contact-input-box {
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
}
.contact-input-box._num {
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 5em;
}
.contact-input-box._sm {
  width: 30%;
}
.contact-input-box._mid {
  width: 50%;
}

/***********************
   確認画面
***********************/
.contact-list._comfirm .contact-input-box {
  min-height: 50px;
}
.contact-list._comfirm .contact-input-box .comfirm-input {
  background: #eee;
  border: 1px solid #231815;
  min-height: 50px;
  padding: 8px;
}

.contact-input-box._year {
  gap: 0.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-input-box._year .year-item {
  gap: 0.25em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 4em;
}
.contact-input-box._year .year-item:nth-of-type(1) {
  width: 5em;
}
.contact-input-box._year._comfirm {
  gap: 0;
}
.contact-input-box._year._comfirm .year-item {
  gap: 0em;
  width: auto;
}
.contact-input-box._year._comfirm .year-item:nth-of-type(1) {
  width: auto;
}

.zip-input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
  width: 100%;
}
.zip-input input {
  max-width: 8em;
}

input#your-zip {
  width: 7em;
}

.contact-input-box._name {
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-input-box._name .your-name {
  /*     width: 50%; */
  width: 100%;
}

.contact-input-box._zip {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-input-box._year input {
  margin-right: 0.5em;
  width: 5em;
}
.contact-input-box._year .span {
  display: inline-block;
}

.contact-radio .radio-flex {
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-input-box._email input + input {
  margin-top: 10px;
}
.contact-input-box._email > span input {
  margin-bottom: 10px;
}

.contact-input-box._address {
  gap: 10px;
  -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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-input-box._address .zip {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-input-box._address .zip + span {
  width: 100%;
}
.contact-input-box._address .zip + span + span {
  width: 100%;
}

.contact-input-box._check .wpcf7-checkbox {
  gap: 0.5em 0%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-input-box._check .wpcf7-checkbox > span {
  width: calc(33.3333% - 1em);
}
.contact-input-box._check .wpcf7-checkbox {
  /*   @include mq('sp'){
    gap:5%;

    >span{}
  } */
}

.contact-span {
  font-size: 2rem;
  margin-top: 8px;
  padding-left: 1em;
  text-indent: -1em;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item + .wpcf7-list-item {
  margin-left: 0px;
}

.contact-input-box .wpcf7-radio {
  /*   display: flex;
  gap: 0 80px;
  justify-content: flex-start;
  flex-wrap: wrap; */
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-input-box._type .wpcf7-radio {
  gap: 0 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 600px;
}

.check-box-head {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.check-box-container {
  background: #fff;
  border: 1px solid #534741;
  height: 350px;
  line-height: 2;
  margin: 32px auto 0;
  max-width: 680px;
  overflow: auto;
  padding: 28px 40px;
}

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


     form


============================================================================= */
.contact-btn-box {
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 120px auto 0;
}

.contact-btn {
  margin: auto;
}
.contact-btn input {
  background: transparent;
  border-radius: inherit;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  height: 100%;
  padding: 0;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.contact-btn input:hover {
  background: inherit;
  color: inherit;
}

.contact-list._comfirm + .form-btn-contents {
  padding-top: 80px;
}

.form-btn-box {
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
  position: relative;
}

.form-btn-boxspan {
  bottom: calc(100% + 20px);
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
}

.form-btn-boxspan2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
  width: 100%;
}

.form-cloudflare {
  margin: 20px auto;
  text-align: center;
}

.inner {
  height: inherit;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  position: relative;
  width: 1080px;
  /*   min-width: $layout-width-inner; */
}
.inner._header {
  margin: 0 0 0 auto;
  width: 98%;
}
.inner._big {
  width: 95%;
}
.inner._middle {
  width: 90%;
}

.main {
  overflow: hidden;
}

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


     btn


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

.btn,
button,
.form-btn,
.content-form button,
#subscription-cancel-button,
#subscription-search-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #5a6466;
  border: 1px solid #5a6466;
  border-radius: 0rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2rem;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 260px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  width: 100%;
}
.btn.bk,
button.bk,
.form-btn.bk,
.content-form button.bk,
#subscription-cancel-button.bk,
#subscription-search-button.bk {
  background: #231815;
  border-color: #231815;
}
.btn.bk:hover,
button.bk:hover,
.form-btn.bk:hover,
.content-form button.bk:hover,
#subscription-cancel-button.bk:hover,
#subscription-search-button.bk:hover {
  background: #fff;
  color: #231815;
}
.btn.bk:hover span,
button.bk:hover span,
.form-btn.bk:hover span,
.content-form button.bk:hover span,
#subscription-cancel-button.bk:hover span,
#subscription-search-button.bk:hover span {
  background: #231815;
}
.btn.br,
button.br,
.form-btn.br,
.content-form button.br,
#subscription-cancel-button.br,
#subscription-search-button.br {
  border-radius: 5rem;
  padding: 3rem 0.8rem;
}
.btn.bl,
button.bl,
.form-btn.bl,
.content-form button.bl,
#subscription-cancel-button.bl,
#subscription-search-button.bl {
  background: #005fae;
  border-color: #005fae;
  padding: 2rem 0.8rem;
  text-align: left;
}
.btn.bl:hover,
button.bl:hover,
.form-btn.bl:hover,
.content-form button.bl:hover,
#subscription-cancel-button.bl:hover,
#subscription-search-button.bl:hover {
  background: #fff;
  color: #005fae;
}
.btn.bl:hover span,
button.bl:hover span,
.form-btn.bl:hover span,
.content-form button.bl:hover span,
#subscription-cancel-button.bl:hover span,
#subscription-search-button.bl:hover span {
  background: #005fae;
}
.btn.blue,
button.blue,
.form-btn.blue,
.content-form button.blue,
#subscription-cancel-button.blue,
#subscription-search-button.blue {
  background: #005fae;
  border-color: #005fae;
}
.btn.blue:hover,
button.blue:hover,
.form-btn.blue:hover,
.content-form button.blue:hover,
#subscription-cancel-button.blue:hover,
#subscription-search-button.blue:hover {
  background: #fff;
  color: #005fae;
}
.btn.blue:hover span,
button.blue:hover span,
.form-btn.blue:hover span,
.content-form button.blue:hover span,
#subscription-cancel-button.blue:hover span,
#subscription-search-button.blue:hover span {
  background: #005fae;
}
.btn._group,
button._group,
.form-btn._group,
.content-form button._group,
#subscription-cancel-button._group,
#subscription-search-button._group {
  background: #005fae;
  border-color: #005fae;
  max-width: 300px;
}
.btn._group:hover,
button._group:hover,
.form-btn._group:hover,
.content-form button._group:hover,
#subscription-cancel-button._group:hover,
#subscription-search-button._group:hover {
  background: #fff;
  color: #005fae;
}
.btn._group:hover span,
button._group:hover span,
.form-btn._group:hover span,
.content-form button._group:hover span,
#subscription-cancel-button._group:hover span,
#subscription-search-button._group:hover span {
  background: #005fae;
}
.btn._sus,
button._sus,
.form-btn._sus,
.content-form button._sus,
#subscription-cancel-button._sus,
#subscription-search-button._sus {
  background: #39b44a;
  border-color: #39b44a;
  max-width: 300px;
}
.btn._sus:hover,
button._sus:hover,
.form-btn._sus:hover,
.content-form button._sus:hover,
#subscription-cancel-button._sus:hover,
#subscription-search-button._sus:hover {
  background: #fff;
  color: #39b44a;
}
.btn._sus:hover span,
button._sus:hover span,
.form-btn._sus:hover span,
.content-form button._sus:hover span,
#subscription-cancel-button._sus:hover span,
#subscription-search-button._sus:hover span {
  background: #39b44a;
}
.btn._back,
button._back,
.form-btn._back,
.content-form button._back,
#subscription-cancel-button._back,
#subscription-search-button._back {
  background: #fff;
  color: #5a6466;
}
.btn._back span,
button._back span,
.form-btn._back span,
.content-form button._back span,
#subscription-cancel-button._back span,
#subscription-search-button._back span {
  background: #5a6466;
}
.btn._back span:before, .btn._back span:after,
button._back span:before,
button._back span:after,
.form-btn._back span:before,
.form-btn._back span:after,
.content-form button._back span:before,
.content-form button._back span:after,
#subscription-cancel-button._back span:before,
#subscription-cancel-button._back span:after,
#subscription-search-button._back span:before,
#subscription-search-button._back span:after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.btn._back:hover,
button._back:hover,
.form-btn._back:hover,
.content-form button._back:hover,
#subscription-cancel-button._back:hover,
#subscription-search-button._back:hover {
  background: #5a6466;
  color: #fff;
}
.btn._back:hover span,
button._back:hover span,
.form-btn._back:hover span,
.content-form button._back:hover span,
#subscription-cancel-button._back:hover span,
#subscription-search-button._back:hover span {
  background: #f9f3d7;
}
.btn._back:hover span:before, .btn._back:hover span:after,
button._back:hover span:before,
button._back:hover span:after,
.form-btn._back:hover span:before,
.form-btn._back:hover span:after,
.content-form button._back:hover span:before,
.content-form button._back:hover span:after,
#subscription-cancel-button._back:hover span:before,
#subscription-cancel-button._back:hover span:after,
#subscription-search-button._back:hover span:before,
#subscription-search-button._back:hover span:after {
  border-right: 1px solid #5a6466;
  border-top: 1px solid #5a6466;
}
.btn:hover,
button:hover,
.form-btn:hover,
.content-form button:hover,
#subscription-cancel-button:hover,
#subscription-search-button:hover {
  background: #fff;
  color: #5a6466;
}
.btn:hover span,
button:hover span,
.form-btn:hover span,
.content-form button:hover span,
#subscription-cancel-button:hover span,
#subscription-search-button:hover span {
  background: #5a6466;
}
.btn > span,
button > span,
.form-btn > span,
.content-form button > span,
#subscription-cancel-button > span,
#subscription-search-button > span {
  background: white;
  border-radius: 0%;
  height: 2px;
  left: 0px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 35px;
}
.btn > span:before,
button > span:before,
.form-btn > span:before,
.content-form button > span:before,
#subscription-cancel-button > span:before,
#subscription-search-button > span:before {
  background: inherit;
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: -2.5px;
  top: -2.5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 7px;
}

.form-btn {
  background: #0071bb;
  border: 1px solid #0071bb;
}
.form-btn:hover {
  color: #0071bb;
}

.btn,
button,
input[type=submit],
input[type=button] {
  padding: 2rem 0.8rem;
}

#action-button {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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


     common


============================================================================= */
.sec {
  padding: 100px 0;
}
.sec:nth-last-of-type(1) {
  padding-bottom: 120px;
}

.submv {
  position: relative;
}
.submv .inner {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.submv-img {
  height: 570px;
  position: relative;
}
.submv-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.submv-img:before {
  background: #00558c;
  content: "";
  height: 100%;
  left: 50%;
  mix-blend-mode: multiply;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
.submv-img.gr:before {
  background: #2e6400;
}

.submv-ttl-jp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 5rem;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.common-ttlbox {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
}
.common-ttlbox._b {
  color: #0071bb;
}

.common-ttl-en {
  font-size: clamp(4.2rem, 7vw, 10rem);
  line-height: 1;
}

.common-ttl-jp {
  font-size: clamp(2rem, 2.8vw, 3.6rem);
  font-weight: 600;
}

.section-ttl-en {
  color: #005fae;
  font-size: clamp(3rem, 6vw, 9rem);
  line-height: 1;
  text-align: center;
}

.section-ttl-jp {
  font-size: clamp(2rem, 3vw, 5rem);
  text-align: center;
}

.submv-btn {
  aspect-ratio: 1/1;
  background: #ff684e;
  border: 1px solid #ff684e;
  bottom: 0;
  color: #fff;
  display: inline-block;
  position: fixed;
  right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10;
}
.submv-btn:hover {
  background: #fff;
  color: #ff684e;
}
.submv-btn:hover .submv-btn-txt span {
  background: #ff684e;
}

.submv-btn-txtbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.submv-btn-ttl {
  font-size: 3rem;
  padding: 0 20px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.submv-btn-txt {
  font-size: 1.4rem;
  margin-top: 40px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.submv-btn-txt > span {
  background: white;
  border-radius: 0%;
  height: 2px;
  left: 0px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 25px;
}
.submv-btn-txt > span:before {
  background: inherit;
  border-radius: 50%;
  content: "";
  height: 7px;
  position: absolute;
  right: -2.5px;
  top: -2.5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 7px;
}

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


    inner


============================================================================= */
.inner-list {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.inner-item {
  background: rgba(0, 95, 174, 0.3);
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  padding: 30px 10vw;
}
.inner-item:nth-of-type(2) {
  background: rgba(252, 92, 67, 0.3);
}

.inner-icon {
  margin: 0 auto;
  width: 40px;
}

.inner-ttl {
  font-size: 5rem;
  margin-top: 20px;
  text-align: center;
}

.inner-ttl-en {
  color: #005fae;
  font-size: 3rem;
  text-align: center;
}
.inner-ttl-en._require {
  color: #fc5c43;
}

.inner-txt {
  font-size: 2rem;
  line-height: 2;
  margin-top: 20px;
  text-align: center;
}

.inner-btnbox {
  margin: 48px 0 0;
}

.inner-btn {
  background: #000;
  border-color: #000;
  width: 100%;
}
.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: transparent;
  border: none;
  border-radius: 0;
  color: #231815;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.6rem;
  font-weight: 900;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: auto;
}

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

.page-numbers.current,
.page-numbers:hover {
  background: transparent;
  color: #005fae;
  cursor: default;
  opacity: 1;
}

.page-numbers.prev,
.page-numbers.next {
  background: #fff;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: auto;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: #a52933;
}
.page-numbers.prev:hover:before, .page-numbers.prev:hover:after,
.page-numbers.next:hover:before,
.page-numbers.next:hover:after {
  background: #fff;
}
.page-numbers.prev:before, .page-numbers.prev:after,
.page-numbers.next:before,
.page-numbers.next:after {
  background: #a52933; /*線の色*/
  border-radius: 100px;
  /* content: ""; */
  display: block;
  height: 2px; /*線の太さ*/
  left: calc(50% - 6px);
  position: absolute;
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 12px; /*線の長さ*/
}
.page-numbers.prev:after,
.page-numbers.next:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /*角度*/
}

.page-numbers.prev {
  margin-left: 0;
  margin-right: auto;
}
.page-numbers.prev:before, .page-numbers.prev:after {
  left: auto;
  right: calc(50% + 2px);
  -webkit-transform: rotate(45deg) scale(-1, 1);
          transform: rotate(45deg) scale(-1, 1);
}
.page-numbers.prev:after {
  -webkit-transform: rotate(-45deg) scale(-1, 1);
          transform: rotate(-45deg) scale(-1, 1); /*角度*/
}

.page-numbers + .page-numbers.next {
  margin-left: auto;
}

.drawer {
  background: #5a6466;
  cursor: pointer;
  height: 100px;
  position: fixed;
  right: 0px;
  top: 0px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100px;
  z-index: 40;
  z-index: 100;
}

.drawer-close {
  background: #000;
  cursor: pointer;
  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 {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  color: inherit;
  cursor: pointer;
  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: 41px;
  left: 50%;
  margin: auto;
  position: relative;
  position: absolute;
  top: -0.5em;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  vertical-align: bottom;
  width: 100%;
  width: 50px;
}
.drawer-bars:before {
  display: none;
}
.drawer-bars {
  /*   &:after {
    position: absolute;
    top: calc(100% + 0.15em);
    left: 50%;
    transform: translateX(-50%);
    content: "MENU";
    z-index: -1;
    font-family: $ff-en;
    font-size: 1.4rem;
    transition: 0.2s;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1.4px;
    margin-top: 6px;

    @include mq("sp") {
      font-size: 1.2rem;
      margin-top: 6px;
    }
  }

  .is-checked &:after {
    content: "CLOSE";
  } */
}

.drawer-bar {
  background: #fff;
  border-radius: 0px;
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  left: 50%;
  top: 19px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 75%;
}
.drawer-bar:nth-of-type(3) {
  left: 50%;
  top: 38px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40%;
}
.is-checked .drawer-bar {
  background: #fff;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  left: auto;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
}

.drawer-content.is-checked {
  opacity: 1;
  padding-top: 120px;
  top: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.drawer-content {
  /* background: rgba($color: $drawer-content-background, $alpha: 1); */
  background: #5a6466;
  bottom: auto;
  font-weight: 600;
  height: 100%;
  left: auto;
  margin: auto;
  max-width: 380px;
  overflow: auto;
  padding: 0;
  padding-bottom: 20px;
  padding-top: 120px;
  position: fixed;
  right: 0;
  text-align: left;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 300px;
}

.drawer-content--right.is-checked {
  -webkit-transform: 0;
          transform: 0;
}
.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%);
}

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

.drawer-bg {
  height: 100%;
  position: fixed;
  top: 0;
}

.drawer-bg.is-checked {
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100vw;
}

.drawer-box {
  padding-top: 100px;
}

.g-nav {
  display: block;
  margin: 0 auto;
  margin: auto;
  max-width: 1000px;
  position: relative;
}

.g-navbox {
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100px;
  height: 100%;
  overflow: hidden;
}

.g-nav-list {
  /*   display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto); */
  gap: 10px 0;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*   margin-right: -6em; */
  margin-top: 0px;
}

.g-nav-item {
  position: relative;
  width: 100%;
}

.g-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  font-weight: bold;
  padding: 0.5em 0;
  position: relative;
  text-align: left;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-nav-link:hover {
  opacity: 0.7;
}

.g-nav-link-txt {
  gap: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.2rem;
  justify-items: flex-start;
}

.g-nav-others {
  display: grid;
  font-weight: 600;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  margin-top: 10px;
  width: 100%;
}

.g-navitem {
  color: #fff;
  margin-top: 10px;
}
.g-navitem a {
  font-size: 1.8rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-navitem a:hover {
  opacity: 0.7;
}

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


     floating


============================================================================= */
.floating {
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #9fcac4;
  color: #fff;
  cursor: pointer;
  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: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 10px;
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: 10;
}
.floating._marche {
  background: #5ca23d;
}
.floating._marche:before {
  background: linear-gradient(-45deg, #5ca23d 51%, transparent 0) 0 0/15px 15px repeat-y, linear-gradient(-135deg, #5ca23d 51%, transparent 0) 0 15px/15px 15px repeat-y;
}
.floating:hover {
  opacity: 0.7;
}
.floating:before {
  /* 2本の斜めグラデを15pxずらして配置し、30pxを1周期で縦方向に繰り返す */
  background: linear-gradient(-45deg, #9fcac4 51%, transparent 0) 0 0/15px 15px repeat-y, linear-gradient(-135deg, #9fcac4 51%, transparent 0) 0 15px/15px 15px repeat-y;
  bottom: 0; /* ←高さは要素に追従 */
  content: "";
  left: -15px; /* 左へはみ出させたい場合 */
  position: absolute;
  top: 0;
  width: 15px; /* 三角の“横幅” */
}

.floating-img {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
}
.floating-img img {
  width: 100%;
}

.floating-txt {
  border-top: 1px dotted #fff;
  font-size: 2rem;
  padding: 10px 5px;
}

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


    swiper


============================================================================= */
.swiper {
  overflow: hidden;
  position: relative;
}

.swiper-fade .swiper-slide {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.swiper-fade .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

#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: repeating-linear-gradient(-45deg, #fffc4e, #fffc4e 5px, white 5px, white 10px);
  -webkit-box-shadow: 2px 2px 4px #333;
          box-shadow: 2px 2px 4px #333;
  height: 360px;
  left: 50%;
  max-width: calc(100% - 16px);
  padding: 30px;
  position: fixed;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50vw;
  z-index: 9999999999;
}

.choose_box {
  background: #fff;
  border-radius: 15px;
  height: 100%;
  padding: 40px 0;
  position: relative;
  width: 100%;
}
#dialog .dialog-text {
  font-size: 2rem;
  font-weight: bold;
}
#dialog button#cancel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f9c0cd;
  background: #231815;
  border: 3px solid #231815;
  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;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 300px;
}

#dialog button:hover {
  opacity: 0.7;
}

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


     footer


============================================================================= */
footer {
  background: #5a6466;
  color: #fff;
  overflow: hidden;
  padding: 80px 0;
}
footer .inner {
  margin: auto;
  max-width: 1080px;
  min-width: unset;
}

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

.footer-logo {
  margin: auto;
  width: 320px;
}

.footer-logos {
  text-align: center;
}

.footer-name {
  margin-top: 0.5em;
}

.footer-navcontents {
  margin-right: -6em;
  min-width: 700px;
  width: calc(100% - 380px);
}

.footer-list {
  gap: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
}

.footer-item a {
  font-size: 1.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer-item a:hover {
  opacity: 0.7;
}
.footer-item .footer-subitem a {
  font-size: 1.4rem;
}

.footer-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer-info {
  gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  margin-top: 40px;
}
.footer-info a {
  padding-right: 0.5em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer-info a:hover {
  opacity: 0.7;
}

.footer-subitem {
  padding-left: 0.5em;
}

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


     header


============================================================================= */
.is-checked header {
  z-index: 100 !important;
}

header {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #fff;
  height: 0;
  /*   transition: all 0.2s ease-in 0s; */
  height: 100px;
  left: 0;
  padding: 0px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* body[data-scroll="true"] header {
  height: 80px;
  background: #489fdf;
}
 */
.header-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 300px;
}
.header-link:hover {
  opacity: 0.7;
}

.header-logo {
  background: transparent url(../asset/images/common/logo.png) no-repeat center center/contain;
  height: 100%;
  position: absolute;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  /*   transition: opacity 0.2s; */
  z-index: 2;
}
.header-logo:hover {
  opacity: 0.7;
}

.header-contents {
  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 {
  -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;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 24px;
}

.header-contact-tel {
  color: #ff0;
  font-family: "Stick", "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 1.8rem + 0.625vw * 1, 3rem);
  font-weight: bold;
}

.header-btns {
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 120px;
}

.header-btn {
  border: 1px solid #fff;
  border-radius: 4rem;
  font-size: 2rem;
  padding: 0.75em 2em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header-btn._recruit {
  color: #fff;
}
.header-btn._recruit:hover {
  background: #fff;
  color: #231815;
}
.header-btn._contact {
  background: #fff;
}
.header-btn._contact:hover {
  background: transparent;
  color: #fff;
}

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


     subfooter


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


    contact


============================================================================= */
.subcontact {
  background: #8dd2d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.subcontact-img {
  width: 46%;
}
.subcontact-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.subcontact-contents {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 5vw;
  width: 54%;
}

.subcontact-txt {
  font-size: 2rem;
  margin-top: 2em;
}

.subcontact-btnbox {
  text-align: left;
}

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


    group


============================================================================= */
.group {
  color: #005fae;
  position: relative;
}
.group:before {
  background: transparent url(../asset/images/common/group-bg.jpg) no-repeat top center/cover;
  content: "";
  height: 100%;
  left: 50%;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.group-list {
  gap: 48px;
  display: grid;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 60px auto 0;
  max-width: 880px;
}

.group-item {
  text-align: center;
}

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


    entry


============================================================================= */
.entry {
  background: transparent url(../asset/images/common/entry-img.jpg) no-repeat top center/cover;
  color: #fff;
  overflow: hidden;
}

.entry-container {
  color: #fff;
  margin-left: auto;
  padding: 60px 40px;
  position: relative;
  position: relative;
  width: 50%;
}
.entry-container:before {
  background: rgba(255, 104, 78, 0.8);
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.entry-content {
  position: relative;
  z-index: 1;
}

.entry-img {
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 700px;
}

.entry-txt {
  font-size: 2rem;
  line-height: 2;
  margin-top: 1em;
}

.entry-btnbox {
  text-align: left;
}

.entry-btn {
  background: #fff;
  border-color: #fc5c43;
  color: #fc5c43;
}
.entry-btn span {
  background: #fc5c43;
}
.entry-btn:hover {
  background: #fc5c43;
  color: #fff;
}
.entry-btn:hover span {
  background: #fff;
}

.pc-dis {
  display: none;
}

.tab-none {
  display: block;
}

.tab-dis {
  display: none;
}

.sp-none {
  display: block;
}
.sp-none.inline {
  display: inline-block;
}

.sp-dis {
  display: none;
}

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

@media (max-width: 1128px){
  .contact-input-box._check .wpcf7-checkbox {
    gap: 0.5em 0%;
  }
  .contact-input-box._check .wpcf7-checkbox > span {
    width: calc(50% - 1em);
  }
  .contact-span {
    font-size: 1.6rem;
  }
  .inner._header {
    margin: auto;
    width: 100%;
  }
  .inner {
    min-width: unset;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  .submv-img {
    height: 480px;
  }
  .submv-ttl-jp {
    font-size: 4rem;
  }
  .inner-item {
    padding: 30px 24px;
  }
  .inner-ttl {
    font-size: 3.6rem;
  }
  .inner-ttl-en {
    font-size: 2.4rem;
  }
  .footer-contents {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-navcontents {
    margin-right: 0;
    min-width: unset;
    width: calc(100% + 6em);
  }
  .footer-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-logo {
    width: 220px;
  }
  .header-contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header-btns {
    gap: 20px;
    margin-right: 100px;
  }
  .header-btn {
    padding: 0.75em 1em;
  }
  .tab-none {
    display: none;
  }
  .tab-dis {
    display: block;
  }
}

@media (max-width: 1014px){
  #dialog .dialog-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@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 {
    font-size: 1.6rem;
    width: 100%;
  }
  input,
  select {
    height: 50px;
  }
  textarea {
    height: 200px;
  }
  select {
    font-size: 1.6rem;
    width: 100%;
  }
  input[type=checkbox] + span,
  input[type=radio] + span,
  input[type=radio] + input + span {
    padding-left: 2em;
  }
  .privacy {
    margin-top: 80px;
  }
  .privacy-ttl {
    font-size: 1.8rem;
  }
  .contact-item {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.6rem;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }
  .form-content._form {
    margin-top: 40px;
  }
  .contact-container form {
    padding: 60px 0 0;
  }
  .contact-item-ttl {
    font-size: 1.8rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 0px;
    width: 100%;
  }
  .contact-item-ttl .re {
    font-size: 1.4rem;
  }
  .contact-item-ttl._accept {
    margin-top: 40px;
  }
  .contact-input-box .radio1 .wpcf7-list-item {
    display: block;
  }
  .contact-input-box {
    font-size: 1.6rem;
    padding-left: 0;
  }
  .contact-input-box._name {
    -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;
  }
  .contact-input-box._check .wpcf7-checkbox {
    gap: 0.75em 0;
  }
  .contact-input-box._check .wpcf7-checkbox > span {
    width: 100%;
  }
  .contact-span {
    font-size: 1.4rem;
  }
  .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 0;
  }
  .contact-input-box._type .wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .check-box-head {
    font-size: 1.6rem;
  }
  .check-box-container {
    font-size: 1.2rem;
    width: 100%;
  }
  .check-box-container {
    padding: 16px 16px;
  }
  .contact-btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-btn {
    max-width: 600px;
    width: 80%;
  }
  .contact-list._comfirm + .form-btn-contents {
    padding-top: 40px;
  }
  .form-btn-box {
    -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;
    margin-top: 60px;
  }
  .form-btn-boxspan {
    bottom: auto;
    font-size: 1.5rem;
    position: relative;
  }
  .form-btn-boxspan2 {
    font-size: 1.5rem;
  }
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btnbox {
    margin-top: 32px;
  }
  .btn.br,
  button.br,
  .form-btn.br,
  .content-form button.br,
  #subscription-cancel-button.br,
  #subscription-search-button.br {
    padding: 2rem 0.8rem;
  }
  .btn.bl,
  button.bl,
  .form-btn.bl,
  .content-form button.bl,
  #subscription-cancel-button.bl,
  #subscription-search-button.bl {
    padding: 1rem 0.8rem;
  }
  .btn._group,
  button._group,
  .form-btn._group,
  .content-form button._group,
  #subscription-cancel-button._group,
  #subscription-search-button._group {
    max-width: 280px;
  }
  .btn,
  button,
  .form-btn,
  .content-form button,
  #subscription-cancel-button,
  #subscription-search-button {
    font-size: 1.6rem;
    max-width: 240px;
    padding: 1.5rem 0.8em;
  }
  .form-btn {
    padding: 0;
  }
  #action-button {
    gap: 10px;
  }
  .sec {
    padding: 50px 0;
  }
  .sec:nth-last-of-type(1) {
    padding-bottom: 70px;
  }
  .submv-img {
    height: 420px;
    max-height: 80vw;
  }
  .submv-ttl-jp {
    font-size: 2.6rem;
  }
  .submv-btn {
    aspect-ratio: unset;
    padding: 10px 0;
    width: 100%;
  }
  .submv-btn-ttl {
    font-size: 2rem;
  }
  .submv-btn-txt {
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .submv-btn-txt > span {
    width: 15px;
  }
  .inner-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .inner-item {
    padding: 30px 16px;
  }
  .inner-ttl {
    font-size: 2.4rem;
    margin-top: 8px;
  }
  .inner-ttl-en {
    font-size: 1.8rem;
  }
  .inner-txt {
    font-size: 1.5rem;
  }
  .inner-btnbox {
    margin-top: 20px;
  }
  .page {
    margin-top: 50px;
  }
  .page-numbers {
    font-size: 1.6rem;
    height: auto;
    width: auto;
  }
  .page-numbers + .page-numbers {
    margin-left: 8px;
  }
  .page-numbers.prev,
  .page-numbers.next {
    height: auto;
    width: auto;
  }
  .page-numbers.prev:before, .page-numbers.prev:after,
  .page-numbers.next:before,
  .page-numbers.next:after {
    left: calc(50% - 3px);
    width: 6px; /*線の長さ*/
  }
  .page-numbers.prev:before, .page-numbers.prev:after {
    left: auto;
    right: calc(50% + 2px);
  }
  .drawer {
    height: 80px;
    right: 0px;
    top: 0px;
    width: 80px;
  }
  .drawer-bars {
    height: 23px;
    width: 30px;
  }
  .drawer-bar:nth-of-type(2) {
    top: 10px;
  }
  .drawer-bar:nth-of-type(3) {
    top: 20px;
  }
  .drawer-content.is-checked {
    padding-top: 100px;
  }
  .drawer-content {
    max-width: 100%;
    min-width: unset;
    padding-top: 100px;
  }
  .drawer-content--op {
    max-width: 100%;
  }
  .drawer-content--top {
    bottom: auto;
    height: 100vh;
    max-width: 100%;
    min-width: 100%;
    min-width: auto;
    top: 0px;
    -webkit-transform: translateY(-105%);
            transform: translateY(-105%);
    width: 100%;
  }
  .drawer-box {
    padding-top: 80px;
  }
  .g-nav {
    padding: 0 16px;
  }
  .floating._marche:before {
    background: linear-gradient(-45deg, #5ca23d 50%, transparent 52%), linear-gradient(-315deg, #5ca23d 50%, transparent 52%);
    background-size: 15px 15px;
  }
  .floating:before {
    background: linear-gradient(-45deg, #9fcac4 50%, transparent 52%), linear-gradient(-315deg, #9fcac4 50%, transparent 52%);
    background-size: 15px 15px;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: -15px;
    width: 100%; /* 三角の“横幅” */
  }
  .floating {
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 0;
    left: auto;
    padding: 10px;
    right: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    z-index: 10;
  }
  .floating-txt {
    border-left: 1px dotted #fff;
    border-top: none;
    font-size: 2.4rem;
    padding: 0 0 0px 30px;
    padding-left: 30px;
  }
  #dialog .dialog-box {
    padding: 16px;
  }
  #dialog .dialog-box {
    min-width: 250px;
  }
  footer {
    padding-bottom: 100px;
  }
  .footer-navcontents {
    text-align: center;
    width: 100%;
  }
  .footer-list {
    gap: 20px;
    display: inline-grid;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-template-columns: auto auto;
    margin: auto;
    text-align: left;
    white-space: nowrap;
  }
  .footer-item {
    width: 50%;
  }
  .footer-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px auto 0;
    text-align: left;
  }
  header {
    height: 80px;
  }
  .header-link {
    height: 80px;
    top: 0px;
  }
  .header-logo {
    width: 220px;
  }
  .header-contact-tel {
    display: none;
  }
  .header-btns {
    display: none;
  }
  .subcontact {
    background: rgba(141, 210, 217, 0.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subcontact:before {
    background: transparent url(../asset/images/common/contact-img.jpg) no-repeat top center/cover;
    content: "";
    height: 100%;
    left: 50%;
    opacity: 0.6;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    z-index: -1;
  }
  .subcontact-img {
    display: none;
    width: 100%;
  }
  .subcontact-contents {
    padding: 40px 16px;
    width: 100%;
  }
  .subcontact-txt {
    font-size: 1.5rem;
  }
  .group-list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
    margin-top: 40px;
  }
  .entry {
    overflow: hidden;
  }
  .entry-container {
    padding: 40px 16px;
    width: 100%;
  }
  .entry-txt {
    font-size: 1.5rem;
  }
  .sp-none.inline {
    display: none;
  }
  .sp-none {
    display: none;
  }
  .sp-dis {
    display: block;
  }
}

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