@charset "UTF-8";

/*------------------------------
settings
------------------------------*/


/*------------------------------
common
------------------------------*/

* {
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

html.is-open body {
  overflow: hidden;
}

html.is-open .gnav {
  height: 100vh;
  max-height: 100vh;
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: scroll;
}

@media (max-width: 559px) {
  html.is-open .gnav {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

body, input, select, textarea {
  color: #333;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 15px;
}

body {
  background-color: #f2f7ff;
  background-image: url("img/bg_mv.png"), url("img/bg_mv2.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto, 100%;
  font-weight: bold;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-word;
}

@media (max-width: 959px) {
  body {
    background-image: none, url("img/bg_mv2.png");
  }
}

header, main, footer {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a, iframe, img, video {
  display: block;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-position: under;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  opacity: 0.8;
}

li {
  list-style-type: none;
}

.inner {
  width: 1000px;
  max-width: calc(100% - 20px * 2);
  margin-right: auto;
  margin-left: auto;
}

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

.dg {
  display: -ms-grid;
  display: grid;
}

.pore {
  position: relative;
}

.poa {
  position: absolute;
}

.pc {
  display: block;
}

@media (max-width: 559px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}

@media (max-width: 959px) {
  .tb {
    display: block;
  }
}

@media (max-width: 559px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 559px) {
  .sp {
    display: block;
  }
}

.pc.tb {
  display: block;
}

@media (max-width: 559px) {
  .pc.tb {
    display: none;
  }
}

.tb.sp {
  display: none;
}


@media (max-width: 959px) {
  .tb.sp {
    display: block;
  }
   .sec3 .box h4 .pc {
    display: none;
  }
}

.hb {
  font-family: "Heebo", sans-serif;
}


/*-----------------------------
header
-----------------------------*/

.header {
  padding: 15px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 959px) {
  .header {
    padding: 15px 20px;
    background-color: #215ad5;
  }
}

.header .logo {
  max-width: 180px;
}

@media (max-width: 559px) {
  .header .logo {
    max-width: 120px;
  }
}

.header .logo, .header .hamburger {
  position: relative;
  z-index: 3;
}

.header .gnav {
  width: 100%;
  height: 0;
  max-height: 0;
  background-color: #215ad5;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 2;
}

.header .gnav ul {
  padding-right: 5vw;
  padding-left: 5vw;
}

.header .gnav ul li+li {
  margin-top: 22px;
}

@media (max-width: 559px) {
  .header .gnav ul li+li {
    margin-top: 10px;
  }
}

.header .gnav ul li a {
  padding-top: 1em;
  padding-bottom: 1em;
  background: #fff;
  border: 4px solid #000;
  border-radius: 19px;
  color: #215ad5;
  font-size: 29px;
  text-align: center;
}

.top_buybtn {
  max-width: 300px;
}

@media (max-width: 559px) {
  .header .gnav ul li a {
    font-size: 15px;
  }
}

.header .hamburger {
  width: 45px;
  height: 30px;
  cursor: pointer;
  position: relative;
}

@media (max-width: 959px) {
  .header .hamburger {
    width: 23px;
    height: 16px;
  }
}

.header .hamburger::before, .header .hamburger::after, .header .hamburger .border {
  width: 100%;
  height: 5px;
  background-color: #215ad5;
  border-radius: 2px;
  position: absolute;
  left: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

@media (max-width: 959px) {
  .header .hamburger::before, .header .hamburger::after, .header .hamburger .border {
    background-color: #fff;
    height: 2px;
  }
}

.header .hamburger::before, .header .hamburger::after {
  content: "";
}

.header .hamburger::before {
  top: 0;
}

.header .hamburger::after {
  bottom: 0;
}

.header .hamburger .border {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .hamburger.is-open::before, .header .hamburger.is-open::after, .header .hamburger.is-open .border {
  background-color: #fff;
}

.header .hamburger.is-open::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header .hamburger.is-open::after {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
  transform: translateY(50%) rotate(-45deg);
}

.header .hamburger.is-open .border {
  display: none;
}


/*-----------------------------
main
-----------------------------*/

.buy_btn {
  color: #fff;
  font-size: 17px;
}

.buy_btn a {
  border-radius: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buy_btn a .text {
  border-radius: 17px 0 0 17px;
  background: linear-gradient( -135deg, #30B101, #91D948);
  padding: 15px 42px;
}

.buy_btn a .icon {
  border-radius: 0 17px 17px 0;
  width: 55px;
  background: #4FCF0D;
  padding: 15px 0;
}

.buy_btn a .icon svg {
  width: 100%;
}

.top_buybtn {
  font-size: 20px;
}

.header .buy_btn {
  height: 45px;
}

.header .buy_btn a .text {
  padding: 0 30px;
  height: 45px;
  line-height: 42px;
  border-radius: 15px 0 0 15px;
}

.header .buy_btn a .icon {
  padding: 0;
  width: 50px;
  height: 45px;
  line-height: 45px;
  border-radius: 0 15px 15px 0;
}

.sec {
  padding-top: 150px;
}

.sec5 {
  padding-top: 90px;
}

@media (max-width: 559px) {
  .sec {
    padding-top: 100px;
  }
  .sec5 {
    padding-top: 70px;
  }
}

.sec .serif {
  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;
}

.sec .serif::before, .sec .serif::after {
  width: 3px;
  height: 1em;
  background: #000;
  content: "";
}

.sec .serif::before {
  margin-right: 0.6em;
  -webkit-transform: rotate(-24deg);
  transform: rotate(-24deg);
}

.sec .serif::after {
  margin-left: 0.6em;
  -webkit-transform: rotate(24deg);
  transform: rotate(24deg);
}

.sec1 {
  padding-top: 4vw;
  padding-left: 7vw;
  padding-bottom: 7vw;
  position: relative;
}

@media (max-width: 959px) {
  .sec1 {
    padding-top: 10vw;
    background-color: #215ad5;
    padding-right: 7vw;
  }
}

.sec1 .hgroup h2, .sec1 .hgroup h3 {
  color: #fff;
}

.sec1 .hgroup h2 {
  font-size: 24px;
}

@media (max-width: 1059px) {
  .sec1 .hgroup h2 {
    font-size: 20px;
  }
}

@media (max-width: 959px) {
  .sec1 .hgroup h2 {
    text-align: center;
  }
}

@media (max-width: 559px) {
  .sec1 .hgroup h2 {
    font-size: 15px;
  }
}

.sec1 .hgroup h2 span {
  margin-top: 20px;
  display: block;
  font-size: 2.70833333em;
  line-height: 1.1;
}

@media (max-width: 959px) {
  .sec1 .hgroup h2 span {
    margin-top: 10px;
  }
}

@media (max-width: 959px) {
  .sec1 .hgroup h2 span {
    font-size: 2.8em;
  }
}

.sec1 .hgroup h3 {
  margin-top: 20px;
  font-size: 30px;
  line-height: 51px;
}

@media (max-width: 1059px) {
  .sec1 .hgroup h3 {
    font-size: 25px;
  }
}

@media (max-width: 959px) {
  .sec1 .hgroup h3 {
    line-height: 2;
    text-align: center;
  }
}

@media (max-width: 559px) {
  .sec1 .hgroup h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}

.sec1 .hgroup a {
  margin-top: 30px;
}

.sec1 .top_buybtn.sp {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.sec1 .top_buybtn.sp .text {
  border-radius: 13px 0 0 13px;
  padding: 0px 30px;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
}

.sec1 .top_buybtn.sp .icon {
  border-radius: 0 13px 13px 0;
  padding: 0px 0px;
  height: 50px;
  line-height: 50px;
}

.sec1 .top_buybtn.sp a {
  justify-content: center;
}

.sec1 .top_buybtn.sp .icon {
  text-align: center;
}

.sec1 .top_buybtn.sp .icon svg {
  width: 15px;
  margin-bottom: 1px;
}

@media (max-width: 559px) {
  .sec1 .top_buybtn.sp {
    width: 70%;
  }
}

.sec1 .top_buybtn.sp a {
  width: 100%;
}

.sec1 [class*="img"] {
  position: absolute;
}

.sec1 .img1 {
  max-width: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 959px) {
  .sec1 .img1 {
    max-width: 65%;
    margin-top: 4vw;
    margin-right: auto;
    margin-left: auto;
    position: static;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .sec1 .pc {
    display: none;
  }
}

@media (max-width: 559px) {
  .sec1 .img1 {
    max-width: 100%;
  }
}

.sec1 .img2 {
  width: 100%;
  top: 100%;
  left: 0;
}

.sec1 .img3 {
  top: 35%;
  right: -40px;
}

.sec1 .pc.img3 {
  top: 72%;
  right: 52%;
  width: 90px;
}

@media (max-width: 1100px) {
  .sec1 .pc.img3 {
    top: 76%;
    right: 50%;
    width: 80px;
  }
}

@media (max-width: 959px) {
  .sec1 .img5 {
    width: 170px;
  }
  .sec1 .img3 {
    width: 130px;
  }
  .sec1 .img4 {
    width: 190px;
  }
}

@media (max-width: 559px) {
  .sec1 .img3 {
    width: 80px;
  }
}

.sec1 .img4 {
  top: 30%;
  left: -80px;
}

.sec1 .pc.img4 {
  top: -2%;
  right: 40%;
  left: auto;
  width: 180px;
}

@media (max-width: 559px) {
  .sec1 .img4 {
    width: 100px;
    left: -40px;
  }
}

.sec1 .img5 {
  top: 5%;
  right: -40px;
}

.sec1 .pc.img5 {
  top: -20%;
  width: 170px;
}

@media (max-width: 559px) {
  .sec1 .img5 {
    width: 80px;
    right: -30px;
  }
}

.sec2 h4 {
  font-size: 46px;
  text-align: center;
}

@media (max-width: 959px) {
  .sec2 h4 {
    padding-right: 7vw;
    padding-left: 7vw;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
  }
}

@media (max-width: 559px) {
  .sec2 h4 {
    font-size: 25px;
  }
}

.sec2 h4 .serif {
  margin-bottom: 20px;
  font-size: 0.58695652em;
  letter-spacing: 1.05px;
}

@media (max-width: 559px) {
  .sec2 h4 .serif {
    margin-bottom: 10px;
  }
}

.sec2 h4 .border {
  margin-right: 20px;
  padding: 0.2em 0.75em;
  border: 3px solid #000;
  background-color: #fff;
  border-radius: 8px;
  color: #215ad5;
  font-size: 0.95652174em;
}

@media (max-width: 959px) {
  .sec2 h4 .border {
    margin-right: 0;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sec2 h5 {
  margin-top: 27px;
  padding-top: 50px;
  padding-bottom: 60px;
  background: #215ad5;
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
  position: relative;
  text-align: center;
}

@media (max-width: 959px) {
  .sec2 h5 {
    font-size: 31px;
  }
}

@media (max-width: 559px) {
  .sec2 h5 {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.sec2 h5>span {
  position: relative;
  z-index: 1;
}

.sec2 h5 .fl {
  font-size: 1.222222222em;
}

.sec2 h5 img {
  position: absolute;
}

.sec2 h5 .img1 {
  top: 50%;
  left: calc(100% + 150px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
}

@media (max-width: 959px) {
  .sec2 h5 .img1 {
    bottom: 0px;
    top: auto;
    left: 125%;
    right: -20px;
    width: 30px;
  }
}

.sec2 .secIn {
  padding-bottom: 50px;
  background: url("img/bg_problem.png") no-repeat bottom left/100%;
}

.sec2 .inner {
  width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.sec2 .problem {
  margin-top: -30px;
  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;
  position: relative;
}

@media (max-width: 959px) {
  .sec2 .problem {
    margin-top: 55px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sec2 .problem li {
  width: 331px;
  padding-top: 2em;
  padding-right: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  border: 4px solid #272c30;
  border-radius: 19px;
  background-color: #fff;
  font-size: 22px;
  position: relative;
}

@media (max-width: 959px) {
  .sec2 .problem li {
    max-width: unset;
    font-size: 18px;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li {
    padding-top: 1.2em;
    padding-right: .5em;
    padding-bottom: .6em;
    padding-left: .5em;
    border: 2px solid #272c30;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li+li {
    margin-top: 80px !important;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li+li {
    margin-top: 11vw !important;
  }
}

.sec2 .problem li figure {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 959px) {
  .sec2 .problem li figure {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.sec2 .problem li figure figcaption h6 {
  width: 80%;
  padding: 0.28em 1em;
  background-color: #ffeb00;
  border: 4px solid #272c30;
  border-radius: 3em;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 959px) {
  .sec2 .problem li figure figcaption h6 {
    width: auto;
    padding: 0.15em 1em;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li figure figcaption h6 {
    font-size: 12px;
    border: 2px solid #272c30;
  }
}

.sec2 .problem li figure figcaption p {
  word-break: break-all;
  text-align: center;
}

@media (max-width: 559px) {
  .sec2 .problem li figure figcaption p {
    font-size: 14.5px;
    margin-top: 5px;
    letter-spacing: -0.5px;
  }
}

.sec2 .problem li figure figcaption p span {
  color: #1847ac;
}

.sec2 .problem li figure img {
  margin-top: 20px;
  max-height: 185px;
}

@media (max-width: 959px) {
  .sec2 .problem li figure img {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    width: 25%;
  }
  .sec2 .problem li:nth-of-type(1) img {
    transform: scale(-1, 1);
    right: 25%!important;
  }
  .sec2 .problem li:nth-of-type(2) img {
    transform: scale(-1, 1);
    left: 25%!important;
  }
  .sec2 .problem li:nth-of-type(5) img {
    transform: scale(-1, 1);
    right: 25%!important;
  }
  .sec2 .problem li br.sp {
    display: none;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li br.sp {
    display: block;
  }
  .sec2 .problem li figure img {
    width: 27%;
  }
  .sec2 .problem li figcaption {
    width: calc( 100% - 90px);
  }
  .sec2 .problem li:nth-of-type(1) img {
    transform: scale(-1, 1);
    right: 27%!important;
  }
  .sec2 .problem li:nth-of-type(2) img {
    transform: scale(-1, 1);
    left: 28%!important;
  }
  .sec2 .problem li:nth-of-type(5) img {
    transform: scale(-1, 1);
    right: 27%!important;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(odd) {
    width: calc(100vw - (100vw - 100%) / 2);
    padding-right: 0;
    border-radius: 19px 0 0 19px;
    border-right: none;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li:nth-of-type(odd) {
    border-radius: 12px 0 0 12px;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(odd) figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(odd) figure figcaption h6 {
    left: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(odd) figure figcaption p {
    text-align: left;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(odd) figure img {
    margin-left: 80px;
    right: 0;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li:nth-of-type(odd) figure img {
    margin-left: 60px;
  }
  .sec2 .problem li {
    padding: 15px 30px;
  }
}

@media (max-width: 375px) {
  .sec2 .problem li {
    padding: 15px 22px;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(even) {
    width: calc(100vw - (100vw - 100%) / 2);
    margin-left: calc(50% - 50vw)!important;
    padding-left: 0;
    border-radius: 0 19px 19px 0;
    border-left: none;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li:nth-of-type(even) {
    border-radius: 0 12px 12px 0;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(even) figure {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(even) figure figcaption h6 {
    right: 20px;
    left: unset;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(even) figure figcaption p {
    text-align: right;
  }
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(even) img {
    margin-right: 80px;
    left: 0;
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
  }
}

@media (max-width: 559px) {
  .sec2 .problem li:nth-of-type(even) img {
    margin-right: 60px;
  }
}

.sec2 .problem li:nth-of-type(n+4) {
  margin-top: 208px;
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(n+4) {
    margin-top: 0;
  }
}

.sec2 .problem li:nth-of-type(2) {
  position: absolute;
  top: 31%;
  /*
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);*/
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 959px) {
  .sec2 .problem li:nth-of-type(2) {
    position: static;
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.sec3 .box {
  margin-top: 130px;
  margin-left: auto;
  padding-top: min(30vw, 370px);
  padding-bottom: 150px;
  position: relative;
}
.sec3 .box .btnbox{ max-width: calc(100% - 80px); margin: auto; padding-top: 80px; text-align: center; }
.sec3 .box .btnbox .btn{ font-size: 18px; border-radius: 0.75rem; display: inline-block; padding: 1rem 3.5rem 1rem 3.5rem; -webkit-transition: all 0.3s; transition: all 0.3s; background: #ffeb00; }
.sec3 .box .btnbox .btn span,
.sec3 .box .btnbox .btn .fa-position-right{ color: #000; }
@media (max-width: 559px) {
  .sec3 .box .btnbox{
    padding-top: 40px;
    line-height: 10px;
    max-width: calc(100% - 50px);
  }
  .sec3 .box .btnbox .btn {
    font-size: 14px;
    display: inline-block;
    padding: 10px 30px;
    width: 100%;
}
}
@media (max-width: 959px) {
  .sec3 .box {
    padding-top: min(90vw, 620px);
    padding-bottom: 100px;
  }
}

@media (max-width: 559px) {
  .sec3 .box {
    padding-top: min(80vw, 440px);
  }
}

@media (max-width: 559px) {
  .sec3 .box {
    padding-bottom: 50px;
  }
}

.sec3 .box .bg {
  width: calc(100% - 50px);
  height: 100%;
  background-color: #fff;
  border: 4px solid #000;
  border-right: none;
  border-radius: 16px 0 0 16px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media (max-width: 959px) {
  .sec3 .box .bg {
    width: calc(100% - 20px);
  }
}

@media (max-width: 559px) {
  .sec3 .box .bg {
    width: calc(100% - 10px);
  }
  .sec3 .box .bg {
    border: 2px solid #000;
  }
}

.sec3 .box h4 {
  width: 1051px;
  max-width: 90%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -185px);
  transform: translate(-50%, -185px);
}

@media (max-width: 959px) {
  .sec3 .box h4 {
    -webkit-transform: translate(-45%, -185px);
    transform: translate(-45%, -185px);
  }
}

.sec3 .box h4 img {
  margin-right: auto;
  margin-left: auto;
}

.sec3 .box h4 .img2 {
  max-width: 38%;
  position: absolute;
  bottom: 17%;
  left: -12%;
}

.sec3 .box .function li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 (max-width: 959px) {
  .sec3 .box .function li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sec3 .box .function li+li {
  margin-top: 200px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li+li {
    margin-top: 150px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li+li {
    margin-top: 80px;
  }
}


/*@media (max-width: 559px) {
  .sec3 .box .function li + li {
    margin-top: 40px;
  }
}*/

.sec3 .box .function li .text .title {
  padding-top: 1.25em;
  padding-bottom: 0.76em;
  background-color: #215ad5;
  border: 4px solid #000000;
  color: #fff;
  font-size: 42px;
  line-height: 1.3;
  position: relative;
}

@media (max-width: 1059px) {
  .sec3 .box .function li .text .title {
    font-size: 38px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li .text .title {
    padding-left: 60px !important;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li .text .title {
    padding-left: 30px !important;
    font-size: 19px;
    line-height: 1.6;
    border: 2px solid #000000;
  }
}

.sec3 .box .function li .text .titleSub {
  padding: 0.7em 0.94em;
  background-color: #fff;
  border: 3px solid #000000;
  border-radius: 3em 0 3em 3em;
  color: #222;
  font-size: 17px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1059px) {
  .sec3 .box .function li .text .titleSub {
    font-size: 14px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li .text .titleSub {
    left: 60px !important;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li .text .titleSub {
    padding: 0.5em 0.94em;
    font-size: 10px;
    left: 30px !important;
    border: 2px solid #000000;
  }
}

.sec3 .box .function li .text .title .s {
  font-size: 0.45238095em;
}

.sec3 .box .function li .text .title .imgNum {
  position: absolute;
  top: 47px;
  right: 20px;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  max-width: 190px;
}

@media (max-width: 1200px) {
  .sec3 .box .function li .text .title .imgNum {
    top: 30px;
    max-width: 150px
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li .text .title .imgNum {
    width: 120px;
    top: unset;
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li .text .title .imgNum {
    width: 75px;
  }
}

.sec3 .box .function li .text p {
  margin-top: 40px;
  font-size: 17px;
  line-height: 33px;
}

@media (max-width: 559px) {
  .sec3 .box .function li .text p {
    margin-top: 40px;
    font-size: 12px;
    line-height: 1.8;
  }
}

.sec3 .box .function li .text p span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 559px) {
  .sec3 .box .function li .text p span {
    font-size: 11px;
  }
}

.sec3 .box .function li .img {
  max-width: 36%;
  padding-bottom: 38px;
  background-color: #fff;
  border: 4px solid #000;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 959px) {
  .sec3 .box .function li .img {
    max-width: calc(100% - 80px);
    margin-top: 70px;
    margin-right: auto;
    margin-left: auto;
    border: 4px solid #000 !important;
    border-radius: 15px !important;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li .img {
    max-width: calc(100% - 50px);
    margin-top: 60px;
    padding: 0 20px 20px !important;
    border: 2px solid #000 !important;
  }
}

.sec3 .box .function li .img img {
  margin-top: -40px;
}

@media (max-width: 559px) {
  .sec3 .box .function li .img img {
    margin-top: -30px;
  }
}

.sec3 .box .function li:nth-of-type(odd) .text {
  margin-right: 64px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(odd) .text {
    margin-right: 40px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(odd) .text {
    margin-right: 20px;
  }
}

.sec3 .box .function li:nth-of-type(odd) .text .title {
  padding-left: 128px;
  border-left: none;
  border-radius: 0 16px 16px 0;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(odd) .text .title {
    padding-left: 80px;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li:nth-of-type(odd) .text .title {
    border-radius: 0 12px 12px 0;
  }
}

.sec3 .box .function li:nth-of-type(odd) .text .titleSub {
  left: 128px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(odd) .text .titleSub {
    left: 80px;
  }
}

.sec3 .box .function li:nth-of-type(odd) .text p {
  padding-left: 128px;
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(odd) .text p {
    padding-left: 47px;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li:nth-of-type(odd) .text p {
    padding-left: 40px;
  }
}

.sec3 .box .function li:nth-of-type(odd) .img {
  padding-left: 20px;
  border-right: none;
  border-radius: 15px 0 0 15px;
}

.sec3 .box .function li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sec3 .box .function li:nth-of-type(even) .text {
  margin-left: 64px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(even) .text {
    margin-left: 40px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(even) .text {
    margin-left: 0;
    margin-right: 20px;
  }
}

.sec3 .box .function li:nth-of-type(even) .text .title {
  padding-left: 47px;
  border-right: none;
  border-radius: 16px 0 0 16px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(even) .text .title {
    padding-left: 30px;
  }
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(even) .text .title {
    border-right: 4px solid #000;
    border-left: none;
    border-radius: 0 16px 16px 0;
  }
}

@media (max-width: 559px) {
  .sec3 .box .function li:nth-of-type(even) .text .title {
    border-radius: 0 12px 12px 0;
  }
}

.sec3 .box .function li:nth-of-type(even) .text .titleSub {
  left: 47px;
}

@media (max-width: 1059px) {
  .sec3 .box .function li:nth-of-type(even) .text .titleSub {
    left: 30px;
  }
}

.sec3 .box .function li:nth-of-type(even) .img {
  padding-right: 20px;
  border-left: none;
  border-radius: 0 15px 15px 0;
}

.sec3 .box .function li:nth-of-type(even) p {
  margin-right: 70px;
  padding-left: 47px;
}

@media (max-width: 959px) {
  .sec3 .box .function li:nth-of-type(even) p {
    margin-right: 0;
  }
}

@media (max-width: 559px) {
  .sec4 {
    padding-top: 50px;
  }
}

.sec4 h4 {
  font-size: 32px;
  text-align: center;
}

@media (max-width: 959px) {
  .sec4 h4 {
    font-size: 30px;
  }
}

@media (max-width: 559px) {
  .sec4 h4 {
    font-size: 16px;
  }
}

.sec4 h4 span {
  color: #215ad5;
  display: block;
}

.sec4 .inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.sec4 .box {
  margin-top: 82px;
  padding-top: 70px;
  padding-bottom: 60px;
  background-color: #ffeb00;
  border: 3px solid #000;
  border-radius: 16px;
  position: relative;
}

@media (max-width: 959px) {
  .sec4 .box {
    padding-bottom: 40px;
  }
}

@media (max-width: 559px) {
  .sec4 .box {
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

.sec4 .box .title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1em 1.5em;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 3em;
  font-size: 21px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 559px) {
  .sec4 .box .title {
    font-size: 12px;
    border: 2px solid #000;
    width: 200px;
    text-align: center;
  }
}

.sec4 .box h5 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, transparent), color-stop(30%, #fff), color-stop(70%, #fff), color-stop(70%, transparent));
  background: linear-gradient(0deg, transparent 30%, #fff 30%, #fff 70%, transparent 70%);
  font-size: 33px;
}

@media (max-width: 559px) {
  .sec4 .box h5 {
    font-size: 16px;
  }
}

.sec4 .box p {
  margin-top: 40px;
  font-size: 17px;
  text-align: center;
  line-height: 33px;
  margin-bottom: 50px;
}

@media (max-width: 959px) {
  .sec4 .box p {
    font-size: 22px;
  }
}

@media (max-width: 559px) {
  .sec4 .box p {
    margin-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 959px) {
  .sec4 .box p span {
    display: block;
    font-size: 1.16666667em;
  }
}

@media (max-width: 559px) {
  .sec4 .box p span {
    font-size: 1em;
  }
}

@media (max-width: 320px) {
  .sec4 .box p .tb.sp {
    display: none;
  }
  .sec2 .problem li figure figcaption p .tb.sp {
    display: none;
  }
  .sec2 h5 .img1 {
    left: 120%;
  }
}

.sec4 .box .buy {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 50px;
}

.sec4 .box .buy .buy_btn {
  font-size: 15px;
  position: absolute;
  bottom: 10px;
}

.sec4 .box .buy .buy_btn a .text {
  height: 45px;
  line-height: 45px;
  padding: 0px 20px;
  border-radius: 13px 0 0 13px;
}

.sec4 .box .buy .buy_btn a .icon {
  height: 45px;
  line-height: 45px;
  padding: 0;
  border-radius: 0 13px 13px 0;
  width: 40px;
  text-align: center;
}

.sec4 .box .buy .buy_btn a .icon svg {
  width: 13px;
}

.sec4 .box .buy li.pc {
  position: relative;
}

.sec4 .box .buy li.pc .top {}

@media (max-width: 1200px) {
  .sec4 .box .buy {
    padding: 0 20px;
  }
}

@media (max-width: 959px) {
  .sec4 .box .buy {
    padding-right: 100px;
    padding-left: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 559px) {
  .sec4 .box .buy {
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 0;
  }
}

.sec4 .box .buy li.pc {
  width: calc( 100% / 3);
  height: auto;
  padding-top: 20px;
  padding-bottom: 80px;
  background: url("img/bg_buy.png") no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 959px) {
  .sec4 .box .buy li.pc {
    display: none !important;
  }
  .sec4 .box .buy li:nth-child(even) img {
    margin-top: 0!important;
  }
  .sec4 .box .buy li {
    width: 100%;
  }
}

.sec4 .box .buy li.pc+li.pc {
  margin-left: 10px;
}

.sec4 .box .buy li.pc h6 {
  font-size: 17px;
  /*margin-top: 20px;*/
  display: inline-flex;
  text-align: center;
  align-items: center;
  height: 50px;
  line-height: 1.7;
  justify-content: center;
}

@media (max-width: 1200px) {
  .sec4 .box .buy li.pc+li.pc {
    margin-left: 10px;
  }
  .sec4 .box .buy li.pc h6 {
    font-size: 15px;
    line-height: 25px;
  }
  .sec4 .box .buy .buy_btn a .text {
    height: 40px;
    line-height: 40px;
    border-radius: 9px 0 0 9px;
  }
  .sec4 .box .buy .buy_btn a .icon {
    height: 40px;
    line-height: 40px;
    border-radius: 0 9px 9px 0;
  }
  .sec4 .box .buy .buy_btn {
    bottom: 35px;
  }
  .sec4 .box .buy li.pc {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}

@media (max-width: 1024px) {
  .sec4 .box .buy li.pc+li.pc {
    margin-left: 5px;
  }
  .sec4 .box .buy .buy_btn {
    font-size: 14px;
  }
  .sec4 .box .buy .buy_btn {
    bottom: 45px;
  }
  .sec4 .box .buy .buy_btn a .text {
    height: 35px;
    line-height: 35px;
    border-radius: 9px 0 0 9px;
  }
  .sec4 .box .buy .buy_btn a .icon {
    height: 35px;
    line-height: 35px;
    border-radius: 0 9px 9px 0;
  }
}

@media (max-width: 959px) {
  .sec4 .box .buy li.pc+li.pc {
    margin-top: 30px;
    margin-left: 0;
  }
}

.sec4 .box .buy li.pc a {
  width: 200px;
  margin-top: auto;
  margin-bottom: 20px;
}

.sec4 .box .buy li.tb.sp+li.tb.sp {
  margin-top: 30px;
}

@media (max-width: 559px) {
  .sec4 .box .buy li.tb.sp+li.tb.sp {
    margin-top: 20px;
  }
}

.sec4 .box .buy .docomo img {
  margin-top: 10px;
}

.sec4 .box .buy img {
  max-width: 200px;
}

.sec4 .box .buy .recomot img {
  margin-top: 25px;
}

.sec4 .box .buy .jscom .jscom_img {
  max-width: 130px;
  margin: 20px auto 0;
}

.sec4 .box .buy .x .x_img {
  max-width: 95px;
  margin: 0px auto 12px;
}

@media (max-width: 959px) {
  .sec4 .box .buy img {
    max-width: 100%;
  }
}

.sec4 .box .buy li:nth-child(even) img {
  margin-top: 0px;
}

.sec4 .box .bg {
  width: 100%;
  height: 200px;
  background-color: #215ad5;
  border-radius: 0 0 11px 11px;
  border-top: 3px solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 1024px) {
  .sec4 .box .buy li.pc h6 {
    margin-top: 15px;
    font-size: 13px;
  }
  .sec4 .box .buy li:nth-child(even) img {
    margin-top: -10px;
  }
  .sec4 .box .buy .recomot img {
    margin-top: 10px;
  }
  .sec4 .box .buy .jscom .jscom_img {
    margin-top: 10px;
  }
  .sec4 .box .buy .docomo img {
    margin-top: 0px;
  }
}

.sec4 .box .img {
  position: absolute;
}

.sec4 .box .img1 {
  top: 102px;
  left: 15px;
  max-width: 130px;
}

@media (max-width: 959px) {
  .sec4 .box .img1 {
    top: 30%;
    left: -58px;
  }
  .sec4 .box .bg {
    height: 675px;
  }
}

@media (max-width: 559px) {
  .sec4 .box .bg {
    height: 54%;
  }
}

@media (max-width: 559px) {
  .sec4 .box .img1 {
    left: unset;
    right: calc(100% - 20px);
    max-width: 120px;
  }
}

.sec4 .box .img2 {
  top: 25px;
  right: 140px;
  max-width: 90px;
}

@media (max-width: 959px) {
  .sec4 .box .img2 {
    right: -40px;
  }
}

@media (max-width: 559px) {
  .sec4 .box .img2 {
    top: 10px;
    max-width: 70px;
  }
}

.sec4 .box .img3 {
  top: 113px;
  right: 29px;
  max-width: 130px;
}

@media (max-width: 959px) {
  .sec4 .box .img3 {
    top: 30%;
    right: -41px;
  }
}

@media (max-width: 559px) {
  .sec4 .box .img3 {
    right: unset;
    left: calc(100% - 30px);
    max-width: 120px;
  }
}

.sec4 .box .img4 {
  top: 39px;
  left: 143px;
  max-width: 110px;
}

@media (max-width: 959px) {
  .sec4 .box .img4 {
    left: -42px;
  }
}

@media (max-width: 559px) {
  .sec4 .box .img4 {
    top: 10px;
    max-width: 90px;
  }
}


/*-----------------------------
footer
-----------------------------*/

.footer {
  padding-top: 90px;
}

@media (max-width: 559px) {
  .footer {
    padding-top: 40px;
  }
}

.footer img {
  margin-right: auto;
  margin-left: auto;
  max-width: 250px;
}

@media (max-width: 559px) {
  .footer img {
    max-width: 180px;
  }
}

.footer .copyright {
  padding-bottom: 40px;
  margin-top: 70px;
  text-align: center;
}

@media (max-width: 559px) {
  .footer .copyright {
    margin-top: 30px;
  }
}

@media (max-width: 959px) {
  .footer {
    padding-bottom: 100px;
  }
}

.footer .buy_fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 2;
  height: 100px;
}

.footer .buy {
  padding: 20px;
  position: relative;
  height: 100px;
}

.footer .buy a {
  height: 100%;
  position: relative;
  z-index: 1;
}

.footer .buy .img1 {
  max-width: 50%;
  height: 100%;
  height: auto;
}

.footer .buy .img2 {
  max-width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}

.footer .buy .contact-btn {
  width: 46%;
  text-align: center;
  color: #fff;
  margin-right: 10px;
}

.footer .buy .contact-btn a {
  background-color: #FF8900;
  padding: 16px 5px;
  border-radius: 7px;
  /* text-align: center; */
  text-align: left;
  border: 2px solid #1B3A7C;
  font-size: 14px;
  -webkit-box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.4;
}
.footer .buy .contact-btn:first-child a {
  text-indent: -8px;
}
.footer .buy .contact-btn a span {
  position: absolute;
  right: 15px;
}

.footer .buy .contact-btn .gr {
  background-color: #4DBD16;
}

@media (max-width: 959px) {
  .footer .buy {
    padding: 0px;
    height: 53px;
  }
  .footer .buy_fixed {
    height: auto;
    padding: 10px 0;
    background-color: #fff;
  }
  .footer .buy .img2 {
    max-width: 33%;
    display: none;
  }
  .footer .buy {
    display: flex;
    justify-content: center;
    padding-left: 5px!important;
  }
}

@media (max-width: 559px) {
  .footer .buy {
    padding: 0px;
    height: 52px;
  }
  .footer .buy_fixed {
    height: auto;
    padding: 10px 0;
    background-color: #fff;
  }
  .footer .buy .img2 {
    max-width: 33%;
    display: none;
  }
}

main {
  padding-top: 95px;
}


/* ---------------------------- */


/* header
/* ---------------------------- */

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 25px;
  width: calc( 100% - 50px);
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 80px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.header.fixed {
  position: fixed;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 0 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9;
  box-shadow: 0 3px 6px rgb(129 129 129 / 16%);
}

.header .buy_btn {
  display: none;
}

.header.fixed .buy_btn {
  display: block;
  height: 45px;
}

.header.fixed .buy_btn img {
  height: 45px;
}

.header .fixed_block {
  display: none;
}

.header.fixed .fixed_none {
  display: none;
}

.header.fixed .fixed_block {
  display: block;
}

.header a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}

.header.fixed a {
  color: #fff;
}

.header.fixed a::after {
  color: #fff;
}

.header a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 959px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0px;
    width: 100%;
    z-index: 1;
    height: 66px;
    border-radius: 0;
  }
  main {
    padding-top: 65px;
  }
}


/* 2021.11 */

.sec1 .pc.img3 {
  z-index: -1;
}

.sec1 .img1 {
  z-index: -1;
  width: 100%;
}

.buy_btn a .text, .buy_btn a .icon {
  background: #FF8900;
}

.sec4 .box .buy .buy_btn a .icon svg {
  transform: rotate(270deg);
}

.header.fixed .buy_btn2 {
  display: flex;
}

.header.fixed .buy_btn2 a {
  margin-left: 10px;
  position: relative;
  width: 240px;
  display: inline-block;
  text-indent: -8px;
}

.buy_btn2 a .text {
  background: #FF8900;
  padding: 0px 5px !important;
  border-radius: 7px !important;
  border: 2px solid #1B3A7C;
  font-size: 16px;
  -webkit-box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  width: 100%;
  text-align: center;
}

.buy_btn2 a .text span {
  position: absolute;
  right: 15px;
}

li .buy_btn2 a .text span {
  transform: rotate(270deg);
}

.buy_btn2 a .gr {
  background: #4DBD16;
}

.btn-box {
  display: flex;
}

.btn-box .contact-btn {
  /* width: 271px; */
  width: 325px;
  text-align: center;
  color: #fff;
  margin-right: 10px;
  text-indent: -8px;
}

.btn-box .contact-btn a {
  background-color: #FF8900;
  padding: 16px 20px;
  border-radius: 7px;
  text-align: center;
  border: 2px solid #1B3A7C;
  font-size: 21px;
  -webkit-box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  box-shadow: 6px 0.35rem 0 0 #1B3A7C;
  position: relative;
}

.btn-box .contact-btn a span {
  position: absolute;
  right: 15px;
}

.btn-box .contact-btn .gr {
  background-color: #4DBD16;
}

.sec5 .inner {
  max-width: 900px;
  max-width: calc(100% - 20px * 2);
}

.sec5 .inner .top {
  margin-top: 40px;
  padding-top: 70px;
  background-color: #215AD5;
  border: 3px solid #000;
  border-radius: 16px 16px 0 0;
  position: relative;
  padding: 40px 80px;
}

.sec5 .inner .top .img img {
  width: 459px;
  position: absolute;
  right: 0;
  top: -40px;
}

.sec5 .inner .top .ttl p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.sec5 .inner .top .ttl p span {
  display: inline-block;
  margin-left: 15px;
}

.sec5 .inner .top .ttl h3 {
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-shadow: #1847AC 5px 3px;
}

.sec5 .inner .top .ttl h3 span {
  color: #FFEB00;
}

.sec5 .inner .mid {
  text-align: center;
  border-left: 3px solid #000;
  border-right: 3px solid #000;
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 100px;
}

.sec5 .inner .mid h4 {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  margin-bottom: 25px;
}

.sec5 .inner .mid .list {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.sec5 .inner .mid .list ul {
  background-color: #F2F7FF;
  padding: 50px 60px;
  text-align: left;
  border-radius: 8px;
}

.sec5 .inner .mid .list ul li {
  color: #1847AC;
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.sec5 .inner .mid .list ul li:first-child {
  margin-bottom: 30px;
}

.sec5 .inner .mid .list ul li:last-child {
  margin-bottom: 0;
}

.sec5 .inner .mid .list ul span {
  display: inline-block;
  margin-right: 5px;
}

.sec5 .inner .mid .list ul span img {
  width: 80%;
}

.sec5 .inner .mid .text {
  margin-bottom: 40px;
}

.sec5 .inner .mid .text p {
  font-size: 20px;
  line-height: 2em;
  color: #000;
}

.sec5 .inner .mid .text p span {
  color: #1847AC;
}

.sec5 .inner .mid .text .fzb {
  font-size: 28px;
  margin-top: 5px;
}

.btn, a.btn, button.btn {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}

a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}

a.btn-custom01:before {
  position: absolute;
  top: -6px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 3px solid #000;
  border-radius: inherit;
  background: #3A8415;
}

a.btn-custom01:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 1rem 5rem 1rem 5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid #000;
  border-radius: inherit;
  background: #4DBD16;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

a.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #fff100;
}

a.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

.sec5 .inner .bottom {
  background-color: #FFEB00;
  border: 3px solid #000;
  border-radius: 0 0 16px 16px;
  position: relative;
  padding: 60px 80px;
}

.sec5 .inner .bottom .pt {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #fff;
  padding: 6px 56px;
  border: 3px solid #000;
  border-radius: 100px;
}

.sec5 .inner .bottom .pt p {
  font-size: 21px;
  color: #000;
  letter-spacing: 0.03em;
}

.sec5 .inner .bottom .box {
  width: 80%;
  margin: 0 auto;
  background-color: #215AD5;
  border: 3px solid #000;
  border-radius: 16px;
  margin-top: 10px;
  padding: 30px 40px;
  position: relative;
}

.sec5 .inner .bottom .box .text {
  text-align: left;
  color: #fff;
}

.sec5 .inner .bottom .box .text h3 {
  font-size: 24px;
  margin-bottom: 7px;
}

.sec5 .inner .bottom .box .text h3 a {
  display: inline-block;
  text-decoration: underline #fff 1px;
}

.sec5 .inner .bottom .box .text p {
  font-size: 14px;
}

.topttl {
  position: absolute;
  left: 34px;
  top: -25px;
}

.rightimg {
  position: absolute;
  right: 10px;
  bottom: 0px;
  max-width: 155px;
}

.s2 .rightimg {
  position: absolute;
  right: 10px;
  bottom: -2px;
  max-width: 135px;
}

.s3 .rightimg {
  position: absolute;
  right: 10px;
  bottom: 0px;
  max-width: 165px;
}

.sec5 .inner .bottom .s3 {
  padding-bottom: 15px;
}

.arrow {
  text-align: center;
  margin-top: 10px;
  margin-bottom: -7px;
}

.arrow img {
  text-align: center;
  display: inline-block;
}

.sp2 {
  display: none;
}

.sp_only { display: none; }
@media (max-width: 959px) {
  .sp2 {
    display: block;
    margin-top: 30px;
    margin-left: 5px;
  }
  .sec4 .box .buy img {
    margin: 0 auto;
  }
  .sec5 .inner .top .img img {
    width: 322px;
    top: 12px;
  }
  .sec5 .inner .bottom {
    padding: 70px 0;
  }
  .sec5 .inner .mid .list {
    max-width: 79%;
  }
  .btn-box {
    justify-content: center;
  }
  .btn-box .contact-btn a {
    font-size: 16px;
  }
}

@media (max-width: 559px) {
  .sec5 .inner .top {
    padding: 28px 26px;
    margin-top: 0;
    padding-left: 18px;
  }
  .sec5 .inner .top .ttl h3 {
    font-size: 33px;
    letter-spacing: 0.15em;
    text-shadow: #1847ac 3px 3px;
  }
  .sec5 .inner .top .img img {
    width: 158px;
    top: -21px;
  }
  .sec5 .inner .mid {
    padding-top: 29px;
    padding-bottom: 70px;
  }
  .sec5 .inner .top .ttl p {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .sec5 .inner .top .ttl p span {
    margin-left: 11px;
  }
  .sec5 .inner .top .ttl p span img {
    width: 18px;
  }
  .sec5 .inner .mid .list {
    max-width: 90%;
  }
  .sec5 .inner .mid .list ul {
    padding: 27px 27px;
  }
  .sec5 .inner .mid .list ul li {
    font-size: 14px;
    letter-spacing: 0;
  }
  .sec5 .inner .mid .list ul span {
    display: inline-block;
    margin-right: 2px;
    width: 20px;
  }
  .sec5 .inner .mid .list ul span img {
    width: 72%;
  }
  .sec5 .inner .mid h4 {
    font-size: 19px;
  }
  .sec5 .inner .mid .text p {
    font-size: 14px;
  }
  .sec5 .inner .mid .text .fzb {
    font-size: 22px;
    margin-top: 2px;
  }
  .btn-custom01-front {
    padding: 16px 33px;
    font-size: 15px;
    border-radius: 5px;
    border: 2px solid #000;
  }
  .sec5 .inner .bottom .pt {
    width: 189px;
    padding: 4px 1.5em;
    text-align: center;
    border: 3px solid #000;
    top: -22px;
  }
  .sec5 .inner .bottom .pt p {
    font-size: 16px;
  }
  .sec5 .inner .bottom {
    padding: 42px 0;
    padding-bottom: 16px;
  }
  .sec5 .inner .bottom .box {
    width: 89%;
    padding: 21px 20px;
    border-radius: 11px;
    border: 2px solid #000;
  }
  .arrow {
    margin: 12px 0 4px;
  }
  .arrow img {
    width: 9%;
  }
  .sec4 h4 {
    margin-top: 30px;
    font-size: 18px;
  }
  .sec5 .inner .bottom .box .text h3 {
    font-size: 19px;
    margin-bottom: 2px;
  }
  .sec5 .inner .bottom .box .text p {
    font-size: 10px;
  }
  .sec4 .box h5 {
    font-size: 23px;
  }
  .topttl {
    top: -14px;
    width: 81px;
    left: 16px;
  }
  .s3 .rightimg {
    right: 3px;
    bottom: 5px;
    max-width: 119px;
  }
  .s2 .rightimg {
    max-width: 104px;
    right: 2px;
  }
  .s1 .rightimg {
    max-width: 112px;
    right: 10px;
    bottom: 18px;
  }
  img.sp {
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .indent-1 {
    padding-left: 2em;
    text-indent: -2em;
  }
  .sec1 .img2 {
    top: 95%;
  }
  .sec1 .btn-box .contact-btn a span {
    right: 7px;
  }
  .btn-box .contact-btn a span {
    right: 5px;
  }
  .btn-box .contact-btn:first-child a {
    text-indent: -8px;
  }
  .btn-box .contact-btn a {
    /* padding: 13px 26px;
    font-size: 15px; */
    padding: 0;
    font-size: 15px;
    text-align: left;
    text-indent: 0;
    display: flex;
    align-items: center;
    /* margin: 0 auto; */
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 4.2rem;
  }
  .btn-box .contact-btn .gr {
    padding: 13px 17px;
  }
  .btn-box .contact-btn {
    width: 186px;
    text-align: left;
  }
  .box.s1.fadeInTrigger.fadeIn {
    padding: 23px 20px;
  }
  .position {
    position: fixed !important;
    bottom: 0;
    z-index: 22;
    width: 100%;
  }
  .position .btn-box {
    width: 89%;
    margin: 0;
  }
  .footer .buy {
    display: flex;
  }
  img.img1.tb.sp {
    width: 100%;
  }
  .sec1 {
    padding-right: 3vw;
    padding-left: 3vw;
  }
  .fa-position-right {
    right: 9px;
  }
  a.btn-custom01:before {
    border-radius: 5px;
    border: 2px solid #000;
  }
  .spbr {
    display: none;
  }
  .sp_only { display: block; }
}

@media (max-width: 375px) {
  .spbr {
    display: block;
  }
  .sec5 .inner .top .img img {
    width: 138px;
    top: -10px;
  }
  .sec5 .inner .top .ttl h3 {
    font-size: 29px;
    letter-spacing: 0.18em;
    text-shadow: #1847ac 3px 3px;
  }
  .sec5 .inner .mid .list ul li {
    font-size: 12px;
    letter-spacing: 0;
  }
  .sec5 .inner .bottom .box {
    width: 95%;
    padding: 21px 20px;
    border-radius: 11px;
    border: 2px solid #000;
  }
  .sec5 .inner .bottom .box .text h3 {
    font-size: 17px;
    margin-bottom: 2px;
  }
  .sec5 .inner .mid h4 {
    font-size: 17px;
  }
  .sec5 .inner .mid .text p {
    font-size: 16px;
  }
  .sec5 .inner .mid .text .fzb {
    font-size: 20px;
    margin-top: 0;
  }
}
