@charset "UTF-8";
/*************************
共通class
************************ */
/* ************************
countdown
************************ */
/* ************************
header
************************ */
#header {
  background-color: #07223f;
  height: .8rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  #header {
    overflow-x: visible;
    height: 100%;
    padding-top: 0.12rem;
    padding-bottom: 0.1rem;
  }
}

#header .logo {
  width: 160px;
  height: 38px;
  position: absolute;
  left: .2rem;
  top: calc((100% - 18px) / 2);
}

@media screen and (max-width: 750px) {
  #header .logo {
    width: .7rem;
    height: auto;
    position: relative;
    margin: 0 auto .04rem;
    top: auto;
    left: auto;
  }
}

#header .hdtxt p {
  font-size: 0.4rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  color: #fff;
  text-shadow: -1px -1px 0 #000;
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  #header .hdtxt p {
    font-size: 0.2rem;
  }
}

/* ************************
main
************************ */
/* ************************
content
************************ */
#mv {
  background: transparent url(../img/bg_mv_pc.jpg) no-repeat scroll center center/cover;
  padding-bottom: 0.6rem;
}

@media screen and (max-width: 750px) {
  #mv {
    background: transparent url(../img/bg_mv_sp.jpg) no-repeat scroll center center/cover;
    padding-bottom: 0.4rem;
  }
}

#mv .container {
  max-width: 1000px;
  padding: 0;
}

@media screen and (max-width: 750px) {
  #mv .container {
    padding: 0 .16rem;
  }
}

#mv .progressbar {
  background-color: #e8e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path .8s ease .3s;
  transition: -webkit-clip-path .8s ease .3s;
  transition: clip-path .8s ease .3s;
  transition: clip-path .8s ease .3s, -webkit-clip-path .8s ease .3s;
}

.txtin #mv .progressbar {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

#mv .progressbar .left, #mv .progressbar .right {
  width: 50%;
  height: 0.36rem;
}

@media screen and (max-width: 750px) {
  #mv .progressbar .left, #mv .progressbar .right {
    height: 0.24rem;
  }
}

#mv .progressbar .left {
  background: linear-gradient(45deg, #085bcb 25%, #1477e7 25%, #1477e7 50%, #085bcb 50%, #085bcb 75%, #1477e7 75%, #1477e7);
  -webkit-animation: stripeBg 10s linear infinite;
          animation: stripeBg 10s linear infinite;
  background-size: 24px 24px;
  text-align: right;
  font-size: 0.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 0.36rem;
  padding-right: 0.1rem;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path .8s ease .8s;
  transition: -webkit-clip-path .8s ease .8s;
  transition: clip-path .8s ease .8s;
  transition: clip-path .8s ease .8s, -webkit-clip-path .8s ease .8s;
}

@media screen and (max-width: 750px) {
  #mv .progressbar .left {
    font-size: 0.15rem;
    line-height: 0.24rem;
  }
}

.txtin #mv .progressbar .left {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

#mv .catchbox {
  text-align: center;
  padding: 0.6rem 0 .7rem;
}

@media screen and (max-width: 750px) {
  #mv .catchbox {
    padding: 0.4rem 0;
  }
}

#mv .catchbox img {
  width: 8.48rem;
  height: 1.87rem;
}

@media screen and (max-width: 750px) {
  #mv .catchbox img {
    width: 100%;
    height: auto;
  }
}

#mv .txtbox {
  max-width: 960px;
  background-color: rgba(38, 58, 0, 0.7);
  padding: 0.3rem 0.3rem 0.48rem;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  #mv .txtbox {
    padding: 0.2rem 0.16rem 0.2rem;
  }
}

#mv .txtbox .hdtxt {
  font-size: 0.34rem;
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 900;
  text-align: center;
  line-height: calc(50 / 34);
  color: #fff;
  text-shadow: 1px 1px 0 #001d08;
  margin-bottom: 0.6rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  #mv .txtbox .hdtxt {
    font-size: 0.2rem;
    margin-bottom: 0.48rem;
  }
}

#mv .txtbox .hdtxt:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 35px solid transparent;
  border-top: 30px solid #ffe509;
  position: absolute;
  bottom: -.76rem;
  left: calc(50% - 35px);
}

@media screen and (max-width: 750px) {
  #mv .txtbox .hdtxt:after {
    border: 20px solid transparent;
    border-top: 24px solid #ffe509;
    position: absolute;
    bottom: -.48rem;
    left: calc(50% - 20px);
  }
}

#mv .txtbox .hdtxt span {
  display: inline-block;
  background-color: #05b536;
  border-radius: 0.04rem;
  line-height: 1;
  padding: 0.04rem 0.06rem;
  margin: 0 0.04rem;
}

#mv .txtbox .btnbox .btn {
  font-size: 0.5rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 7.2rem;
}

@media screen and (max-width: 750px) {
  #mv .txtbox .btnbox .btn {
    width: 100%;
    font-size: 0.28rem;
    letter-spacing: 0.05em;
  }
}

#mv .txtbox .btnbox .btn span {
  font-size: 0.3rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  display: block;
  margin-bottom: 0.1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 750px) {
  #mv .txtbox .btnbox .btn span {
    font-size: 0.17rem;
    letter-spacing: 0;
  }
}

@-webkit-keyframes stripeBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes stripeBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

#smartphone {
  height: 5.3rem;
  background: transparent url(../img/bg_cross.png) repeat scroll 0 0/18px;
  padding: 0;
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 750px) {
  #smartphone {
    height: auto;
    height: 2.65rem;
    margin-bottom: 0.3rem;
  }
}

#smartphone figure {
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

#smartphone figure img {
  display: inline-block;
  width: 2.8rem;
  border: 1px solid #d5d5d5;
  -webkit-box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.2);
  margin: 0 0.54rem;
}

@media screen and (max-width: 750px) {
  #smartphone figure img {
    width: 1.4rem;
    margin: 0 0.1rem;
  }
}

@-webkit-keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

#content01 {
  overflow-x: hidden;
}

@media screen and (max-width: 750px) {
  #content01 {
    overflow-x: visible;
  }
}

#content01 h2 {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #07223f;
  text-align: center;
  padding: .2rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.15em;
  position: relative;
}

@media screen and (max-width: 750px) {
  #content01 h2 {
    width: calc((100% - .32rem));
    min-width: auto;
    padding: .16rem;
    margin-bottom: 0.3rem;
  }
}

#content01 h2:before {
  content: '';
  display: block;
  min-width: 1200px;
  width: 100vw;
  height: .8rem;
  background: transparent url(../img/bg_stripe.png) repeat scroll center center/28px;
  position: absolute;
  top: calc((100% - .8rem) / 2);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 750px) {
  #content01 h2:before {
    min-width: auto;
  }
}

#content01 h2 span {
  display: inline-block;
  background-color: #05b536;
  font-size: 0.3rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  color: #fff;
  text-align: center;
  border-radius: .1rem;
  padding: 0.04rem 0.2rem;
  position: absolute;
  top: -.4rem;
  left: -0.6rem;
  -webkit-transform: rotateZ(-15deg);
          transform: rotateZ(-15deg);
}

@media screen and (max-width: 750px) {
  #content01 h2 span {
    font-size: 0.16rem;
    padding: 0.04rem 0.16rem;
    top: -.32rem;
    left: -0.12rem;
    -webkit-transform: rotateZ(-10deg);
            transform: rotateZ(-10deg);
  }
}

#content01 h2 strong {
  display: inline-block;
  font-size: 0.4rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  #content01 h2 strong {
    font-size: 0.2rem;
  }
}

#content01 h2 strong b {
  font-weight: 700;
}

#content01 .txt {
  margin-bottom: 0.4rem;
}

@media screen and (max-width: 750px) {
  #content01 .txt {
    margin-bottom: 0.3rem;
  }
}

#content01 .txt p {
  text-align: center;
}

@media screen and (max-width: 750px) {
  #content01 .txt p {
    text-align: left;
  }
}

#content01 .caselist {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 0.4rem;
}

#content01 .caselist .casebox {
  text-align: center;
  border: 1px solid #05b536;
  margin-top: 0.8rem;
  padding: 0.4rem 0.3rem 0.5rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox {
    padding: 0.3rem 0.16rem 0.3rem;
    margin-top: 0.4rem;
  }
}

#content01 .caselist .casebox h3 {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.3rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  color: #05b536;
  letter-spacing: 0.1em;
  padding: 0 .16rem;
  background-color: #fff;
  position: absolute;
  top: -0.32rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox h3 {
    font-size: 0.18rem;
    top: -0.16rem;
    padding: 0 .08rem;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox p {
    text-align: center;
  }
}

#content01 .caselist .casebox p:first-of-type {
  margin-top: 0;
}

#content01 .caselist .casebox .btnbox {
  padding-top: 0.3rem;
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox .btnbox {
    padding-top: 0.2rem;
  }
}

#content01 .caselist .casebox .btnbox .btn {
  font-size: 0.5rem;
  font-weight: 900;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 7.2rem;
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox .btnbox .btn {
    width: 100%;
    font-size: 0.27rem;
  }
}

#content01 .caselist .casebox .btnbox .btn span {
  font-size: 0.3rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  display: block;
  margin-bottom: 0.1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox .btnbox .btn span {
    font-size: 0.16rem;
  }
}

#content01 .caselist .casebox .qr {
  padding-top: 0.2rem;
  text-align: center;
}

#content01 .caselist .casebox .qr img {
  width: 1.8rem;
}

#content01 .caselist .casebox#case02 {
  padding-bottom: 0.3rem;
}

@media screen and (max-width: 750px) {
  #content01 .caselist .casebox#case02 {
    padding-bottom: 0.2rem;
  }
}

#content02 {
  background: transparent url(../img/bg_mail.jpg) no-repeat fixed center center/cover;
  padding-bottom: 1.2rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  #content02 {
    background: transparent url(../img/bg_mail_sp.jpg) no-repeat scroll center center/cover;
  }
}

#content02:before {
  content: '\f0e0';
  display: inline-block;
  font-size: 3.6rem;
  font-family: "Line Awesome Free","Line Awesome Brands";
  font-weight: 900;
  line-height: .8;
  color: #fff;
  opacity: 0.4;
  position: absolute;
  bottom: 0.3rem;
  left: 0.2rem;
  -webkit-transform: rotateZ(-15deg);
          transform: rotateZ(-15deg);
}

@media screen and (max-width: 750px) {
  #content02:before {
    font-size: 1.2rem;
    bottom: 0.16rem;
    left: 0.16rem;
  }
}

#content02 .ttl b {
  font-weight: 700;
  color: #d40000;
}

#content02 .txtbox {
  padding: 0.24rem .8rem;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 750px) {
  #content02 .txtbox {
    padding: 0.2rem .16rem;
  }
}

#content02 .txtbox p {
  text-align: center;
  font-size: 0.24rem;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  #content02 .txtbox p {
    font-size: 0.18rem;
  }
}

#content02 .mailmsg {
  background-color: #fff;
  padding: 0.4rem 1.5rem;
  margin-top: 0.24rem;
}

@media screen and (max-width: 750px) {
  #content02 .mailmsg {
    padding: 0.2rem .16rem;
  }
}

#content02 .mailmsg dl {
  font-size: 0.24rem;
  margin-top: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media screen and (max-width: 750px) {
  #content02 .mailmsg dl {
    font-size: 0.16rem;
    display: block;
  }
}

#content02 .mailmsg dl dt {
  width: 2.96rem;
  padding: 0.04rem 0.16rem;
  background-color: #e2f5a9;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
}

@media screen and (max-width: 750px) {
  #content02 .mailmsg dl dt {
    width: 100%;
    text-align: left;
    padding: 0.04rem 0.1rem;
  }
}

#content02 .mailmsg dl dd {
  padding: 0.04rem 0.16rem;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  #content02 .mailmsg dl dd {
    font-size: 0.16rem;
    padding: 0.04rem 0.1rem;
  }
}

#content03 .ttl {
  margin-bottom: 0.48rem;
}

@media screen and (max-width: 750px) {
  #content03 .ttl {
    display: inline-block;
    width: 100%;
  }
}

#content03 .ttl strong.marker {
  line-height: 1.5;
}

#content03 .troublelist ul {
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media screen and (max-width: 750px) {
  #content03 .troublelist ul {
    display: block;
  }
}

#content03 .troublelist ul li {
  width: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 750px) {
  #content03 .troublelist ul li {
    width: 100%;
    margin-top: 0.4rem;
  }
}

#content03 .troublelist ul li h3 {
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: calc(40 / 28);
  text-align: center;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 750px) {
  #content03 .troublelist ul li h3 {
    font-size: 0.2rem;
    margin-bottom: 0.12rem;
    letter-spacing: 0.03em;
  }
}

#content03 .troublelist ul li h3:before {
  counter-increment: number 1;
  content: counter(number) " ";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 1.1rem;
  border: 0.05rem solid #19a3cb;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  color: #19a3cb;
  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;
  margin: 0 auto;
  margin-bottom: 0.2rem;
}

@media screen and (max-width: 750px) {
  #content03 .troublelist ul li h3:before {
    width: .56rem;
    height: .56rem;
    border-radius: .56rem;
    border: 0.04rem solid #19a3cb;
    font-size: 0.35rem;
    margin-bottom: 0.12rem;
  }
}

#content03 .troublelist ul li .txt {
  background-color: #f4f4f4;
  padding: 0.2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  min-height: 0%;
}

#content03 .troublelist ul li .txt p {
  font-size: 0.16rem;
  text-align: left;
  letter-spacing: 0.02em;
  line-height: calc(28 / 16);
  margin-top: 0.2rem;
}

#content03 .troublelist ul li .txt p:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  #content03 .troublelist ul li:first-of-type {
    margin-top: 0;
  }
}

#content04 {
  background: transparent url(../img/bg_contact.jpg) no-repeat scroll center center/cover;
}

@media screen and (max-width: 750px) {
  #content04 {
    margin-top: 0;
    background: transparent url(../img/bg_contact_sp.jpg) no-repeat scroll center center/cover;
  }
}

#content04 h2 {
  font-size: 0.3rem;
  text-align: center;
  color: #fff;
  font-family: 'Noto Serif JP', "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0.36rem;
}

@media screen and (max-width: 750px) {
  #content04 h2 {
    font-size: 0.2rem;
    margin-bottom: 0.16rem;
  }
}

#content04 .btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content04 .btnbox .btn2 {
  margin-top: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.2rem 0.5rem;
}

@media screen and (max-width: 750px) {
  #content04 .btnbox .btn2 {
    width: 100%;
    padding: 0.12rem 0.3rem;
  }
}

#content04 .btnbox .btn2 i {
  font-size: 0.3rem;
  margin-right: 0.06rem;
}

@media screen and (max-width: 750px) {
  #content04 .btnbox .btn2 i {
    font-size: 0.2rem;
  }
}
