@charset "UTF-8";
/*-------------------------------------------------
 common
-------------------------------------------------*/
@import "reset.css";
html {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-weight: 200;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
  color: #333;
  font-weight: 200;
  margin: 0;
  padding: 0;
  position: relative;
}

* {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

a {
  color: #333;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

#wrapper {
  width: 100%;
  overflow: hidden;
}

/*essect*/
.ani1 span {
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  width: 0 !important;
  -webkit-transition: 0.3;
  transition: 0.3;
}

.ani1.fadein span {
  width: calc(100% - 30px) !important;
}

.ani2 span {
  -webkit-transition: linear 0.4s;
  transition: linear 0.4s;
  width: 0 !important;
  -webkit-transition: 0.3;
  transition: 0.3;
}

.ani2.fadein span {
  width: calc(100% - 30px) !important;
}

.bEffect01 {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.bEffect01.fadein {
  opacity: 1;
  -webkit-animation: border1 1s cubic-bezier(1, 0, 0, 1);
          animation: border1 1s cubic-bezier(1, 0, 0, 1);
}

.bEffect02 {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.bEffect02.fadein {
  opacity: 1;
  -webkit-animation: border1 1.5s cubic-bezier(1, 0, 0, 1);
          animation: border1 1.5s cubic-bezier(1, 0, 0, 1);
}

.bEffect03 {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.bEffect03.fadein {
  opacity: 1;
  -webkit-animation: border1 2s cubic-bezier(1, 0, 0, 1);
          animation: border1 2s cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes border1 {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}

@keyframes border1 {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}
.animation01 {
  opacity: 0;
}

.animation01.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0s 1 forwards;
  animation: fadeIn 0.3s ease 0s 1 forwards;
}

.animation02 {
  opacity: 0;
}

.animation02.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0.1s 1 forwards;
  animation: fadeIn 0.3s ease 0.1s 1 forwards;
}

.animation03 {
  opacity: 0;
}

.animation03.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0.2s 1 forwards;
  animation: fadeIn 0.3s ease 0.2s 1 forwards;
}

.animation04 {
  opacity: 0;
}

.animation04.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0.3s 1 forwards;
  animation: fadeIn 0.3s ease 0.3s 1 forwards;
}

.animation05 {
  opacity: 0;
}

.animation05.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0.4s 1 forwards;
  animation: fadeIn 0.3s ease 0.4s 1 forwards;
}

.animation06 {
  opacity: 0;
}

.animation06.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.3s ease 0.5s 1 forwards;
  animation: fadeIn 0.3s ease 0.5s 1 forwards;
}

.animation07 {
  opacity: 0;
}

.animation07.fadein {
  opacity: 1;
  -webkit-animation: fadeIn 0.5s ease 0.6s 1 forwards;
  animation: fadeIn 0.5s ease 0.6s 1 forwards;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
/*-------------------------------------------------
 under_top_title
-------------------------------------------------*/
#title {
  color: #fff;
  text-align: center;
  padding: 150px 0;
}
#title article h1 {
  font-size: 24px;
}

#title.option_img {
  background: url(../img/top_bg_option.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#title.faq_img {
  background: url(../img/top_bg_faq.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#title.company_img {
  background: url(../img/top_bg_company.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#title.ouchiwari_img {
  background: url(../img/top_bg_ouchiwari.jpg) no-repeat 50% 83%;
  background-size: cover;
}

/*-------------------------------------------------
 header
-------------------------------------------------*/
header {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 9999;
}
header .header-news {
  color: #fff;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
}
header .header-news em {
  font-size: 1.2em;
  font-weight: bold;
}
header article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
}
header article #logo img {
  width: 100px;
}
header article .boxR {
  margin-right: 20px;
}
header article .boxR ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header article .boxR ul li {
  margin: 0 10px;
}
header article .boxR ul li a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
header article .boxR ul li .mypage {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 15px;
}
header article .boxR ul li .app {
  background: #209b59;
  border-radius: 5px;
  padding: 10px 15px;
}
header article .boxR ul li:last-child {
  margin-right: 0;
}
header article #menu-btn-check {
  display: none;
}
header article .menu-btn {
  position: fixed;
  top: 45px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 90;
}
header article .menu-btn span,
header article .menu-btn span:before,
header article .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}
header article .menu-btn span:before {
  bottom: 8px;
}
header article .menu-btn span:after {
  top: 8px;
}
header article #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
header article #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header article #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header article .hamburger-menu {
  display: block;
}
header article .menu-content {
  width: 50%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #f39500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-top: 100px;
}
header article .menu-content ul {
  display: block;
}
header article .menu-content ul li {
  margin-bottom: 15px;
}
header article .menu-content ul li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
header article .menu-content .btnApp {
  background: #fff;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  width: 150px;
  margin: 0 auto 15px;
  display: block;
  text-decoration: none;
}
header article .menu-content .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header article .menu-content .btnBox .btn {
  margin-left: 15px;
  text-decoration: none;
  display: block;
}
header article .menu-content .btnBox .btn img {
  display: block;
  margin: 0 auto;
}
header article #menu-btn-check:checked ~ .menu-content {
  left: 50%;
}

.gray header {
  background: #333;
  padding: 10px 0;
}

.fix-header {
  background-color: #333;
  line-height: 66px;
  top: -66px;
  left: 0;
  width: 100%;
  color: #fff;
  position: fixed;
  opacity: 0;
  z-index: 1000;
  padding: 5px 0;
}
.fix-header .header-news {
  text-align: center;
  line-height: 2.8em;
}
.fix-header .header-news em {
  font-size: 1.2em;
  font-weight: bold;
}
.fix-header article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fix-header article #logo img {
  width: 70px;
}
.fix-header article .boxR {
  margin-right: 20px;
}
.fix-header article .boxR ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fix-header article .boxR ul li {
  margin: 0 10px;
}
.fix-header article .boxR ul li a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.fix-header article .boxR ul li .mypage {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 15px;
}
.fix-header article .boxR ul li .app {
  background: #209b59;
  border-radius: 5px;
  padding: 10px 15px;
}
.fix-header article .boxR ul li:last-child {
  margin-right: 0;
}

/*-------------------------------------------------
 footer
-------------------------------------------------*/
footer {
  background: #333;
  color: #fff;
  padding: 30px 0;
}
footer article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
footer article .boxL {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer article .boxL img {
  width: 100px;
  display: block;
  margin-right: 10px;
}
footer article .boxR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer article .boxR > ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 5%;
}
footer article .boxR > ul li {
  width: 40%;
  max-width: 200px;
}
footer article .boxR > ul li a {
  color: #fff;
}
footer article .boxR .inner > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 10px;
}
footer article .boxR .inner > ul li {
  margin-left: 10px;
}
footer article .boxR .inner > ul li img {
  width: 30px;
}

.fixed-btn {
  position: fixed;
  bottom: 0;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  z-index: 99;
}
.fixed-btn img {
  display: block;
  width: 100px;
}
.fixed-btn span {
  height: 80px;
  width: 80px;
  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;
  background: #209b59;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: bold;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 3px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 3px;
}

/*-----top-----*/
#top {
  height: 70vh;
  max-height: 640px;
  color: #fff;
  position: relative;
}
#top .fv-news {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#top .fv-news p {
  width: 90%;
  margin: 0 auto;
  line-height: 1.2;
  padding: 5px 0;
}
#top .fv-news em {
  font-size: 1.2em;
  font-weight: bold;
}
#top article {
  position: relative;
}
#top article #firstview .fv1, #top article #firstview .fv2, #top article #firstview .fv3, #top article #firstview .fv4, #top article #firstview .fv5 {
  width: 100%;
  height: 70vh;
  max-height: 640px;
}
#top article #firstview .fv1 {
  background: url(../img/top_bg.jpg) no-repeat 50% 10%;
  background-size: cover;
}
#top article #firstview .fv1 .content {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top article #firstview .fv1 .content h1 {
  font-size: 36px;
  width: 100%;
  padding-top: 20vh;
  font-weight: 600;
}
#top article #firstview .fv1 .content h2 {
  font-size: 48px;
  font-weight: 900;
  width: 100%;
}
#top article #firstview .fv1 .content h2 span {
  font-size: 82px;
}
#top article #firstview .fv1 .content h2 small {
  font-size: 18px;
  line-height: 0;
}
#top article #firstview .fv1 .content > div {
  display: block;
  height: 5px;
  width: 50px;
  margin: 15px 0 15px;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
}
#top article #firstview .fv2 {
  background: url(../img/top_bg2.jpg) no-repeat 50% 100%;
  background-size: cover;
}
#top article #firstview .fv2 .content {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top article #firstview .fv2 .content h1 {
  font-size: 36px;
  width: 100%;
  padding-top: 20vh;
  font-weight: 600;
}
#top article #firstview .fv2 .content h2 {
  font-size: 48px;
  font-weight: 900;
  width: 100%;
}
#top article #firstview .fv2 .content h2 span {
  font-size: 82px;
}
#top article #firstview .fv2 .content h2 small {
  font-size: 18px;
  line-height: 0;
}
#top article #firstview .fv2 .content > div {
  display: block;
  height: 5px;
  width: 50px;
  margin: 15px 0 15px;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
}
#top article #firstview .fv2 .content p a {
  display: inline-block;
  background: #fff;
  color: #333;
  border-radius: 50px;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 30px;
}
#top article #firstview .fv2 .content p a em {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.1em;
}
#top article #firstview .fv2 .content p a:hover {
  background: #333;
  color: #fff;
  opacity: 1;
}
#top article #firstview .fv3 {
  background: url(../img/miyagi_plan_bg.png) no-repeat 50% 100%;
  background-size: cover;
}
#top article #firstview .fv3 .content {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top article #firstview .fv3 .content h1 {
  width: 100%;
}
#top article #firstview .fv3 .content .sp {
  display: none;
}
#top article #firstview .fv4 {
  background: url(../img/top_cb2.png) no-repeat 50% 0%;
  background-size: cover;
}
#top article #firstview .fv4 .content {
  width: 90%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top article #firstview .fv4 .content h1 {
  width: 100%;
  padding-top: 8vh;
}
#top article #firstview .fv4 .content .sp {
  display: none;
}
#top article #firstview .fv5 {
  background: url(../img/top_cs.jpg) no-repeat 50% 50%;
  background-size: cover;
}
#top article #firstview .fv5 .content {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top article #firstview .fv5 .content h1 {
  width: 100%;
  padding-top: 8vh;
}
#top article #firstview .fv5 .content .sp {
  display: none;
}
#top article ul {
  width: 90%;
  max-width: 1200px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #666;
  bottom: -30px;
  right: 0;
  left: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
}
#top article ul li {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  width: 40%;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#top article ul li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
#top article ul li em {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 12px;
  z-index: 2;
}
#top article ul li span {
  display: block;
}
#top article ul li span img {
  width: 60px;
}
#top article ul li dl {
  margin-left: 10px;
  font-weight: 600;
}
#top article ul li dl dd {
  color: #3796ee;
}
#top article ul li:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
#top article ul.lp {
  bottom: 30px;
}
#top article ul.lp li {
  background: transparent;
  margin: 0 0 0 auto;
  border-radius: 50px;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  width: 40%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#top article ul.lp li a.btn-flat {
  position: inherit;
  background: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 50px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top article ul.lp li a.btn-flat img {
  margin-right: 15px;
}
#top article ul.lp li a.btn-flat span {
  position: relative;
  z-index: 1;
}
#top article ul.lp li a.btn-flat::before {
  position: absolute;
  top: 0;
  left: calc(-150% + 100px);
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #fff5bc;
}
#top article ul.lp li a.btn-flat:after {
  position: absolute;
  top: -400%;
  right: calc(-150% + 100px);
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #fff5bc;
}
#top article ul.lp li a.btn-flat:hover {
  opacity: 1;
}
#top article ul.lp li a.btn-flat:hover::before {
  -webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
  transform: rotate(45deg) translateX(0) translateY(-50%);
}
#top article ul.lp li a.btn-flat:hover::after {
  -webkit-transform: rotate(45deg) translateX(0) translateY(50%);
  transform: rotate(45deg) translateX(0) translateY(50%);
}

#top_donuts {
  background: #111;
  background-size: cover;
  color: #fff;
  margin-bottom: 100px;
}
#top_donuts article {
  width: 90%;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top_donuts article h1 {
  font-size: 36px;
  width: 100%;
  padding-top: 10vh;
  font-weight: 600;
}
#top_donuts article h2 {
  font-size: 48px;
  font-weight: 900;
  width: 100%;
}
#top_donuts article h2 span {
  font-size: 82px;
}
#top_donuts article h2 small {
  font-size: 18px;
  line-height: 0;
}
#top_donuts article > div {
  display: block;
  height: 5px;
  width: 50px;
  margin: 15px 0 15px;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
}
#top_donuts article ul {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #666;
  bottom: -150px;
  font-size: 16px;
  font-weight: 600;
}
#top_donuts article ul li {
  background: #fff;
  border-radius: 5px;
  padding: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  width: 25%;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#top_donuts article ul li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}
#top_donuts article ul li em {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 12px;
  z-index: 2;
}
#top_donuts article ul li span {
  display: block;
}
#top_donuts article ul li span img {
  width: 60px;
}
#top_donuts article ul li dl {
  margin-left: 10px;
  font-weight: 600;
}
#top_donuts article ul li dl dd {
  color: #3796ee;
}
#top_donuts article ul li:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
#top_donuts article ul.lp {
  bottom: 30px;
}
#top_donuts article ul.lp li {
  background: transparent;
  margin: 0 0 0 auto;
  border-radius: 50px;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  width: 40%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#top_donuts article ul.lp li a.btn-flat {
  position: inherit;
  background: #fff;
  width: 100%;
  overflow: hidden;
  border-radius: 50px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top_donuts article ul.lp li a.btn-flat img {
  margin-right: 15px;
}
#top_donuts article ul.lp li a.btn-flat span {
  position: relative;
  z-index: 1;
}
#top_donuts article ul.lp li a.btn-flat::before {
  position: absolute;
  top: 0;
  left: calc(-150% + 100px);
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #fff5bc;
}
#top_donuts article ul.lp li a.btn-flat:after {
  position: absolute;
  top: -400%;
  right: calc(-150% + 100px);
  width: 150%;
  height: 500%;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(45deg) translateX(0) translateY(0);
  transform: rotate(45deg) translateX(0) translateY(0);
  background: #fff5bc;
}
#top_donuts article ul.lp li a.btn-flat:hover {
  opacity: 1;
}
#top_donuts article ul.lp li a.btn-flat:hover::before {
  -webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
  transform: rotate(45deg) translateX(0) translateY(-50%);
}
#top_donuts article ul.lp li a.btn-flat:hover::after {
  -webkit-transform: rotate(45deg) translateX(0) translateY(50%);
  transform: rotate(45deg) translateX(0) translateY(50%);
}

/*-----summary-----*/
#summary {
  background: #f6f6f6;
  padding: 100px 0 50px;
}
#summary article {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#summary article .summaryTop {
  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;
  margin-bottom: 30px;
}
#summary article .summaryTop .summaryTop__content {
  width: calc(100% - 330px);
}
#summary article .summaryTop .fon-video {
  background: url(../img/tb_mok.png) no-repeat 50% 50%;
  background-size: 100%;
  width: 380px;
  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;
  padding: 40px 0;
}
#summary article .summaryTop .fon-video iframe {
  width: 90%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: 16/9;
}
#summary article .amazon_cp {
  text-align: center;
  margin-bottom: 15px;
}
#summary article .amazon_cp img {
  margin: 0 auto;
}
#summary article h2 {
  font-size: 48px;
  font-weight: 900;
  width: 100%;
}
#summary article .speed_img {
  background: #333;
  color: #fff;
  padding: 50px 0;
}
#summary article .speed_img .fon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 90%;
}
#summary article .speed_img .fon .provider {
  width: 100px;
  text-align: center;
  font-weight: 600;
  line-height: 1em;
}
#summary article .speed_img .fon .border {
  width: calc(100% - 250px);
}
#summary article .speed_img .fon .border span {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 30px);
  margin: 0 auto;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  height: 10px;
}
#summary article .speed_img .fon .speed {
  font-size: 36px;
  font-weight: 900;
  color: #EC7103;
}
#summary article .speed_img .normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 90%;
}
#summary article .speed_img .normal .provider {
  width: 100px;
  text-align: center;
  font-weight: 600;
  line-height: 1em;
}
#summary article .speed_img .normal .border {
  width: calc(70% - 250px);
}
#summary article .speed_img .normal .border span {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #fff;
  height: 5px;
  animation: size 6s liner 3s 5 reverse both running;
}
#summary article .speed_img .normal .speed {
  font-size: 24px;
  font-weight: 900;
}
#summary article h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
}
#summary article h3 span {
  color: #f39500;
}
#summary article .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#summary article .flex li {
  margin-right: 50px;
  text-align: center;
  opacity: 0;
}
#summary article .flex li img {
  width: 100px;
  height: auto;
}
#summary article .flex li:last-child {
  margin-right: 0;
}
#summary article p {
  margin: 30px 0;
}
#summary article ul {
  margin-top: 30px;
}

/*-----recommend-----*/
#recommend {
  padding: 50px 0;
}
#recommend article {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#recommend article h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 45px;
}
#recommend article h2 img {
  height: 2em;
  vertical-align: baseline;
  margin: 0 5px;
}
#recommend article .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#recommend article .box .boxL {
  width: 45%;
}
#recommend article .box .boxR {
  width: 50%;
}
#recommend article .box .boxR dl dt {
  font-size: 24px;
  font-weight: 600;
}
#recommend article .box .boxR dl dt:after {
  content: " ";
  display: block;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  margin-top: 16px;
  margin-bottom: 16px;
  width: 38.88px;
  height: 3.99px;
}
#recommend article .box .boxR dl dd {
  color: #666;
  line-height: 1.8em;
}
#recommend article .box .boxR dl dd a {
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: auto;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #fff;
  margin: 50px auto 0;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#recommend article .box .boxR dl dd a:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
#recommend article .box:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

/*-----plan-----*/
#plan {
  padding: 50px 0;
  background: #666;
  color: #fff;
}
#plan article {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plan article:last-child {
  padding-top: 100px;
}
#plan article .box {
  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: flex-start;
  margin-bottom: 30px;
}
#plan article .box h2 {
  font-size: 30px;
  width: 7em;
  font-weight: 900;
  line-height: 1em;
}
#plan article .box h2 small {
  font-size: 18px;
}
#plan article .box p {
  width: calc(100% - 12em);
  margin-bottom: 30px;
}
#plan article .box h3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
}
#plan article .box h3 span {
  text-align: right;
  display: block;
  color: #f39500;
}
#plan article .box h3 em {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: #f39500;
}
#plan article .box h3 em sup {
  font-size: 14px;
}
#plan article .box ul {
  width: 70%;
}
#plan article .box ul li {
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#plan article .box ul li img {
  width: 50px;
}
#plan article .box ul li dl {
  width: 200px;
  margin-left: 10px;
}
#plan article .box ul li dl dd {
  font-size: 36px;
  font-weight: 900;
  color: #f39500;
  line-height: 0.6em;
  margin: 10px 0;
}
#plan article .box ul li dl dd sup {
  font-size: 40%;
}
#plan article .box ul li dl dd small {
  font-size: 40%;
}
#plan article .old-plan {
  text-align: center;
  width: 100%;
  margin: 30px auto;
}
#plan article .old-plan h4 {
  font-size: 20px;
  color: #f39500;
}
#plan article .old-plan table {
  width: 100%;
  margin: 15px 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
#plan article .old-plan table th,
#plan article .old-plan table td {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
}
#plan article .old-plan table .white {
  background: #fff;
  color: #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
#plan article .old-plan p {
  font-size: 12px;
  text-align: left;
}
#plan article > p {
  font-size: 12px;
}
#plan article > p a {
  color: #fff;
}

/*-----optionArea-----*/
#optionArea {
  padding: 50px 0;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  color: #fff;
  text-align: center;
}
#optionArea article {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
}
#optionArea article h2 {
  font-size: 28px;
}
#optionArea article ul {
  margin: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#optionArea article ul li {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 200px;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 -60px;
  opacity: 0.6;
}
#optionArea article ul li:hover {
  opacity: 1;
}
#optionArea article p {
  margin: 15px 0;
}
#optionArea article a {
  color: #f39500;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #fff;
  padding: 10px 15px;
  display: inline-block;
  background: #fff;
}
#optionArea article a:hover {
  background: none;
  color: #fff;
}

/*-----option-----*/
#option {
  padding: 50px 0;
  background: #f6f6f6;
}
#option article:nth-child(2) {
  margin-top: 100px;
}
#option article {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#option article h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}
#option article > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
#option article > ul li {
  font-size: 12px;
  width: 18%;
  font-weight: bold;
  max-width: 110px;
}
#option article > ul li input {
  display: none;
}
#option article > ul li label {
  text-align: center;
  border: 1px #333 solid;
  display: block;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  padding: 10px 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#option article > ul li input:checked + label {
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
}
#option article > ul li img {
  width: 30px;
  display: block;
  margin: 0 auto;
}
#option article .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#option article .flex h3 {
  font-size: 24px;
  font-weight: lighter;
  margin: 40px 0 20px;
  display: inline-block;
}
#option article .flex h3 img {
  width: 36px;
}
#option article .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#option article .box .boxL {
  width: 60%;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#option article .box .boxL img {
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#option article .box .boxR {
  width: 35%;
}
#option article .box .boxR .boxR-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
#option article .box .boxR dl dt {
  font-weight: bold;
  font-size: 18px;
}
#option article .box .boxR dl dd {
  margin-bottom: 15px;
}
#option article .box .boxR dl dd ul li {
  margin-bottom: 1em;
}
#option article .box .boxR dl dd table {
  width: 100%;
}
#option article .box .boxR dl dd table thead th {
  border: #333 solid 1px;
  background: #ccc;
  text-align: center;
  padding: 5px;
}
#option article .box .boxR dl dd table tbody th {
  border: #333 solid 1px;
  width: 60%;
  padding: 5px;
}
#option article .box .boxR dl dd table tbody td {
  border: #333 solid 1px;
  width: 40%;
  padding: 5px;
  text-align: right;
}
#option article .box .boxR .btn {
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  padding: 10px 15px;
  display: inline-block;
}
#option article .annotation li {
  font-size: 16px;
  margin-top: 20px;
}

/*-----ouchiwari-----*/
#ouchiwari {
  padding: 50px 0;
  background: #f6f6f6;
}
#ouchiwari article {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#ouchiwari article h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
}
#ouchiwari article h2 span {
  display: block;
}
#ouchiwari article h2 span em {
  font-weight: 900;
  font-size: 1.5em;
}
#ouchiwari article h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin: 30px 0 10px;
  background: #333;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 15px;
}
#ouchiwari article h4 {
  font-size: 18px;
  font-weight: 900;
  margin: 30px 0;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  background: #fff;
  padding: 10px;
}
#ouchiwari article h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 30px 0;
}
#ouchiwari article a {
  color: darkblue;
}
#ouchiwari article ul li {
  text-indent: -1em;
  padding-left: 1em;
}
#ouchiwari article table {
  margin: 30px 0;
}
#ouchiwari article table tr th {
  padding: 15px;
  background: #eee;
  border: #ccc solid 1px;
  text-align: center;
}
#ouchiwari article table tr td {
  padding: 15px;
  background: #fff;
  border: #ccc solid 1px;
  text-align: center;
}
#ouchiwari article table tr td span {
  font-weight: 600;
  font-size: 1.2em;
}
#ouchiwari article table tr td em {
  font-weight: 900;
  font-size: 1.4em;
}
#ouchiwari article .box {
  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;
}
#ouchiwari article .box dl {
  border: 1px solid #ccc;
  text-align: center;
  padding: 15px;
  background: #fff;
}
#ouchiwari article .box dl dt {
  font-weight: 600;
}
#ouchiwari article .box div {
  font-weight: 900;
  font-size: 28px;
}

/*-----削除予定-----*/
#dounts_cp {
  text-align: center;
  background: #000;
  background-size: cover;
  padding: 50px 0 15px;
}
#dounts_cp article {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#dounts_cp article a {
  border: 2px solid #fff;
  color: #ff81ae;
  padding: 15px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  background: #fff;
  -webkit-box-shadow: 5px 0 0 0 #e0e0e0;
          box-shadow: 5px 0 0 0 #e0e0e0;
}
#dounts_cp article a:hover {
  border: 2px solid #fff;
  color: #fff;
  background: none;
  padding: 15px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}

/*-----flow-----*/
#flow {
  padding: 50px 0;
  text-align: center;
  background: #f6f6f6;
}
#flow article {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#flow article h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}
#flow article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#flow article ul li {
  width: 17%;
  background: #fff;
  -webkit-box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
          box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  padding: 2%;
}
#flow article ul li dl {
  text-align: center;
}
#flow article ul li dl dt {
  font-weight: 900;
  font-size: 24px;
  margin: 10px 0;
}
#flow article ul .triangle {
  margin-top: 150px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
#flow article ul .triangle:nth-of-type(1) {
  border-left: 30px solid #FDC900;
}
#flow article ul .triangle:nth-of-type(2) {
  border-left: 30px solid #F7A902;
}
#flow article ul .triangle:nth-of-type(3) {
  border-left: 30px solid #EE7B03;
}
#flow article p {
  text-align: left;
  margin-top: 15px;
  font-size: 12px;
}
#flow article a {
  background: #209b59;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  width: 150px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #fff;
  margin-top: 50px;
  text-decoration: none;
}
#flow article a:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/*-----mobileWifi-----*/
#mobileWifi {
  padding: 50px 0;
  background: url(../img/top_bg_company.jpg) 50% 50%;
  background-size: cover;
}
#mobileWifi article {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  color: #fff;
}
#mobileWifi article h2 {
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 1.2em;
}
#mobileWifi article .content {
  text-align: center;
}
#mobileWifi article .content .boxL {
  margin: 15px 0;
}
#mobileWifi article .content .boxL img {
  width: 90%;
  max-width: 300px;
}
#mobileWifi article .btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
#mobileWifi article .btnArea a {
  display: block;
  background: #209b59;
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
}
#mobileWifi article .btnArea a:nth-child(2) {
  background: #EC7103;
}

/*-----area-----*/
#provide {
  padding: 50px 0;
  background: linear-gradient(61.56deg, #f6f6f6 0%, #ffffff 100%);
}
#provide article {
  width: 90%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#provide article h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}
#provide article .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#provide article .box .boxL {
  width: 50%;
  font-weight: 600;
}
#provide article .box .boxL a {
  display: block;
  background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  color: #fff;
  text-align: center;
  width: 150px;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 30px;
  text-decoration: none;
}
#provide article .box .boxR {
  width: 50%;
}

#popup_area {
  padding: 5% 0;
  background-size: contain;
}
#popup_area article {
  width: 90%;
  height: 100%;
  margin: 0 auto;
}
#popup_area article h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 30px;
  color: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
}
#popup_area article h4 img {
  width: 20px;
}
#popup_area article dl dt {
  margin-bottom: 15px;
  font-weight: bold;
}
#popup_area article dl dd {
  text-align: left;
}

/*-----support-----*/
#support {
  padding: 50px 0;
}
#support article {
  width: 90%;
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#support article h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
}
#support article ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#support article ul li {
  width: 40%;
  margin: 0 5%;
  line-height: 2em;
}
#support article ul li .imgBox {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#support article ul li .imgBox img {
  height: 100%;
  width: auto;
}
#support article ul li h3 {
  font-size: 28px;
  font-weight: 900;
  margin: 15px 0;
}
#support article ul li a {
  color: #3796ee;
}
#support article ul li:nth-child(2) img {
  margin-left: -30px;
}

/*-------------------------------------------------
 error
-------------------------------------------------*/
#error {
  background: url(../img/top_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  height: 100vh;
}
#error article {
  color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-top: 50vh;
  font-size: 18px;
}
#error article h1 {
  font-family: "Ranchers", cursive;
  font-size: 72px;
}
#error article a {
  color: #fff;
  margin-top: 30px;
  display: inline-block;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  #cursor, #stalker {
    display: none;
  }
  /*-------------------------------------------------
   header
  -------------------------------------------------*/
  header {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 9999;
    padding-top: 10px;
  }
  header article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header article #logo img {
    width: 50px;
  }
  header article .boxR ul li {
    margin: 0 10px;
  }
  header article .boxR ul li a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    display: none;
  }
  header article .boxR ul li a.app {
    display: block;
  }
  header article .boxR ul li .mypage {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px 15px;
  }
  header article .boxR ul li:last-child {
    margin-right: 0;
  }
  header article .boxR .menu-btn {
    top: 0;
  }
  header article .boxR .menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #f39500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding-top: 100px;
  }
  header article .boxR .menu-content ul {
    display: block;
  }
  header article .boxR .menu-content ul li {
    margin-bottom: 15px;
  }
  header article .boxR .menu-content ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
  }
  .fix-header {
    background-color: #333;
    line-height: 56px;
    top: -56px;
    left: 0;
    width: 100%;
    color: #fff;
    position: fixed;
    opacity: 0;
    z-index: 1000;
    padding: 0px 0;
  }
  .fix-header article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fix-header article #logo img {
    width: 50px;
  }
  .fix-header article .boxR ul li {
    margin: 0 10px;
  }
  .fix-header article .boxR ul li a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    display: none;
  }
  .fix-header article .boxR ul li a.app {
    display: block;
    padding: 0 15px;
    height: 41px;
    line-height: 41px;
  }
  .fix-header article .boxR ul li .mypage {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 5px 15px;
  }
  .fix-header article .boxR ul li:last-child {
    margin-right: 0;
  }
  /*-------------------------------------------------
   footer
  -------------------------------------------------*/
  footer {
    background: #333;
    color: #fff;
    padding: 30px 0;
  }
  footer article {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  footer article .boxL {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
  footer article .boxL img {
    width: 100px;
    display: block;
    margin-right: 10px;
  }
  footer article .boxR {
    display: block;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer article .boxR > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer article .boxR > ul li {
    width: 49%;
    margin-bottom: 10px;
  }
  footer article .boxR > ul li a {
    color: #fff;
    text-decoration: none;
  }
  footer article .boxR .inner {
    text-align: center;
  }
  footer article .boxR .inner > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  footer article .boxR .inner > ul li {
    margin: 0 10px;
  }
  footer article .boxR .inner > ul li img {
    width: 30px;
  }
  /*-----top-----*/
  #top {
    background-size: cover;
    height: 100vh;
    color: #fff;
    padding-bottom: 0;
    max-height: 100vh;
  }
  #top article {
    position: relative;
  }
  #top article #firstview .fv1, #top article #firstview .fv2, #top article #firstview .fv3, #top article #firstview .fv4, #top article #firstview .fv5 {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
  }
  #top article #firstview .fv1 {
    background: url(../img/top_bg.jpg) no-repeat 50% 10%;
    background-size: cover;
  }
  #top article #firstview .fv1 .content {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top article #firstview .fv1 .content h1 {
    font-size: 24px;
    width: 100%;
    padding-top: 20vh;
    font-weight: 600;
  }
  #top article #firstview .fv1 .content h2 {
    font-size: 30px;
    font-weight: 900;
    width: 100%;
    line-height: 1;
  }
  #top article #firstview .fv1 .content h2 span {
    font-size: 60px;
  }
  #top article #firstview .fv1 .content h2 small {
    font-size: 18px;
    line-height: 0;
  }
  #top article #firstview .fv1 .content > div {
    display: block;
    height: 5px;
    width: 50px;
    margin: 15px 0 15px;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  }
  #top article #firstview .fv2 {
    background: url(../img/top_bg2.jpg) no-repeat 70% 10%;
    background-size: cover;
  }
  #top article #firstview .fv2 .content {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top article #firstview .fv2 .content h1 {
    font-size: 24px;
    width: 100%;
    padding-top: 20vh;
    font-weight: 600;
  }
  #top article #firstview .fv2 .content h2 {
    font-size: 30px;
    font-weight: 900;
    width: 100%;
  }
  #top article #firstview .fv2 .content h2 span {
    font-size: 60px;
  }
  #top article #firstview .fv2 .content h2 small {
    font-size: 18px;
    line-height: 0;
  }
  #top article #firstview .fv2 .content > div {
    display: block;
    height: 5px;
    width: 50px;
    margin: 15px 0 15px;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  }
  #top article #firstview .fv3 {
    background: url(../img/miyagi_plan_bg.png) 50% 0;
    background-size: cover;
  }
  #top article #firstview .fv3 .content {
    width: 100%;
  }
  #top article #firstview .fv3 .content .pc {
    display: none;
  }
  #top article #firstview .fv3 .content .sp {
    display: block;
  }
  #top article #firstview .fv4 {
    background: url(../img/top_cb2.png) 50% 0;
    background-size: cover;
  }
  #top article #firstview .fv4 .content .pc {
    display: none;
  }
  #top article #firstview .fv4 .content .sp {
    display: block;
    padding-top: 10vh;
  }
  #top article #firstview .fv5 .content .pc {
    display: none;
  }
  #top article #firstview .fv5 .content .sp {
    display: block;
  }
  #top article ul {
    width: 90%;
    position: absolute;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #666;
    bottom: 70px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
  }
  #top article ul li {
    background: #fff;
    border-radius: 5px;
    padding: 5%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    width: 90%;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top article ul li a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
  }
  #top article ul li em {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    z-index: 2;
  }
  #top article ul li span {
    display: block;
  }
  #top article ul li span img {
    width: 30px;
  }
  #top article ul li dl {
    margin-left: 10px;
    font-weight: 600;
  }
  #top article ul li dl dd {
    color: #3796ee;
  }
  #top article ul li:hover {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  #top article ul.lp {
    bottom: 80px;
  }
  #top article ul.lp li {
    margin: 0 auto;
    width: 90%;
  }
  /*-----dounutstop-----*/
  #top_donuts {
    background: #000;
    background-size: cover;
    height: auto;
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  #top_donuts article {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top_donuts article h1 {
    font-size: 18px;
    width: 100%;
    padding-top: 5vh;
    font-weight: 600;
  }
  #top_donuts article h2 {
    font-size: 24px;
    font-weight: 900;
    width: 100%;
  }
  #top_donuts article h2 span {
    font-size: 54px;
  }
  #top_donuts article > div {
    display: block;
    height: 5px;
    width: 50px;
    margin: 15px 0 15px;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  }
  #top_donuts article ul {
    width: 100%;
    position: static;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #666;
    bottom: 0px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0px;
  }
  #top_donuts article ul li {
    background: #fff;
    border-radius: 5px;
    padding: 5%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    width: 90%;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top_donuts article ul li a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
  }
  #top_donuts article ul li em {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 12px;
    z-index: 2;
  }
  #top_donuts article ul li span {
    display: block;
  }
  #top_donuts article ul li span img {
    width: 30px;
  }
  #top_donuts article ul li dl {
    margin-left: 10px;
    font-weight: 600;
  }
  #top_donuts article ul li dl dd {
    color: #3796ee;
  }
  #top_donuts article ul li:hover {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  #top_donuts article ul.lp {
    bottom: 80px;
  }
  #top_donuts article ul.lp li {
    margin: 0 auto;
    width: 90%;
  }
  /*-----summary-----*/
  #summary {
    background: #f6f6f6;
    padding: 30px 0;
    position: relative;
  }
  #summary article {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #summary article .summaryTop {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  #summary article .summaryTop .summaryTop__content {
    width: 100%;
  }
  #summary article .summaryTop .fon-video {
    background: url(../img/tb_mok.png) no-repeat 50% 50%;
    background-size: 100%;
    width: 100%;
    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;
    padding: 40px 0;
    margin: 0 auto 30px;
  }
  #summary article .summaryTop .fon-video iframe {
    width: 90%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 16/9;
  }
  #summary article h2 {
    font-size: 36px;
    font-weight: 900;
    width: 100%;
    text-align: center;
  }
  #summary article .speed_img {
    background: #333;
    color: #fff;
    padding: 20px 0;
  }
  #summary article .speed_img .fon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    width: 90%;
  }
  #summary article .speed_img .fon .provider {
    width: 50px;
    text-align: center;
    font-weight: 600;
    line-height: 1em;
  }
  #summary article .speed_img .fon .border {
    width: calc(100% - 100px);
  }
  #summary article .speed_img .fon .border span {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 30px);
    margin: 0 auto;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    height: 10px;
  }
  #summary article .speed_img .fon .speed {
    font-size: 24px;
    font-weight: 900;
    color: #EC7103;
  }
  #summary article .speed_img .normal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    width: 90%;
  }
  #summary article .speed_img .normal .provider {
    width: 50px;
    text-align: center;
    font-weight: 600;
    line-height: 1em;
    font-size: 10px;
  }
  #summary article .speed_img .normal .border {
    width: calc(70% - 100px);
  }
  #summary article .speed_img .normal .border span {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 30px);
    margin: 0 auto;
    background: #fff;
    height: 5px;
    animation: size 6s liner 3s 5 reverse both running;
  }
  #summary article .speed_img .normal .speed {
    font-size: 14px;
    font-weight: 900;
  }
  #summary article h3 {
    font-size: 18px;
    margin-top: 30px;
  }
  #summary article .flex li {
    margin-right: 10px;
    margin-bottom: 20px;
  }
  #summary article .flex li img {
    width: 70px;
  }
  #summary article .flex li dt {
    font-size: 10px;
  }
  #summary article .flex li:last-child {
    margin-right: 0;
  }
  #summary article p {
    margin: 30px 0;
  }
  #summary article ul {
    margin-top: 30px;
  }
  /*-----recommend-----*/
  #recommend {
    padding: 50px 0;
  }
  #recommend article {
    width: 90%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #recommend article h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 45px;
  }
  #recommend article h2 img {
    height: 2em;
    vertical-align: baseline;
    margin: 0 5px;
  }
  #recommend article .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #recommend article .box .boxL {
    width: 45%;
  }
  #recommend article .box .boxR {
    width: 50%;
  }
  #recommend article .box .boxR dl dt {
    font-size: 16px;
    font-weight: 600;
  }
  #recommend article .box .boxR dl dt:after {
    content: " ";
    display: block;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    margin-top: 16px;
    margin-bottom: 16px;
    width: 38.88px;
    height: 3.99px;
  }
  #recommend article .box .boxR dl dd {
    color: #666;
    line-height: 1.8em;
    font-size: 12px;
  }
  #recommend article .box .boxR dl dd a {
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    color: #fff;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    width: auto;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #fff;
    margin: 50px auto 0;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #recommend article .box .boxR dl dd a:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
  }
  #recommend article .box:nth-child(3) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }
  /*-----plan-----*/
  #plan {
    padding: 30px 0;
    background: #666;
    color: #fff;
  }
  #plan article {
    width: 90%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #plan article:last-child {
    padding-top: 30px;
  }
  #plan article .box {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #plan article .box h2 {
    font-size: 30px;
    width: 100%;
    font-weight: 900;
    margin-bottom: 10px;
  }
  #plan article .box p {
    width: 100%;
    margin-bottom: 30px;
  }
  #plan article .box h3 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 24px;
  }
  #plan article .box h3 em {
    display: block;
    font-size: 72px;
    font-weight: 900;
    line-height: 1em;
    margin-bottom: 30px;
  }
  #plan article .box ul {
    width: 100%;
  }
  #plan article .box ul li {
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #plan article .box ul li img {
    width: 30px;
  }
  #plan article .box ul li dl {
    width: 130px;
    margin-left: 10px;
  }
  #plan article .box ul li dl dd {
    font-size: 24px;
    font-weight: 900;
    color: #f39500;
  }
  #plan article .old-plan h4 {
    font-size: 4vw;
  }
  #plan article .old-plan table th,
  #plan article .old-plan table td {
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #plan article .old-plan table td {
    width: 23%;
  }
  /*-----optionArea-----*/
  #optionArea {
    padding: 30px 0;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    color: #fff;
    text-align: center;
    overflow-x: hidden;
  }
  #optionArea article {
    width: 90%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
  }
  #optionArea article h2 {
    font-size: 28px;
  }
  #optionArea article p {
    margin: 15px 0;
  }
  #optionArea article ul {
    margin: 60px 0;
  }
  #optionArea article ul li {
    font-size: 10px;
  }
  /*-----option-----*/
  #option {
    padding: 30px 0;
    background: #f6f6f6;
  }
  #option article {
    width: 90%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #option article h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #option article > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  #option article > ul li {
    font-size: 10px;
    font-weight: bold;
    max-width: 90px;
    width: 23%;
  }
  #option article > ul li input {
    display: none;
  }
  #option article > ul li label {
    text-align: center;
    border: 1px #333 solid;
    display: block;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    padding: 5px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #option article > ul li input:checked + label {
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
  }
  #option article > ul li img {
    width: 24px;
    display: block;
    margin: 0 auto;
  }
  #option article .flex h3 {
    font-size: 16px;
    margin: 40px 0 10px;
  }
  #option article .flex h3 img {
    width: 24px;
  }
  #option article .box {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #option article .box .boxL {
    width: 100%;
    vertical-align: middle;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  #option article .box .boxL img {
    vertical-align: middle;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  #option article .box .boxR {
    width: 100%;
  }
  #option article .box .boxR .boxR-2col {
    display: block;
  }
  #option article .box .boxR dl dt {
    font-weight: bold;
    font-size: 18px;
  }
  #option article .box .boxR dl dd {
    margin-bottom: 15px;
  }
  #option article .box .boxR dl dd ul li {
    list-style: inside;
  }
  #option article .box .boxR dl dd table thead th {
    border: #333 solid 1px;
  }
  #option article .box .boxR .btn {
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 15px;
    display: inline-block;
    margin: 0 auto;
  }
  #option article .annotation li {
    font-size: 12px;
    margin-top: 20px;
    width: 100%;
  }
  /*-----ouchiwari-----*/
  #ouchiwari {
    padding: 50px 0;
    background: #f6f6f6;
  }
  #ouchiwari article {
    width: 90%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #ouchiwari article h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #ouchiwari article h2 span {
    display: block;
  }
  #ouchiwari article h2 span em {
    font-weight: 900;
    font-size: 1.5em;
  }
  #ouchiwari article h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    margin: 30px 0 10px;
    background: #333;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 15px;
  }
  #ouchiwari article h4 {
    font-size: 18px;
    font-weight: 900;
    margin: 30px 0;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    background: #fff;
    padding: 10px;
  }
  #ouchiwari article h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 30px 0;
  }
  #ouchiwari article a {
    color: darkblue;
  }
  #ouchiwari article ul li {
    text-indent: -1em;
    padding-left: 1em;
  }
  #ouchiwari article table {
    margin: 30px 0;
  }
  #ouchiwari article table tr th {
    padding: 15px;
    background: #eee;
    border: #ccc solid 1px;
    text-align: center;
  }
  #ouchiwari article table tr td {
    padding: 15px;
    background: #fff;
    border: #ccc solid 1px;
    text-align: center;
  }
  #ouchiwari article table tr td span {
    font-weight: 600;
    font-size: 1.2em;
  }
  #ouchiwari article table tr td em {
    font-weight: 900;
    font-size: 1.4em;
  }
  #ouchiwari article .box {
    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;
  }
  #ouchiwari article .box dl {
    border: 1px solid #ccc;
    text-align: center;
    padding: 10px;
    background: #fff;
  }
  #ouchiwari article .box dl dt {
    font-weight: 600;
    font-size: 10px;
  }
  #ouchiwari article .box div {
    font-weight: 900;
    font-size: 24px;
  }
  /*-----flow-----*/
  #flow {
    padding: 30px 0;
  }
  #flow article {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #flow article h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  #flow article ul {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #flow article ul li {
    width: 90%;
    background: #fff;
    -webkit-box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
            box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    padding: 10px 15px;
    margin: 10px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #flow article ul li img {
    max-width: 150px;
    max-height: 150px;
  }
  #flow article ul li dl {
    text-align: center;
    text-align: left;
  }
  #flow article ul li dl dt {
    font-weight: 900;
    font-size: 18px;
    margin: 10px 0;
  }
  #flow article ul li dl dd img {
    width: 50%;
  }
  #flow article ul .triangle_sp {
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
  }
  #flow article ul .triangle_sp:nth-of-type(1) {
    border-top: 30px solid #FDC900;
  }
  #flow article ul .triangle_sp:nth-of-type(2) {
    border-top: 30px solid #F7A902;
  }
  #flow article ul .triangle_sp:nth-of-type(3) {
    border-top: 30px solid #EE7B03;
  }
  #flow article a {
    margin-top: 30px;
  }
  /*-----area-----*/
  #provide {
    padding: 30px 0;
  }
  #provide article {
    width: 90%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #provide article h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #provide article .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #provide article .box .boxL {
    width: 100%;
    font-weight: 600;
  }
  #provide article .box .boxL a {
    display: block;
    background: linear-gradient(61.56deg, #FFD300 0%, #EC7103 100%);
    color: #fff;
    text-align: center;
    width: 150px;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 30px;
    text-decoration: none;
  }
  /*-----support-----*/
  #support {
    padding: 30px 0;
  }
  #support article {
    width: 90%;
    max-width: 800px;
    height: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #support article h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
  }
  #support article ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #support article ul li {
    width: 48%;
    margin: 0;
    line-height: normal;
  }
  #support article ul li .imgBox {
    height: 100px;
    display: block;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #support article ul li .imgBox img {
    margin: 0 auto;
    display: block;
  }
  #support article ul li h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 10px 0;
  }
  #support article ul li p {
    margin-bottom: 10px;
  }
  #support article ul li a {
    color: #3796ee;
    margin-bottom: 10px;
    display: inline-block;
  }
  /*-------------------------------------------------
   error
  -------------------------------------------------*/
  #error {
    background: url(../img/top_bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    height: 100vh;
  }
  #error article {
    color: #fff;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 50vh;
    font-size: 18px;
  }
  #error article h1 {
    font-family: "Ranchers", cursive;
    font-size: 72px;
  }
  #error article a {
    color: #fff;
    margin-top: 30px;
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */