@charset "UTF-8";
/*
  現時点最強のflex-box 要素横並び
  必ず親要素に「display: flex;」「flex-wrap: wrap;」を指定すること！！！
  タブレットの時はPCと同じ数
  flex(PCのときの個数, 縦横の間隔, タブレットのときの個数, 縦横の間隔, スマホのときの個数, 縦横の間隔)
*/
/*
  px から vw に変換
  @param: $size 変換前のサイズ(px) $std_width 基本となるViewPort
*/
/*
  背景画像 縦横比保ったまま縮む
  背景画像（background-image）は自分で指定してね
*/
/*
  天地中央
*/
/*
  ブラウザハック
  特定のブラウザだけでCSSを使うときのやつ 万が一の時用
*/
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 600;
  src: url("../webfonts/NotoSerifJP-SemiBold.woff") format("woff"), url("../webfonts/NotoSerifJP-SemiBold.otf") format("opentype");
  font-display: swap;
}

/*
  現時点最強のflex-box 要素横並び
  必ず親要素に「display: flex;」「flex-wrap: wrap;」を指定すること！！！
  タブレットの時はPCと同じ数
  flex(PCのときの個数, 縦横の間隔, タブレットのときの個数, 縦横の間隔, スマホのときの個数, 縦横の間隔)
*/
/*
  px から vw に変換
  @param: $size 変換前のサイズ(px) $std_width 基本となるViewPort
*/
/*
  背景画像 縦横比保ったまま縮む
  背景画像（background-image）は自分で指定してね
*/
/*
  天地中央
*/
/*
  ブラウザハック
  特定のブラウザだけでCSSを使うときのやつ 万が一の時用
*/
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 600;
  src: url("../webfonts/NotoSerifJP-SemiBold.woff") format("woff"), url("../webfonts/NotoSerifJP-SemiBold.otf") format("opentype");
  font-display: swap;
}

html {
  color: #222;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
}

html ::-moz-selection {
  background: #01003a;
  color: #fff;
}

html ::selection {
  background: #01003a;
  color: #fff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: 600;
}

ul,
li {
  list-style: none;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: #222;
}

@media screen and (min-width: 641px) {
  .sp-mode {
    display: none;
  }
}

@media print {
  .sp-mode {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .tab-mode {
    display: none;
  }
}

.sponly-mode--inline {
  display: none;
}

@media screen and (max-width: 768px) {
  .sponly-mode--inline {
    display: inline;
  }
}

.tab-only-mode {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .tab-only-mode {
    display: inline;
  }
}

.pconly-mode {
  display: none;
}

@media screen and (min-width: 1001px) {
  .pconly-mode {
    display: block;
  }
}

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

@media print {
  .pc-mode {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  .pcw-mode {
    display: none;
  }
}

@media print {
  .pcw-mode {
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  .pcuw-mode {
    display: none;
  }
}

@media print {
  .pcuw-mode {
    display: block;
  }
}

@media screen and (min-width: 1001px) {
  .nopc-mode {
    display: none !important;
  }
}

@media screen and (min-width: 1100px) {
  .nopcw-mode {
    display: none !important;
  }
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.link-hover--7 {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

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

.link-hover--9 {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.link-hover--9:hover {
  opacity: 0.9;
}

.return-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: -250px;
  bottom: 2%;
  z-index: 10000;
  width: 40px;
  height: 40px;
  background: #01003a;
  border: solid 2px #01003a;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 641px) {
  .return-top {
    bottom: 3%;
    width: 50px;
    height: 50px;
  }
}

.return-top:hover {
  color: #fff;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.return-top:hover a {
  color: #01003a;
}

.return-top:hover a::after {
  border-top: solid 3px #01003a;
  border-right: solid 3px #01003a;
}

.return-top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.return-top a::after {
  content: "";
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translateX(-2px) translateY(2px);
          transform: rotate(-45deg) translateX(-2px) translateY(2px);
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
    font-size: 10px;
    font-size: 2.66667vw;
  }
}

/* IE表示用のCSS　*/
_:-ms-input-placeholder,
:root {
  font-family: Meiryo, sans-serif;
}

body {
  position: relative;
  max-width: 100%;
}

.sec__serif {
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.sec__inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 641px) {
  .sec__inner {
    max-width: 1000px;
  }
}

.sec__txt--bold {
  font-weight: bold;
}

.sec__txt--50per {
  font-size: 0.5em;
}

.sec__txt--60per {
  font-size: 0.6em;
}

.sec__txt--70per {
  font-size: 0.7em;
}

.sec__txt--120per {
  font-size: 1.2em;
}

.sec__txt--150per {
  font-size: 1.5em;
}

.sec__txt--220per {
  font-size: 2.2em;
  line-height: 1;
}

.btn__navy a {
  position: relative;
  display: block;
  font-weight: bold;
  color: #fff;
  background: #01003a;
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 0px 0px #0c0e38;
          box-shadow: 0px 3px 0px 0px #0c0e38;
  max-width: 400px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.btn__navy a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hdr {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hdr {
    padding: 1.8rem 2.5rem;
  }
}

.hdr__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hdr__logo {
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hdr__img {
  max-width: 73px;
  margin: 0 15px;
}

@media screen and (max-width: 1000px) {
  .hdr__img {
    width: 100%;
    max-width: 72px;
    margin: 0 15px 0 15px;
  }
}

@media screen and (max-width: 768px) {
  .hdr__img {
    width: 5.4rem;
    margin: 0 1.5rem 0 0;
  }
}

.hdr__txtarea {
  margin: auto;
  font-size: 13px;
  display: inline-block;
  position: relative;
  padding-left: 185px;
  padding-top: 3px;
  line-height: 1.4;
  background-image: url(../images/logo_kana.svg);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  background-size: 170px;
}

@media screen and (max-width: 1000px) {
  .hdr__txtarea {
    background-image: none;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .hdr__txtarea {
    background-image: url(../images/logo_kana.svg);
    width: 11.8rem;
    height: 1.3rem;
    background-size: 11.8rem;
  }
}

@media screen and (max-width: 768px) {
  .hdr__txtarea span {
    display: none;
  }
}

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

.hdr__trial a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hdr__cnt {
  background-color: #333333;
  width: 140px;
  height: 64px;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .hdr__cnt {
    width: 140px;
    padding: 0 10px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .hdr__cnt {
    width: 11rem;
    height: 3.2rem;
  }
}

.hdr__cnt span {
  margin: auto;
  color: #fff;
  background-image: url(../images/icon_cnt.svg);
  padding-left: 27px;
  background-repeat: no-repeat;
  letter-spacing: -0.06rem;
  background-position: 0% 50%;
}

@media screen and (max-width: 768px) {
  .hdr__cnt span {
    background-size: 1.5rem;
    padding-left: 2rem;
  }
}

.hdr__btn,
.hdr__btn_b {
  width: 140px;
  height: 64px;
  text-align: center;
  line-height: 1.3;
  box-sizing: border-box;
}

.hdr__btn {
  background-color: #eb0000;
}

.hdr__btn_b {
  background-color: #0076EB;
}

@media screen and (max-width: 1100px) {
  .hdr__btn,
  .hdr__btn_b {
    width: 140px;
    padding: 0 10px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .hdr__btn,
  .hdr__btn_b {
    display: none;
  }
}

.hdr__btn span,
.hdr__btn_b span  {
  margin: auto;
  color: #fff;
  background-image: url(../images/trial_arrow.svg);
  padding-right: 21px;
  background-repeat: no-repeat;
  letter-spacing: -0.06rem;
  background-position: 100% 50%;
  line-height: 1.3;
}

.hdr__btn br,
.hdr__btn_b br {
  line-height: 1.3;
}

.kv {
  background: url("../images/kv_pc.jpg") no-repeat center bottom;
}

@media screen and (max-width: 1000px) {
  .kv {
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .kv {
    background: url("../images/kv_sp.jpg") no-repeat center bottom;
    background-size: cover;
  }
}

.kv__inner {
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .kv__inner {
    height: 60vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__inner {
    height: 52.5rem;
  }
}

.kv__wrap {
  display: inline-block;
  text-align: center;
  margin: 80px 0 0 20px;
}

@media screen and (max-width: 1000px) {
  .kv__wrap {
    margin: 8vw 0 0 2vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__wrap {
    text-align: left;
    margin: 2rem 0 0 2.5rem;
  }
}

.kv__ttl {
  width: 580px;
  display: inline-block;
  background-color: #fff;
  padding: 4px 0;
  margin-bottom: 24px;
  text-align: center;
  font-size: 26.5px;
  border: solid 2px #000;
  border-radius: 7px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .kv__ttl {
    width: 58vw;
    font-size: 2.65vw;
    padding: 0.4vw 0;
    margin-bottom: 2.4vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__ttl {
    width: 17.9rem;
    height: 5.2rem;
    border-radius: 3px;
    border: solid 1px #000;
    font-size: 1.35rem;
    line-height: 1.4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.kv__ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid #000;
}

@media screen and (max-width: 768px) {
  .kv__ttl::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #000;
  }
}

.kv__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 11px solid #fff;
}

@media screen and (max-width: 768px) {
  .kv__ttl::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 8px solid #fff;
  }
}

@media screen and (max-width: 1000px) {
  .kv__subttl {
    width: 65.9vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__subttl {
    width: 18rem;
    margin-top: 2.7rem;
  }
}

.kv__txt {
  display: inline-block;
  font-size: 40px;
  line-height: 1.3em;
  font-weight: bold;
  margin: 16px 0 40px;
}

@media screen and (max-width: 1000px) {
  .kv__txt {
    font-size: 4vw;
    margin: 1.6vw 0 4vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__txt {
    font-size: 1.4rem;
    text-align: center;
    margin: 2rem 0 3.2rem;
  }
}

.kv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  width: 570px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .kv__list {
    width: 57vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__list {
    width: 32rem;
  }
}

.kv__item {
  width: 169px;
}

@media screen and (max-width: 1000px) {
  .kv__item {
    width: 16.9vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__item {
    width: 31%;
  }
}

.kv__btn,
.kv__btn_b {
  display: inline-block;
  position: absolute;
  width: 450px;
  height: 88px;
  bottom: 53px;
  right: 50px;
  background-image: url(../images/kv_btn01.svg);
  background-repeat: no-repeat;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  border-radius: 5px;
}

.kv__btn {
  bottom: 115px;
  background-image: url(../images/kv_btn01.svg);
  background-color: #eb0000;
}

.kv__btn_b {
  bottom: 15px;
  background-image: url(../images/kv_btn01_b.svg);
  background-color: #0076EB;
}

.kv__btn:hover {
  background-image: url(../images/kv_btn01Hover.svg);
}

.kv__btn_b:hover {
  background-image: url(../images/kv_btn01_bHover.svg);
}

@media screen and (max-width: 1200px) {
  .kv__btn {
    background-image: url(../images/kv_btn02.svg);
    width: 252px;
    height: 114px;
  }
  .kv__btn:hover {
    background-image: url(../images/kv_btn02Hover.svg);
  }
  .kv__btn_b {
    background-image: url(../images/kv_btn02_b.svg);
    width: 252px;
    height: 114px;
  }
  .kv__btn_b:hover {
    background-image: url(../images/kv_btn02_bHover.svg);
  }
}

@media screen and (max-width: 1000px) {
  .kv__btn {
    width: 25.2vw;
    height: 11.4vw;
    bottom: 22vw;
    right: 5vw;
  }
  .kv__btn_b {
    width: 25.2vw;
    height: 11.4vw;
    bottom: 5.3vw;
    right: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__btn,
  .kv__btn_b {
    width: 27.2rem;
    height: 5.4rem;
    text-align: center;
    right: 0;
    left: 0;
    margin: auto;
  }
  .kv__btn {
    background-image: url(../images/kv_btn03.svg);
    background-size: 27.2rem;
  }
  .kv__btn_b {
    background-image: url(../images/kv_btn03_b.svg);
    background-size: 27.2rem;
  }
  .kv__btn:hover {
    background-image: url(../images/kv_btn03Hover.svg);
  }
  .kv__btn_b:hover {
    background-image: url(../images/kv_btn03_bHover.svg);
  }
}

.kv__btn--txt,
.kv__btn_b--txt {
  display: inline-block;
  background-image: url(../images/trial_arrow.svg);
  background-repeat: no-repeat;
  background-size: 23px;
  background-position: 100% 50%;
  font-weight: 600;
  padding-right: 42px;
  letter-spacing: 0.5px;
}

.kv__btn--txt {
  margin-top: 12px;
}
.kv__btn_b--txt {
  margin-top: 33px;
}


@media screen and (max-width: 1200px) {
  .kv__btn--txt,
  .kv__btn_b--txt {
    padding-right: 29px;
  }
}

@media screen and (max-width: 1000px) {
  .kv__btn--txt {
    background-size: 2.3vw;
    padding-right: 2.9vw;
    margin-top: 1.2vw;
    text-align: center;
  }
  .kv__btn_b--txt {
    background-size: 2.3vw;
    padding-right: 2.9vw;
    margin-top: 5.3vw;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .kv__btn--txt,
  .kv__btn_b--txt {
    padding-right: 2.1rem;
    background-size: 1.4rem;
  }
}

.kv__btn--txt span,
.kv__btn_b--txt span {
  line-height: 1.6em;
  color: #fff;
  display: inline-block;
}

.kv__btn--txt span:first-child {
  font-size: 24px;
}

.kv__btn_b--txt span:first-child {
  font-size: 24px;
}

@media screen and (max-width: 1000px) {
  .kv__btn--txt span:first-child {
    font-size: 2.4vw;
  }
  .kv__btn_b--txt span:first-child {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 768px) {
  .kv__btn--txt span:first-child {
    font-size: 1.5rem;
  }
  .kv__btn_b--txt span:first-child {
    font-size: 1.5rem;
  }
}

.kv__btn--txt span:last-child {
  font-size: 21px;
  line-height: 1.2em;
}

.kv__btn_b--txt span:last-child {
  font-size: 21px;
  line-height: 1.2em;
}

@media screen and (max-width: 1000px) {
  .kv__btn--txt span:last-child {
    font-size: 2.1vw;
  }
  .kv__btn_b--txt span:last-child {
    font-size: 2.1vw;
  }
}

@media screen and (max-width: 1000px) and (max-width: 768px) {
  .kv__btn--txt span:last-child {
    font-size: 1.3rem;
  }
  .kv__btn_b--txt span:last-child {
    font-size: 1.3rem;
  }
}

.kv__btn--br {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .kv__btn--br {
    display: inline;
  }
}

.itd__inner {
  position: relative;
  padding: 50px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .itd__inner {
    padding: 3rem 0 0 0;
  }
}

.itd__ttl {
  font-size: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .itd__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .itd__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
  }
}

.itd__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 840px;
  margin: 0 auto 40px auto;
}

.itd__item {
  display: inline-block;
}

.itd__item img {
  zoom: 0.5;
}

@media screen and (max-width: 768px) {
  .itd__item img {
    zoom: 1;
  }
}

.itd__item:nth-of-type(1) {
  width: 144px;
  margin-top: 16px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(1) {
    width: 14.4vw;
    margin-top: 1.6vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(1) {
    width: 9rem;
    margin: 1.2rem 0 0 2rem;
  }
}

.itd__item:nth-of-type(2) {
  width: 148px;
  margin: 0 36px 0 67px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(2) {
    width: 14.8vw;
    margin: 0 3.6vw 0 6.7vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(2) {
    width: 9.8rem;
    margin: 0 3rem 0 3rem;
  }
}

.itd__item:nth-of-type(3) {
  width: 90px;
  margin: 27px 60px 0 52px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(3) {
    width: 9vw;
    margin: 2.7vw 6vw 0 5.2vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(3) {
    width: 4.8rem;
    margin: 0.7rem 0 0 0;
  }
}

.itd__item:nth-of-type(4) {
  width: 214px;
  margin-top: 7px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(4) {
    width: 21.4vw;
    margin-top: 0.7vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(4) {
    width: 13.3rem;
    margin: 2.7rem 0 0 0;
  }
}

.itd__item:nth-of-type(5) {
  width: 84px;
  margin-top: 22px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(5) {
    width: 8.4vw;
    margin-top: 2.2vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(5) {
    width: 5.4rem;
    margin: 3.1rem 2rem 0;
  }
}

.itd__item:nth-of-type(6) {
  width: 140px;
  margin: 6px 60px 0 60px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(6) {
    width: 14vw;
    margin: 0.6vw 6vw 0 6vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(6) {
    width: 8.8rem;
    margin: 2.3rem 0.5rem 0 0;
  }
}

.itd__item:nth-of-type(7) {
  width: 131px;
  margin-top: 31px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(7) {
    width: 13.1vw;
    margin-top: 3.1vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(7) {
    width: 8.1rem;
    margin-top: 3.1rem;
  }
}

.itd__item:nth-of-type(8) {
  width: 72px;
  margin: 33px 60px 0 60px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(8) {
    width: 7.2vw;
    margin: 3.3vw 6vw 0 6vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(8) {
    width: 4.2rem;
    margin: 2.2rem 4rem 0 4rem;
  }
}

.itd__item:nth-of-type(9) {
  width: 139px;
  margin-top: 41px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(9) {
    width: 13.9vw;
    margin-top: 4.1vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(9) {
    width: 8.7rem;
    margin: 2.1rem 0rem 0 0rem;
  }
}

.itd__item:nth-of-type(10) {
  width: 87px;
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(10) {
    width: 8.7vw;
    margin-top: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(10) {
    width: 4.9rem;
    margin-top: 2rem;
  }
}

.itd__item:nth-of-type(11) {
  width: 130px;
  margin: 29px 40px 0 40px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(11) {
    width: 13vw;
    margin: 2.9vw 5vw 0 5vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(11) {
    width: 7.1rem;
    margin: 2.3rem 3rem 0 3rem;
  }
}

.itd__item:nth-of-type(12) {
  width: 52px;
  margin: 29px 0px 0 0px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(12) {
    width: 5.2vw;
    margin: 2.9vw 0vw 0 0vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(12) {
    width: 3.1rem;
    margin: 2.3rem 0 0 0;
  }
}

.itd__item:nth-of-type(13) {
  width: 176px;
  margin: 29px 30px 0 30px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(13) {
    width: 17.6vw;
    margin: 2.9vw 5vw 0 5vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(13) {
    width: 6.5rem;
    margin: 5.4vw 0 0 3rem;
  }
}

.itd__item:nth-of-type(14) {
  width: 155px;
  margin: 21px 0px 0 0px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(14) {
    width: 15.5vw;
    margin: 2.1vw 0vw 0 0vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(14) {
    width: 9.5rem;
    margin: 5.1vw 0 0 0;
  }
}

.itd__item:nth-of-type(15) {
  width: 107px;
  margin-top: 47px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(15) {
    width: 10.7vw;
    margin-top: 4.7vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(15) {
    width: 6.7rem;
    margin: 2.8rem 2.5rem 0 2.5rem;
  }
}

.itd__item:nth-of-type(16) {
  width: 161px;
  margin: 40px 50px 0 50px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(16) {
    width: 16vw;
    margin: 4vw 6vw 0 6vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(16) {
    width: 10.2rem;
    margin: 2.5rem 0 0 0;
  }
}

.itd__item:nth-of-type(17) {
  width: 192px;
  margin: 33px 0px 0 0px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(17) {
    width: 19.2vw;
    margin: 2.6vw 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(17) {
    width: 13.1rem;
    margin: 2.5rem 0 0 0;
  }
}

.itd__item:nth-of-type(18) {
  width: 125px;
  margin: 25px 0px 0 50px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(18) {
    width: 12.5vw;
    margin: 2.5vw 0 0 6vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(18) {
    width: 6.5rem;
    margin: 2.2rem 2.5rem 0 2.5rem;
  }
}

.itd__item:nth-of-type(19) {
  width: 122px;
  margin-top: 35px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(19) {
    width: 12.2vw;
    margin-top: 3.5vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(19) {
    width: 7.1rem;
    margin: 2.8rem 0 0 0;
  }
}

.itd__item:nth-of-type(20) {
  width: 149px;
  margin: 50px 70px 0 70px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(20) {
    width: 14.9vw;
    margin: 5vw 7vw 0 7vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(20) {
    width: 8.5rem;
    margin: 2.8rem 0 0 0;
  }
}

.itd__item:nth-of-type(21) {
  width: 121px;
  margin-top: 50px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(21) {
    width: 12.1vw;
    margin-top: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(21) {
    width: 7rem;
    margin: 3.5rem 3rem 0 3rem;
  }
}

.itd__item:nth-of-type(22) {
  width: 178px;
  margin: 50px 0 0 70px;
}

@media screen and (max-width: 1000px) {
  .itd__item:nth-of-type(22) {
    width: 17.8vw;
    margin: 5vw 0 0 7vw;
  }
}

@media screen and (max-width: 768px) {
  .itd__item:nth-of-type(22) {
    width: 9.6rem;
    margin: 3rem 0 0 0;
  }
}

.pack {
  background-image: url(../images/pack_back.png);
}

@media screen and (max-width: 768px) {
  .pack {
    background-size: 3rem;
  }
}

.pack__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 65px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pack__inner {
    padding: 1.5rem 0 0 0;
  }
}

.pack__ttl {
  font-size: 40px;
  margin-bottom: 15px;
}

@media screen and (max-width: 1000px) {
  .pack__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .pack__ttl {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.4em;
  }
}

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

@media screen and (max-width: 768px) {
  .pack__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pack__list {
  width: calc((100% / 5) - 10px);
}

@media screen and (max-width: 768px) {
  .pack__list {
    width: calc((100% / 2) - 1rem);
    margin-bottom: 2.5rem;
  }
}

.pack__img {
  width: 230px;
}

@media screen and (max-width: 768px) {
  .pack__img {
    width: 100%;
  }
}

.pack__sttl {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 8px;
  white-space: nowrap;
  letter-spacing: -1px;
}

@media screen and (max-width: 1000px) {
  .pack__sttl {
    font-size: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .pack__sttl {
    font-size: 1.7rem;
    margin: 0.4rem 0;
  }
}

.pack__position {
  display: inline-block;
}

.pack__position span {
  color: #eb0000;
  display: inline-block;
  font-size: 14px;
  border: solid 1px #eb0000;
  border-radius: 3px;
  width: 92px;
  padding: 4px 0 2px 0;
  line-height: 1rem;
}

@media screen and (max-width: 1200px) {
  .pack__position span {
    width: 76px;
  }
}

@media screen and (max-width: 1000px) {
  .pack__position span {
    width: 7.6vw;
    font-size: 1.4vw;
    padding: 0.4vw 0 0.2vw 0;
  }
}

@media screen and (max-width: 768px) {
  .pack__position span {
    width: 7.1rem;
    font-size: 1.1rem;
    padding: 0.3rem 0;
  }
}

.pack__position span:last-child {
  margin-left: 5px;
}

@media screen and (max-width: 1000px) {
  .pack__position span:last-child {
    margin-left: 0.5vw;
  }
}

.pack__detail {
  text-align: left;
  display: block;
  margin-top: 18px;
}

@media screen and (max-width: 1000px) {
  .pack__detail {
    font-size: 1.6vw;
    margin-top: 1.8vw;
  }
}

.pack__detail--item {
  display: block;
}

@media screen and (max-width: 768px) {
  .pack__detail--item {
    font-size: 1.4rem;
  }
}

.plan {
  padding-bottom: 23px;
  margin-bottom: 146px;
}

@media screen and (max-width: 768px) {
  .plan {
    margin-bottom: 7.8rem;
  }
}

.plan__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .plan__inner {
    padding: 1rem 0 0 0;
  }
}

.plan__ttl {
  font-size: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .plan__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .plan__ttl {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4em;
  }
}

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

.plan__list {
  max-width: 260px;
  text-align: center;
  padding: 16px 15px 20px 15px;
  margin-bottom: 55px;
  background-color: #fff;
  -webkit-box-shadow: 10px 0px 14px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 10px 0px 14px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1000px) {
  .plan__list {
    width: 27vw;
  }
}

@media screen and (max-width: 768px) {
  .plan__list {
    width: calc((100% / 2) - 1rem);
    max-width: 100%;
    -webkit-box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-bottom: 3rem;
  }
}

.plan__img {
  width: 229px;
}

@media screen and (max-width: 768px) {
  .plan__img {
    width: 100%;
  }
}

.plan__sttl {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 14px;
  height: 52px;
  white-space: nowrap;
  letter-spacing: -1px;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1000px) {
  .plan__sttl {
    font-size: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .plan__sttl {
    font-size: 1.6rem;
    height: 4.2rem;
    margin: 0px 0 0.7rem;
  }
}

.plan__detail {
  text-align: left;
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  .plan__detail {
    font-size: 1.4vw;
    margin-top: 1vw;
  }
}

@media screen and (max-width: 768px) {
  .plan__detail {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.plan__detail--item {
  display: block;
}

.plan__ftr {
  background-image: url(../images/plan_arrow.svg);
  background-repeat: no-repeat;
  background-position-x: 50%;
  padding-top: 72px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3em;
  position: absolute;
  bottom: -185px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .plan__ftr {
    background-size: 11.3rem;
    font-size: 1.9rem;
    bottom: -11rem;
    padding-top: 4.7rem;
  }
}

.plan__ftr--red {
  color: #eb0000;
}

.plan__ftr--red span {
  font-size: 60px;
  display: inline-block;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .plan__ftr--red span {
    font-size: 3.5rem;
  }
}

.cst__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 65px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cst__inner {
    padding: 3.5rem 0 0 0;
  }
}

.cst__ttl {
  font-size: 40px;
  margin: 16px 0 20px;
}

@media screen and (max-width: 1000px) {
  .cst__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .cst__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1rem;
  }
}

.cst__balloon {
  background-color: #01003a;
  position: relative;
  padding: 8px 47px 6px 47px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .cst__balloon {
    font-size: 1.5rem;
    padding: 0.7rem 2rem 0.7rem 2rem;
  }
}

.cst__balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  border-top: 25px solid #01003a;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

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

@media screen and (max-width: 768px) {
  .cst__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.cst__item {
  text-align: left;
}

.cst__item:first-child {
  max-width: 45.9%;
  margin-right: 28px;
}

@media screen and (max-width: 1000px) {
  .cst__item:first-child {
    max-width: 33%;
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cst__item:first-child {
    max-width: 100%;
    margin-right: 0;
  }
}

.cst__item:last-child {
  max-width: 51.6%;
}

@media screen and (max-width: 1000px) {
  .cst__item:last-child {
    max-width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .cst__item:last-child {
    max-width: 100%;
  }
}

.cst__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cst__sttl {
  font-size: 26px;
  font-weight: 600;
  color: #eb0000;
  margin-bottom: 13px;
  line-height: 1.2em;
}

@media screen and (max-width: 768px) {
  .cst__sttl {
    font-size: 1.8rem;
    margin-top: 1.7rem;
  }
}

.cst__txtarea {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .cst__txtarea {
    font-size: 1.5rem;
  }
}

.cst__check {
  background-color: #f2f2f2;
  display: inline-block;
  padding: 14px 99px 14px;
  margin-top: 46px;
}

@media screen and (max-width: 1100px) {
  .cst__check {
    padding: 14px 30px 14px;
  }
}

@media screen and (max-width: 1000px) {
  .cst__check {
    padding: 1.4vw 3vw 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .cst__check {
    text-align: left;
    padding: 2rem 2rem 1rem;
  }
}

.cst__check--txt {
  position: relative;
  font-weight: 600;
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  .cst__check--txt {
    font-size: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .cst__check--txt {
    font-size: 1.5rem;
  }
}

.cst__check--txt::before {
  content: "Check!";
  color: #fff;
  background-color: #eb0000;
  border-radius: 3px;
  font-size: 14px;
  padding: 4px 22px 2px 22px;
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  .cst__check--txt::before {
    font-size: 1.4vw;
    padding: 0.4vw 2.2vw 0.2vw 2.2vw;
  }
}

@media screen and (max-width: 768px) {
  .cst__check--txt::before {
    position: absolute;
    top: -2.8rem;
    left: 0;
    font-size: 1.1rem;
    padding: 0.1rem 1.4rem 0rem 1.4rem;
  }
}

.qul {
  background-image: url(../images/qul_back.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  margin-top: 60px;
  overflow: hidden;
}

.qul__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 70px 0 0 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .qul__inner {
    padding: 3.4rem 0 0 0;
  }
}

.qul__ttl {
  font-size: 40px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #eb0000;
  line-height: 1.3;
}

@media screen and (max-width: 1000px) {
  .qul__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .qul__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 0.5em;
  }
}

.qul__sttl {
  font-size: 30px;
  margin: 0 0 35px;
  font-weight: 600;
  line-height: 1.3em;
}

@media screen and (max-width: 1000px) {
  .qul__sttl {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .qul__sttl {
    font-size: 1.7rem;
    margin-bottom: 2.3rem;
  }
}

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

@media screen and (max-width: 768px) {
  .qul__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.qul__item {
  position: relative;
  width: calc((100% / 4) - 5px);
}

@media screen and (max-width: 768px) {
  .qul__item {
    width: calc((100% / 2) - 0.5rem);
    margin-bottom: 1rem;
  }
}

.qul__item--txt {
  position: absolute;
  width: 100%;
  height: 76px;
  bottom: 0;
  color: #fff;
  font-size: 22px;
  padding-top: 14px;
  background-color: rgba(1, 0, 58, 0.7);
}

@media screen and (max-width: 1000px) {
  .qul__item--txt {
    font-size: 2.2vw;
    height: 7.6vw;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt {
    height: 5.3rem;
    padding-top: 1rem;
  }
}

.qul__item--txt span {
  display: block;
}

.qul__item--txt span:nth-of-type(1) {
  font-size: 14px;
  line-height: 1.3em;
}

@media screen and (max-width: 1000px) {
  .qul__item--txt span:nth-of-type(1) {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt span:nth-of-type(1) {
    line-height: 1.1em;
    font-size: 1rem;
  }
}

.qul__item--txt span:nth-of-type(2) {
  line-height: 1;
  margin-top: 13px;
}

@media screen and (max-width: 1000px) {
  .qul__item--txt span:nth-of-type(2) {
    margin-top: 1.3vw;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt span:nth-of-type(2) {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt02 {
    padding-top: 0.1rem;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt02 span:nth-of-type(2) {
    margin-top: 0.4rem;
  }
}

.qul__item--txt04 {
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  .qul__item--txt04 {
    padding-top: 0.1rem;
  }
}

.qul__item--txt04 span:nth-of-type(2) {
  margin-top: 6px;
}

@media screen and (max-width: 1000px) {
  .qul__item--txt04 span:nth-of-type(2) {
    margin-top: 0.6vw;
  }
}

@media screen and (max-width: 768px) {
  .qul__item--txt04 span:nth-of-type(2) {
    margin-top: 0.4rem;
  }
}

.device__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 70px 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .device__inner {
    padding: 5rem 0 3.5rem 0;
  }
}

.device__ttl {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 0.6em;
}

@media screen and (max-width: 1000px) {
  .device__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .device__ttl {
    font-size: 2.4rem;
    line-height: 1.7em;
  }
}

.device__ttl span {
  color: #eb0000;
  font-size: 45px;
}

@media screen and (max-width: 768px) {
  .device__ttl span {
    font-size: 3rem;
    line-height: 1em;
  }
}

.device__balloon {
  background-color: #01003a;
  position: relative;
  padding: 8px 47px 6px 47px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .device__balloon {
    font-size: 1.6rem;
    padding: 1rem 2rem 1.3rem;
    line-height: 1.3em;
  }
}

.device__balloon::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -12px;
  border-top: 25px solid #01003a;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

@media screen and (max-width: 768px) {
  .device__balloon::before {
    bottom: -9px;
    border-top: 20px solid #01003a;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}

.device__img {
  margin: 45px 0 61px;
}

@media screen and (max-width: 768px) {
  .device__img {
    margin: 1.5rem 0 2.5rem;
  }
}

.device__txt {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .device__txt {
    font-size: 1.5rem;
  }
}

.trial {
  position: relative;
}

.trial__container {
  background-image: url(../images/trial_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 100%;
  height: 290px;
  width: 100%;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 768px) {
  .trial__container {
    height: 23rem;
  }
}

.trial__wrap {
  background-color: rgba(1, 0, 58, 0.85);
  height: 100%;
}

.trial__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.trial__ttl {
  font-size: 40px;
  padding: 50px 0 27px;
  color: #fff;
  line-height: 1.4em;
}

@media screen and (max-width: 1000px) {
  .trial__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .trial__ttl {
    font-size: 2.4rem;
    padding: 2rem 0 2rem;
  }
}

.trial__ttl--big {
  font-size: 68px;
  line-height: 0.9em;
}

@media screen and (max-width: 768px) {
  .trial__ttl--big {
    font-size: 3.8rem;
  }
}

.trial__box {
  background-color: #fff;
  -webkit-box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  overflow: hidden;
  width: 900px;
  padding: 30px 20px 10px;
}

@media screen and (max-width: 768px) {
  .trial__box {
    -webkit-box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 4px 3px 9px 0 rgba(0, 0, 0, 0.15);
    padding: 13px 20px 15px;
  }
}

.trial__sttl {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .trial__sttl {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    line-height: 1.6;
  }
}

.trial__sttl--br {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .trial__sttl--br {
    display: inline;
  }
}

.trial__btn,
.trial__btn_b {
  display: inline-block;
  width: 570px;
  height: 88px;
  background-repeat: no-repeat;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  border-radius: 5px;
}

.trial__btn {
  background-image: url(../images/trial_btn.svg);
  margin-bottom: 11px;
  background-color: #eb0000;
}

.trial__btn:hover {
  background-image: url(../images/trial_btnHover.svg);
}

.trial__btn_b {
  background-image: url(../images/trial_btn_b.svg);
  margin-bottom: 22px;
  background-color: #0076EB;
}

.trial__btn_b:hover {
  background-image: url(../images/trial_btn_bHover.svg);
}


@media screen and (max-width: 768px) {
  .trial__btn {
    background-size: 100%;
    height: 4.7rem;
    margin-bottom: 0.6rem;
    background-image: url(../images/trial_btnSP.svg);
  }
  .trial__btn:hover {
    background-image: url(../images/trial_btnSPHover.svg);
  }
  .trial__btn_b {
    background-size: 100%;
    height: 4.7rem;
    margin-bottom: 0.6rem;
    background-image: url(../images/trial_btn_bSP.svg);
  }
  .trial__btn_b:hover {
    background-image: url(../images/trial_btn_bSPHover.svg);
  }
}

.trial__btn--txt,
.trial__btn_b--txt {
  display: inline-block;
  background-image: url(../images/trial_arrow.svg);
  background-repeat: no-repeat;
  background-size: 23px;
  background-position: 100% 50%;
  font-weight: 600;
  padding-right: 48px;
  letter-spacing: 0.5px;
}

.trial__btn--txt {
  margin-top: 9px;
}
.trial__btn_b--txt {
  margin-top: 33px;
}

@media screen and (max-width: 768px) {
  .trial__btn--txt,
  .trial__btn_b--txt {
    font-size: 1.2rem;
    background-size: 1.2rem;
    padding-right: 2.7rem;
    line-height: 1em;
  }
  .trial__btn--txt {
    margin-top: 0.4rem;
  }
  .trial__btn_b--txt {
    margin-top: 1.8rem;
  }
}

.trial__btn--txt span,
.trial__btn_b--txt span {
  line-height: 1.6em;
  color: #fff;
  display: inline-block;
}

.trial__btn--txt span:first-child,
.trial__btn_b--txt span:first-child {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .trial__btn--txt span:first-child,
  .trial__btn_b--txt span:first-child {
    font-size: 1.4rem;
  }
}

.trial__btn--txt span:last-child,
.trial__btn_b--txt span:last-child {
  font-size: 27px;
  line-height: 1em;
}

@media screen and (max-width: 768px) {
  .trial__btn--txt span:last-child,
  .trial__btn_b--txt span:last-child {
    font-size: 1.4rem;
  }
}

.trial__cap {
  font-size: 12px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .trial__cap {
    font-size: 1.2rem;
    position: absolute;
    bottom: 0;
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.4em;
  }
}

@media screen and (max-width: 768px) {
  .trial__cap--txt01 {
    bottom: -2.8rem;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .trial__cap--txt02 {
    bottom: -6.3rem;
    left: 0;
  }
}

.voice {
  margin: 0 0 110px;
}

@media screen and (max-width: 768px) {
  .voice {
    margin-bottom: 4rem;
  }
}

.voice__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 70px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .voice__inner {
    padding: 10.9rem 0 0 0;
  }
}

.voice__ttl {
  font-size: 40px;
  margin-bottom: 55px;
  line-height: 1.3em;
}

@media screen and (max-width: 1000px) {
  .voice__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .voice__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .voice__list {
    width: 90%;
    margin: auto;
  }
}

.voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 65px;
}

.voice__item:nth-child(even) .voice__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 768px) {
  .voice__item:nth-child(even) .voice__img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

@media screen and (max-width: 768px) {
  .voice__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.voice__img {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .voice__img {
    width: 100%;
  }
}

.voice__img img {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .voice__img img {
    margin-top: 0;
  }
}

.voice__txtarea {
  width: calc((100% - 340px));
  text-align: left;
}

@media screen and (max-width: 768px) {
  .voice__txtarea {
    width: 100%;
  }
}

.voice__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 24px;
  font-weight: 600;
  color: #eb0000;
}

@media screen and (max-width: 768px) {
  .voice__name {
    font-size: 1.8rem;
    display: block;
    margin: 0.5rem 0 1.2rem;
  }
}

.voice__name span {
  display: inline-block;
  margin-right: 10px;
}

.voice__position {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .voice__position {
    display: block;
  }
}

.voice__position span {
  color: #eb0000;
  display: inline-block;
  font-size: 14px;
  border: solid 1px #eb0000;
  border-radius: 3px;
  min-width: 92px;
  padding: 4px 10px 2px 10px;
  line-height: 1rem;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .voice__position span {
    font-size: 1.3rem;
    padding: 0.5rem 1rem 0.5rem 1rem;
    min-width: 71px;
  }
}

.voice__position span:first-child {
  margin-right: 5px;
}

.voice__att {
  font-size: 24px;
  font-weight: 600;
  margin-top: 6px;
}

@media screen and (max-width: 768px) {
  .voice__att {
    font-size: 1.8rem;
    margin-top: 1.7rem;
  }
}

.voice__txt {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .voice__txt {
    font-size: 1.5rem;
  }
}

.voice__imp {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .voice__imp {
    font-size: 1.8rem;
    margin-top: 0.8rem;
  }
}

.flow__inner {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 70px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 10.9rem 0 0 0;
  }
}

.flow__ttl {
  font-size: 40px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
  .flow__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .flow__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1.8rem;
  }
}

.flow__sttl {
  position: relative;
  width: 352px;
  left: -18px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: 0 auto -16px auto;
  padding: 1px 0 1px;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .flow__sttl {
    font-size: 1.8vw;
    width: 35.2vw;
    left: -1.8vw;
    margin: 0 auto -1.6vw auto;
  }
}

@media screen and (max-width: 768px) {
  .flow__sttl {
    width: 28rem;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}

.flow__sttl--red {
  background-color: #eb0000;
}

.flow__sttl--blue {
  background-color: #01003a;
}

.flow__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 933px;
  margin: 0 auto 50px auto;
}

@media screen and (max-width: 768px) {
  .flow__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 80%;
  }
}

.flow__list--blue {
  max-width: 530px;
}

@media screen and (max-width: 1000px) {
  .flow__list--blue {
    max-width: 53vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__list--blue {
    max-width: 80%;
    margin-bottom: 2rem;
  }
}

.flow__item--txt {
  line-height: 1.3em;
  margin-top: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  .flow__item--txt {
    font-size: 1.6vw;
    margin-top: 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__item--txt {
    width: 48%;
    font-size: 1.5rem;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .flow__item--img {
    width: 48%;
  }
}

.flow__item:nth-child(odd) {
  width: 149px;
}

@media screen and (max-width: 1000px) {
  .flow__item:nth-child(odd) {
    width: 14.9vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__item:nth-child(odd) {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flow__item:nth-child(even) {
  width: 38px;
  height: 149px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1000px) {
  .flow__item:nth-child(even) {
    width: 3.8vw;
    height: 14.9vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__item:nth-child(even) {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 6.2rem;
    height: 3rem;
  }
}

.flow__item--allow {
  width: 10px;
}

@media screen and (max-width: 1000px) {
  .flow__item--allow {
    width: 1vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__item--allow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 1.3rem;
  }
}

.inc {
  background-image: url(../images/inc_back.png);
  padding-bottom: 82px;
  padding-top: 25px;
  margin-top: 140px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .inc {
    margin-top: 9rem;
    background-size: 2.2rem;
    padding-bottom: 53px;
    margin-bottom: 0rem;
  }
}

.inc__inner {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.inc__ttl {
  position: absolute;
  top: -102px;
  left: 0;
  right: 0;
  width: 670px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 1px 0 1px;
  z-index: 1;
  background-color: #01003a;
}

@media screen and (max-width: 1000px) {
  .inc__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .inc__ttl {
    width: 90%;
    font-size: 2rem;
    line-height: 1.4em;
    padding: 1rem 0;
    top: -9.5rem;
  }
}

.inc__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1070px;
  margin: 56px auto 0 auto;
}

@media screen and (max-width: 1000px) {
  .inc__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 470px;
    margin: 30px auto 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .inc__wrap {
    width: 90%;
  }
}

.inc__box {
  width: 50%;
}

@media screen and (max-width: 1100px) {
  .inc__box:first-child {
    width: 46%;
  }
}

@media screen and (max-width: 1000px) {
  .inc__box:first-child {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .inc__box:last-child {
    width: 54%;
  }
}

@media screen and (max-width: 1000px) {
  .inc__box:last-child {
    width: 100%;
  }
}

.inc__item {
  text-align: left;
  background-image: url(../images/inc_check.svg);
  background-repeat: no-repeat;
  background-position-y: 4px;
  padding-left: 20px;
  line-height: 1.3em;
  font-size: 18px;
  white-space: nowrap;
  margin-bottom: 9px;
}

@media screen and (max-width: 768px) {
  .inc__item {
    font-size: 1.5rem;
    white-space: normal;
    text-align: justify;
  }
}

.inc__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 37px;
}

@media screen and (max-width: 768px) {
  .inc__step {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 77%;
    margin: 32px auto 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .inc__step--item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

@media screen and (max-width: 768px) {
  .inc__step--ttl {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
}

.inc__step--figure {
  position: relative;
  max-width: 218px;
}

@media screen and (max-width: 768px) {
  .inc__step--figure {
    max-width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 16rem;
    max-width: 100%;
  }
}

.inc__step--cap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4em;
}

@media screen and (max-width: 1100px) {
  .inc__step--cap {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) {
  .inc__step--cap {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 768px) {
  .inc__step--cap {
    font-size: 1.3rem;
  }
}

.inc__step--arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 6px 0;
}

@media screen and (max-width: 768px) {
  .inc__step--arrow {
    padding: 0.2rem 0 0.2rem;
    width: 1rem;
    margin-left: 7.8rem;
  }
}

@media screen and (max-width: 768px) {
  .inc__step--arrowicon {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.inc__step--3months {
  position: absolute;
  top: -17%;
  right: 20.25%;
  width: 39%;
}

@media screen and (max-width: 768px) {
  .inc__step--3months {
    top: 25.9rem;
    right: unset;
    left: -7.3rem;
    height: 24rem;
  }
}

@media screen and (max-width: 768px) {
  .inc__step--3months img {
    height: 100%;
  }
}

.opt__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 0 0;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .opt__inner {
    padding: 1.8rem 0 0 0;
  }
}

.opt__ttl {
  font-size: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .opt__ttl {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .opt__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1.2rem;
  }
}

.opt__txt {
  color: #eb0000;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .opt__txt {
    font-size: 1.7rem;
  }
}

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

@media screen and (max-width: 768px) {
  .opt__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 80%;
    margin: auto;
  }
}

.opt__item {
  width: calc((100% / 3) - 10px);
}

@media screen and (max-width: 768px) {
  .opt__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.opt__item--txt {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: 7px;
}

@media screen and (max-width: 768px) {
  .opt__item--txt {
    font-size: 1.5rem;
  }
}

.opt__sttl {
  font-size: 30px;
  color: #fff;
  width: 670px;
  background-color: #01003a;
  text-align: center;
  margin: 40px auto 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .opt__sttl {
    width: 90%;
    font-size: 2rem;
    line-height: 1.4em;
    padding: 1rem 0;
  }
}

.opt__other--wrap {
  background-image: url(../images/inc_back.png);
}

@media screen and (max-width: 768px) {
  .opt__other--wrap {
    background-size: 2.2rem;
  }
}

.opt__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -32px auto 0 auto;
  padding: 70px 0 50px 0;
  margin-top: -32px;
  width: 820px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .opt__other {
    width: 85%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5rem 0 2.5rem 0;
  }
}

.opt__detail {
  width: 50%;
  text-align: left;
  background-image: url(../images/inc_check.svg);
  background-repeat: no-repeat;
  background-position-y: 4px;
  padding-left: 20px;
  line-height: 1.3em;
  font-size: 18px;
  white-space: nowrap;
  margin-bottom: 9px;
}

@media screen and (max-width: 768px) {
  .opt__detail {
    width: 100%;
    white-space: normal;
    font-size: 1.5rem;
  }
}

.faq__inner {
  max-width: 744px;
  width: 90%;
  margin: 0 auto;
  padding: 48px 0 80px;
}

@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 4rem 0;
  }
}

.faq__box {
  margin-bottom: 80px;
}

.faq__box:last-of-type {
  margin-bottom: 0;
}

.faq__ttl {
  font-size: 40px;
  font-size: 2.5rem;
  margin-bottom: 28px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .faq__ttl {
    font-size: 2.4rem;
    line-height: 1.4em;
    margin-bottom: 1.8rem;
  }
}

.faq__sttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d0521a;
  margin-bottom: 30px;
  font-size: 22px;
  font-size: 1.375rem;
}

.faq__sttl::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  margin-right: 20px;
  background: #d0521a;
}

.faq__sttl::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  margin-left: 20px;
  background: #d0521a;
}

.faq__list--item {
  margin-bottom: 20px;
}

.faq-ac {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
  cursor: pointer;
  background-image: linear-gradient(to right, #eb0000, #eb0000 4px, transparent 4px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position-y: 100%;
}

@media screen and (max-width: 768px) {
  .faq-ac {
    height: auto;
  }
}

.faq-ac__q {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #fff;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  background-color: #eb0000;
}

@media screen and (max-width: 768px) {
  .faq-ac__q {
    width: 3rem;
    height: 100%;
    font-size: 1.4rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.faq-ac__qtxt {
  padding: 0 10px 0 55px;
  font-weight: 600;
  line-height: 18px;
  width: calc(100% - 42px);
}

@media screen and (max-width: 768px) {
  .faq-ac__qtxt {
    padding: 0.7rem 0 0.7rem 4.1rem;
    line-height: 1.5;
    font-size: 1.4rem;
    text-align: justify;
    width: calc(100% - 3.6rem);
  }
}

.faq-ac__cont {
  display: none;
  padding: 8px 0 0px 0;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .faq-ac__cont {
    padding: 14px 0 30px 0;
  }
}

.faq-ac__cont__a {
  text-align: center;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #eb0000;
  border: 1px solid #eb0000;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  float: left;
  margin-right: 16px;
}

@media screen and (max-width: 768px) {
  .faq-ac__cont__a {
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.faq-ac__cont__atxt {
  font-size: 14px;
  display: inline-block;
  width: calc(100% - 56px);
  padding: 0 55px 0 0;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .faq-ac__cont__atxt {
    width: calc(100% - 4.6rem);
    text-align: justify;
    padding: 0 38px 0 0;
    line-height: 1.5;
    font-size: 1.4rem;
  }
}

.faq-ac__icon {
  margin: 0 15px 0 15px;
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eb0000;
}

@media screen and (max-width: 768px) {
  .faq-ac__icon {
    margin: 0 14px 0 auto;
  }
}

.faq-ac__icon::before {
  content: "";
  display: block;
  background: #d0521a;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-ac__cont.open {
  display: block;
}

.faq-ac__icon.open {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.faq-ac__icon.open::before {
  border-radius: 0%;
  width: 5px;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ftr {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .ftr {
    margin-top: 10.5rem;
  }
}

.ftr__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 363px;
  margin: 0 auto 35px;
}

@media screen and (max-width: 768px) {
  .ftr__list {
    width: 85%;
    margin-bottom: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .ftr__item {
    font-size: 1.4rem;
  }
}

.ftr__item--line::before {
  content: "｜";
  text-align: center;
  width: 47px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .ftr__item--line::before {
    width: 2rem;
  }
}

.ftr__item--line::after {
  content: "｜";
  text-align: center;
  width: 47px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .ftr__item--line::after {
    width: 2rem;
  }
}

.ftr__cpr {
  font-size: 12px;
  color: #fff;
  padding: 9px 0 10px;
  background-color: #000;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .ftr__cpr {
    font-size: 1rem;
  }
}

@-moz-document url-prefix() {
  .qul__item--txt span:nth-of-type(1) {
    line-height: 1em;
  }
}
/*# sourceMappingURL=style.css.map */
