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


     追加


***************************************/
/* @function vw($size) {
  @return ($size / 1366px) * 100vw;
} */
/*最小値:$value+0.2 → 可変（$value + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px,2560px:12px））→ 最大値:$value + 1.2*/
body {
  color: #191919;
  font-family: "Zen Kaku Gothic New", sans-serif;
  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";
  font-size: clamp(14px, calc(16px + (100vw - 1366px) * 0.0117130307 * 0.6), calc(16px + (100vw - 1366px) * 0.0117130307 * 0.6));
  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-image: none;
  border: 2px solid #cbcbcb;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #191919;
  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: #0081cc;
  background-image: none;
  border: 2px solid #0081cc;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  color: inherit;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-weight: bold;
  height: 100%;
  margin: 0;
  min-width: 280px;
  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: #fff;
  color: #0081cc;
}
._back input[type=submit], ._back input[type=button] {
  background: #fff;
  color: #0081cc;
}
._back input[type=submit]:hover, ._back input[type=submit]:focus, ._back input[type=button]:hover, ._back input[type=button]:focus {
  background: #0081cc;
  color: #fff;
}
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: 2px solid #ccc;
  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: #191919;
  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 #191919;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1em;
}
input[type=checkbox] + span:after,
input[type=checkbox] + input[type=hidden] + span:after {
  border-bottom: 2px solid #191919;
  border-left: 2px solid #191919;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /* background: $cr_txt;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%); */
  transition: all 0.3s ease 0s;
  width: 1em;
}
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.25em;
  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 #191919;
  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: #eec84c;
  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: 40px auto 0;
  max-width: 800px;
}

.privacy-ttl {
  color: #191919;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
.privacy-ttl span {
  border-bottom: 2px solid #191919;
}

.privacy-container {
  background: #fff;
  border: 1px solid #191919;
  border-radius: 1rem;
  height: 240px;
  margin-top: 20px;
  max-height: 240px;
  overflow: hidden;
  padding: 0rem 0;
}

.privacy-box {
  height: 240px;
  max-height: 240px;
  overflow: auto;
  padding: 2rem 2rem;
}

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


    form


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

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

/* .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 #191919;
  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;
}

.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 > span {
  gap: 10px;
  -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;
  margin-bottom: 10px;
}
.contact-input-box._zip > span .your-zip {
  max-width: 10em;
}

.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;
  /*   @include mq('sp'){
    gap:5%;

    >span{}
  } */
}
.contact-input-box._check .wpcf7-checkbox > span {
  width: calc(33.3333% - 1em);
}

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

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

.contact-input-box .wpcf7-radio {
  gap: 0 20px;
  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._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: 120px 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;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #333 !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  border: 1px solid #000 !important;
  -webkit-transition: background-color 9999s ease-out, color 9999s ease-out;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}

input[readonly],
textarea[readonly] {
  background: #f7f7f7;
  border: 1px solid #cbcbcb !important;
  color: #333 !important;
  cursor: not-allowed;
  resize: none;
}

input[type=radio]:disabled ~ span,
input[type=checkbox]:disabled ~ span {
  cursor: auto;
  pointer-events: none;
}

input[type=radio]:disabled ~ span::before {
  background: #f5f5f5;
  border: 1px solid #cbcbcb !important;
}

input[readonly]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f7f7f7 inset !important;
  -webkit-text-fill-color: #333 !important;
  border-color: #cbcbcb !important;
}

.contact-item {
  gap: 1.5em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: grid;
  font-size: 2rem;
  font-weight: bold;
  grid-template-columns: 10em minmax(200px, 800px);
}
.contact-item + .contact-item {
  margin-top: 40px;
}
.contact-item._name {
  padding-bottom: 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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: 0;
  margin-top: 0.5em;
}
.contact-list._comfirm .contact-item-ttl {
  margin-top: 0;
}
.contact-item-ttl .re {
  background: #22b573;
  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 {
  margin-top: 20px;
  width: 100%;
}
.contact-item-ttl._submit {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  text-align: center;
}

/* .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 #191919;
  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;
}

.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;
  /*   @include mq('sp'){
    gap:5%;

    >span{}
  } */
}
.contact-input-box._check .wpcf7-checkbox > span {
  width: calc(33.3333% - 1em);
}

.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 {
  gap: 0 80px;
  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._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: 120px 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;
}

.privacy-content {
  background: #fff;
  border: 1px solid #191919;
  margin-top: 20px;
  overflow: hidden;
  padding: 0rem 0;
}

.privacy-list {
  height: 240px;
  max-height: 240px;
  overflow: auto;
  padding: 2rem 2rem;
}

.privacy-item {
  padding: 20px 0;
}
.privacy-item + .privacy-item {
  border-top: 1px solid #191919;
}
.privacy-item dt {
  font-size: 2.4rem;
  font-weight: 900;
}
.privacy-item dd {
  font-size: 1.6rem;
  margin-top: 0.5em;
}

.inner {
  /*   height: inherit; */
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
  position: relative;
  width: 1080px;
}
.inner._header {
  width: 100%;
}
.inner._big {
  width: 90%;
}
.inner._middle {
  width: 75%;
  /*     max-width: 1800px; */
}

.main {
  overflow: hidden;
}

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


     btn


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

.btn,
button,
.content-form button,
#subscription-cancel-button,
#subscription-search-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #005414;
  /*   border: 1px solid #005414; */
  border-radius: 5rem;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: clamp(1.4rem, 1.2vw, 2rem);
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn._back,
button._back,
.content-form button._back,
#subscription-cancel-button._back,
#subscription-search-button._back {
  background: #fff;
  color: #005414;
}
.btn._back span,
button._back span,
.content-form button._back span,
#subscription-cancel-button._back span,
#subscription-search-button._back span {
  background: #005414;
}
.btn._back span:before, .btn._back span:after,
button._back span:before,
button._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,
.content-form button._back:hover,
#subscription-cancel-button._back:hover,
#subscription-search-button._back:hover {
  background: #005414;
  color: #fff;
}
.btn._back:hover span,
button._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,
.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 #005414;
  border-top: 1px solid #005414;
}
.btn:hover,
button:hover,
.content-form button:hover,
#subscription-cancel-button:hover,
#subscription-search-button:hover {
  background: inherit;
  border: none;
  color: #005414;
}

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

.btn-arrow {
  background: #005414;
  border-radius: 50%;
  display: inline-block;
  height: 44px;
  margin-left: 50px;
  position: relative;
  width: 44px;
}
.btn-arrow:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 12px;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: 12px;
}

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


     common


============================================================================= */
/* main {
  margin-top: $header-height;

  @include mq("sp") {
    margin-top: $header-height_sp;
  }
} */
.line {
  height: 100%;
  overflow-x: hidden;
  position: relative;
  position: absolute;
  top: 0px;
  width: 100vw;
}

.line-svg {
  display: block;
  height: auto;
  width: 100%;
}

.line-wrap .line-svg {
  position: absolute;
  right: -65vw;
  top: -20vw;
  width: 130vw;
}

.submv {
  background: #f6f6f6;
  height: clamp(240px, 23vw, 25vw);
}

.submv-ttlbox {
  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;
}

.pg-ttlbox {
  grid-area: ttl;
  position: relative;
}

.pg-ttl-en {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 4rem);
  font-weight: 600;
}
.pg-ttl-en._ball:before {
  color: inherit;
  content: "●";
  font-size: 80%;
  padding-right: 10px;
}
.pg-ttl-en._service:before {
  color: #fff;
}

.pg-ttl {
  font-size: clamp(1.8rem, calc(38px + (100vw - 1366px) * 0.027818448 * 0.6), calc(38px + (100vw - 1366px) * 0.027818448 * 0.6));
}
.pg-ttl._submv {
  font-size: clamp(2.2rem, calc(44px + (100vw - 1366px) * 0.0322108346 * 0.6), calc(44px + (100vw - 1366px) * 0.0322108346 * 0.6));
}

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

.page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: inherit;
  background: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 0%;
  color: #005414;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  font-weight: 600;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40px;
}

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

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

.page-numbers.prev,
.page-numbers.next {
  background: #fff;
  height: 40px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 40px;
}
.page-numbers.prev:hover,
.page-numbers.next:hover {
  background: #005414;
}
.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: #005414;
  border-radius: 100px;
  content: "";
  display: block;
  /*線の長さ*/
  height: calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6);
  left: calc(50% - calc(12px + (100vw - 1366px) * 0.0087847731 * 0.6)/2);
  /*線の色*/
  position: absolute;
  top: calc(50% - calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6)/2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6)/2) 50%;
          transform-origin: calc(100% - calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6)/2) 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: calc(12px + (100vw - 1366px) * 0.0087847731 * 0.6);
}
.page-numbers.prev:after,
.page-numbers.next:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  /*角度*/
}

.page-numbers.prev:before, .page-numbers.prev:after {
  left: auto;
  right: calc(50% + calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6));
  -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.prev + .page-numbers,
.page-numbers + .page-numbers.next {
  margin-left: 30px;
}

.drawer {
  width: 100%;
}

.drawer-close {
  background: transparent;
  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 {
  display: none;
}
.drawer-icon:focus {
  outline: none;
}
.drawer-icon.is-checked + body {
  overflow: hidden;
}

.drawer-bars {
  /*   .is-checked &:after {
    content: "CLOSE";
  } */
}
.drawer-bars:before {
  display: none;
  /*     position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  content: "";
  z-index: -1;
  border-radius: 50%;

  @include mq("tab") {
    width: 54px;
    height: 54px;
  } */
}
.drawer-bars:after {
  color: #fff;
  content: "menu";
  font-size: 1.8rem;
  font-weight: bold;
  left: 50%;
  letter-spacing: 1.2px;
  position: absolute;
  top: calc(100% + 0.5em);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 26px;
  width: 60%;
}
.drawer-bar:nth-of-type(3) {
  top: 52px;
}
.is-checked .drawer-bar {
  background: #fff;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 3px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  width: 100%;
}
.is-checked .drawer-bar:nth-of-type(2) {
  top: 3px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  width: 100%;
}
.is-checked .drawer-bar:nth-of-type(3) {
  display: none;
}

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

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

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

.drawer-bg {
  width: 100%;
}

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

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

.g-navbox {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.g-nav {
  gap: 1.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.g-nav-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-nav-item a {
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-nav-item a::after {
  background: currentColor;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.g-nav-item a:hover {
  opacity: 0.7;
}
.g-nav-item a:hover:after {
  opacity: 1;
}

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


     floating


============================================================================= */
.floating-smart {
  position: fixed;
  right: 0;
  top: 130px;
  z-index: 10;
}
.floating-smart a {
  background-color: #12c0e7;
  border-radius: calc(10px + (100vw - 1366px) * 0.0073206442 * 0.6) 0 0 calc(10px + (100vw - 1366px) * 0.0073206442 * 0.6);
  -webkit-box-shadow: 0px 3px 3px #00000029;
          box-shadow: 0px 3px 3px #00000029;
  display: inline-block;
  font-size: calc(20px + (100vw - 1366px) * 0.0146412884 * 0.6);
  font-weight: bold;
  padding: 1em 1.5em 1em 2em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.floating-smart a:hover {
  background: #12c0e7;
	opacity:0.7;
}
.floating-smart a span {
  background-color: #ffffff;
  border-radius: 9999px;
  display: inline-block;
  height: 3px;
  left: 0%;
  margin-top: 6.4px;
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
}
.floating-smart a span:after {
  background-color: #ffffff;
  border-radius: 9999px;
  content: "";
  height: 3px;
  position: absolute;
  right: 0;
  top: calc(50% - 1.5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 1.5px) 50%;
          transform-origin: calc(100% - 1.5px) 50%;
  width: 12px;
}

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


    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: #191919;
  border: 3px solid #191919;
  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-color: #f6f6f6;
  padding: calc(70px + (100vw - 1366px) * 0.0512445095 * 0.6) 0 calc(20px + (100vw - 1366px) * 0.0146412884 * 0.6);
}

.footer-contents {
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-infobox {
  font-weight: bold;
}

.footer-logo {
  width: calc(200px + (100vw - 1366px) * 0.1464128843 * 0.6);
}
.footer-logo img {
  width: 100%;
}

.footer-info {
  margin-top: 12px;
}

.footer-map-link {
  gap: calc(10px + (100vw - 1366px) * 0.0073206442 * 0.6);
  color: #005414;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: calc(26px + (100vw - 1366px) * 0.019033675 * 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-map-link span {
  background-color: #005414;
  border-radius: 50%;
  display: inline-block;
  height: calc(30px + (100vw - 1366px) * 0.0219619327 * 0.6);
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: calc(30px + (100vw - 1366px) * 0.0219619327 * 0.6);
}
.footer-map-link span:before {
  border-right: calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6) solid #fff;
  border-top: calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6) solid #fff;
  content: "";
  height: calc(8px + (100vw - 1366px) * 0.0058565154 * 0.6);
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  width: calc(8px + (100vw - 1366px) * 0.0058565154 * 0.6);
}
.footer-map-link:hover span {
  background-color: #229943;
}

.footer-copy-txt {
  font-size: calc(12px + (100vw - 1366px) * 0.0087847731 * 0.6);
  font-weight: bold;
  margin: calc(100px + (100vw - 1366px) * 0.0732064422 * 0.6) auto 0;
  text-align: right;
}

.footer-nav-company {
  grid-area: company;
}

.footer-nav-business {
  grid-area: business;
}

.footer-nav-news {
  grid-area: news;
}

.footer-nav {
  gap: 15px 0;
  display: inline-grid;
  font-weight: bold;
  grid-template-areas: "company business" "news    business";
  grid-template-columns: auto auto;
}

.footer-nav-ttl {
  font-size: calc(20px + (100vw - 1366px) * 0.0146412884 * 0.6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer-nav-ttl:hover {
  opacity: 0.7;
}

.footer-nav-list li {
  margin-top: calc(15px + (100vw - 1366px) * 0.0109809663 * 0.6);
}
.footer-nav-list li a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer-nav-list li a:hover {
  opacity: 0.7;
}

.footer-nav-company,
.footer-nav-news {
  padding-right: calc(40px + (100vw - 1366px) * 0.0292825769 * 0.6);
}

.footer-nav-business {
  border-left: 1px solid #191919;
  padding-left: calc(40px + (100vw - 1366px) * 0.0292825769 * 0.6);
}

.footer-banners {
  gap: calc(20px + (100vw - 1366px) * 0.0146412884 * 0.6);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-banner-link {
  background-color: #005414;
  border-radius: calc(10px + (100vw - 1366px) * 0.0073206442 * 0.6);
  color: #fff;
  display: inline-block;
  font-size: calc(20px + (100vw - 1366px) * 0.0146412884 * 0.6);
  font-weight: bold;
  overflow: hidden;
  padding: 0.75em 1.5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-banner-link:hover {
  background-color: #229943;
}

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


     header


============================================================================= */
header {
  -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;
  height: 0;
  height: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 0px;
  padding: 12px 20px;
  position: fixed;
  text-align: center;
  top: 0;
  -webkit-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
  width: 100%;
  z-index: 1000;
  /*   background: #fff;
   box-shadow: 3px 3px 3px rgba($color: #000000, $alpha: 0.3);
  */
}
header.transform {
  background: #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.header-logo {
  background: transparent url(../asset/images/common/logo.svg) no-repeat top center/contain;
  height: 60px;
  width: 170px;
}

.header-contents {
  gap: 10px;
  -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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-btnlists {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-btnlists._drawer {
  display: none;
}

.header-btnitem {
  text-align: left;
  width: 268px;
}

.header-btnlink {
  background-color: #005414;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  overflow: hidden;
  padding: 0.75em 1.5em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-btnlink:hover {
  background-color: #229943;
}

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


     subfooter


============================================================================= */
.link-list {
  gap: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 40px 0;
}

.link-item-btn {
  color: #fff;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.link-item-btn:hover .link-img {
  border-radius: 20px;
  position: relative;
}
.link-item-btn:hover .link-img:after {
  opacity: 0;
}
.link-item-btn span {
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  z-index: 1;
}
.link-item-btn span:before {
  background: #231815;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
}
.link-item-btn span:after {
  background: #231815;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}

.link-img {
  aspect-ratio: 2/1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.link-img:after {
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 1;
}
.link-img img {
  border-radius: inherit;
}

.link-txt {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.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-input-box._check .wpcf7-checkbox {
    gap: 0.5em 0%;
  }
  .contact-input-box._check .wpcf7-checkbox > span {
    width: calc(50% - 1em);
  }
  .privacy-item dt {
    font-size: 2rem;
  }
  .inner._header {
    margin: auto;
    width: 100%;
  }
  .inner {
    min-width: unset;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  .drawer-content--right {
    left: auto;
    right: 0;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
  }
  .drawer-content--left {
    left: 0;
    right: auto;
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .g-navbox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .g-nav {
    font-size: 1.5rem;
  }
  .footer-infobox {
    margin: auto;
  }
  header {
    padding: 10px 0;
  }
  .header-btnlists {
    gap: 15px;
  }
  .header-btnitem {
    width: 210px;
  }
  .link-item-btn {
    font-size: 2rem;
  }
  .link-item-btn span {
    right: 10px;
  }
  .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%;
  }
  .privacy {
    margin-top: 20px;
  }
  .privacy-ttl {
    font-size: 2rem;
  }
  .privacy-box {
    padding: 2rem 1.5rem;
  }
  .form-content._form {
    margin-top: 40px;
  }
  .contact-container form {
    padding: 60px 0;
  }
  .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%;
  }
  .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 0;
  }
  .contact-input-box .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;
  }
  .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;
  }
  .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;
  }
  .contact-item-ttl {
    font-size: 1.6rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 0px;
    width: 100%;
  }
  .contact-item-ttl .re {
    font-size: 1.2rem;
  }
  .contact-item-ttl._submit {
    font-size: 1.4rem;
  }
  .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%;
  }
  .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 0;
  }
  .contact-input-box .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;
  }
  .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;
  }
  .privacy-item dt {
    font-size: 1.8rem;
  }
  .privacy-item dd {
    font-size: 1.4rem;
  }
  .inner._big {
    width: 100%;
  }
  .inner._middle {
    width: 100%;
  }
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .btn,
button,
.content-form button,
#subscription-cancel-button,
#subscription-search-button {
    font-size: 1.6rem;
    max-width: 320px;
  }
  .btn-arrow {
    height: 32px;
    margin-left: 40px;
    width: 32px;
  }
  .btn-arrow:before {
    height: 8px;
    width: 8px;
  }
  .submv {
    height: clamp(240px, 23vw, 25vw);
  }
  .page {
    margin-top: 50px;
  }
  .page-numbers {
    font-size: 1.6rem;
    height: 35px;
    width: 35px;
  }
  .page-numbers + .page-numbers {
    margin-left: 8px;
  }
  .page-numbers.prev,
.page-numbers.next {
    height: 35px;
    width: 35px;
  }
  .page-numbers.prev:before, .page-numbers.prev:after,
.page-numbers.next:before,
.page-numbers.next:after {
    /*線の長さ*/
    left: calc(50% - (vw(6px) / 2));
    width: calc(6px + (100vw - 1366px) * 0.0043923865 * 0.6);
  }
  .page-numbers.prev:before, .page-numbers.prev:after,
.page-numbers.next:before,
.page-numbers.next:after {
    /*線の長さ*/
    height: 2px;
    left: calc(50% - (12px / 2));
    /*線の太さ*/
    top: calc(50% - (2px / 2));
    -webkit-transform-origin: calc(100% - 2px/2) 50%;
            transform-origin: calc(100% - 2px/2) 50%;
    width: 12px;
  }
  .page-numbers.prev:before, .page-numbers.prev:after {
    left: auto;
    right: calc(50% + calc(2px + (100vw - 1366px) * 0.0014641288 * 0.6));
  }
  .page-numbers.prev + .page-numbers,
.page-numbers + .page-numbers.next {
    margin-left: 16px;
  }
  .drawer {
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 40;
    z-index: 100;
    /*     border-radius: 0 0 0 50px; */
  }
  .drawer {
    height: 68px;
    width: 68px;
  }
  .drawer-icon {
    background: #005414;
    border: none;
    border-radius: inherit;
    cursor: pointer;
    display: block;
    display: block;
    font-weight: bold;
    height: 100%;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 41;
  }
  .drawer-icon:hover {
    background: #005414;
    color: inherit;
    opacity: 0.7;
  }
  .drawer-bars {
    background: transparent;
    display: inline-block;
    height: 28px;
    margin: auto;
    position: relative;
    top: -0.5em;
    vertical-align: bottom;
    width: 90px;
  }
  .drawer-bars {
    height: 11px;
    width: 28px;
  }
  .drawer-bars:after {
    font-size: 1rem;
    margin-top: 0.25em;
  }
  .drawer-bar {
    background: #fff;
    border-radius: 0px;
    display: block;
    height: 2px;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    width: 100%;
  }
  .drawer-bar:nth-of-type(2) {
    top: 9px;
  }
  .drawer-bar:nth-of-type(3) {
    top: 18px;
  }
  .drawer-content {
    background: white;
    border-radius: 0;
    bottom: auto;
    font-weight: 600;
    height: 100%;
    height: 100vh;
    left: auto;
    margin: auto;
    overflow: auto;
    padding: 0;
    position: fixed;
    right: 0;
    text-align: left;
    top: 0px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100vw;
  }
  .drawer-content {
    padding: 68px 20px 40px;
  }
  .drawer-content--op {
    bottom: auto;
    height: auto;
    min-width: 100%;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
  }
  .drawer-content--top {
    padding-top: 100px;
  }
  .drawer-bg {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: auto;
  }
  .drawer-navbox {
    max-height: calc(100vh - 68px);
  }
  .g-navbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: auto;
    max-width: 100vw;
    overflow: auto;
  }
  .g-navbox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .g-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .floating-smart {
    bottom: 0;
    top: auto;
    width: 100%;
  }
  .floating-smart a {
    border-radius: 5px 5px 0 0;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }
  #dialog .dialog-box {
    padding: 16px;
  }
  #dialog .dialog-box {
    min-width: 250px;
  }
  .footer-contents {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-copy-txt {
    font-size: 1rem;
    margin-top: 60px;
  }
  .footer-nav-business {
    margin-top: 15px;
  }
  .footer-nav-news {
    margin-top: 15px;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav-ttl {
    font-size: 1.8rem;
  }
  .footer-nav-company,
.footer-nav-news {
    padding: 0px;
  }
  .footer-nav-business {
    border: none;
    padding-left: 0;
  }
  .footer-banners {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header {
    height: 68px;
  }
  .header-logo {
    height: 48px;
    width: 130px;
  }
  .header-btnlists._header {
    display: none;
  }
  .header-btnlists._drawer {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
  }
  .header-btnitem {
    width: 260px;
  }
  .link-list {
    gap: 12px;
  }
  .link-item-btn {
    font-size: 1.5rem;
  }
  .link-item-btn span {
    bottom: 5px;
    height: 20px;
    left: 50%;
    position: absolute;
    top: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20px;
  }
  .link-item-btn span:before {
    height: 1.5px;
  }
  .link-item-btn span:after {
    height: 10px;
    width: 5px;
  }
  .sp-none.inline {
    display: none;
  }
  .sp-none {
    display: none;
  }
  .sp-dis {
    display: block;
  }
}

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