@charset "UTF-8";
/* CSS Document */
/*---------------------
初期化
---------------------*/
* {
  margin: 0;
  padding: 0;
  word-break: normal;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  color: #fff;
  -webkit-text-size-adjust: none;
  line-height: 1.6;
  background: #000;
  overflow-x: hidden !important;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 2.0rem;
  }
}
dl, ul, ol {
  list-style-type: none;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
table th, table td {
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  padding: 10px;
}
img {
  width: 100%;
  border: 0;
  vertical-align: bottom;
}
/*link基本設定*/
a {
  text-decoration: none;
}
a:focus, a:active, input:focus {
  outline: none;
}
a, img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*---------------------
		form
		---------------------*/
input, button, select, textarea {
  outline: none;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button, select {
  text-transform: none;
}
select {
  width: 100%;
  border: 1px solid #7b7b7b;
  border-radius: 3px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="submit"], input[type="button"] {
  background: none;
  border: none;
  -webkit-appearance: button;
  cursor: pointer;
}
/*------common------*/
main {
  overflow: hidden;
}
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100vh;
}
.gradient {
  background-color: #42291B;
}
.deco__heading {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.8));
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.deco__heading span {
  color: #D8C86E;
}
.deco__text {
  background-color: #FBBA44;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.8));
}
.heading {
  padding: 20px;
  margin-bottom: 40px;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.8));
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.text--small {
  font-size: 1.2rem;
}
.inner {
  padding: 40px 20px;
  margin: 0 auto;
}
.sp__view {
  display: block;
}
@media screen and (min-width: 769px) {
  main:before {
    background: url(main_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  #video {
    min-height: 100%;
    min-width: 100%;
    height: auto;
  }
  .deco__heading {
    font-size: 4.8rem;
  }
  .heading {
    margin-bottom: 80px;
    font-size: 4.8rem;
  }
  .inner {
    padding: 80px 20px;
    max-width: 750px;
  }
  .sp__view {
    display: none;
  }
}
/*------メインビジュアル------*/
.mv__logo img {
  display: block;
  margin: 20px auto 0 auto;
}
@media screen and (min-width: 1025px) {
  .mv__logo img {
    max-width: 80%;
  }
}
@media screen and (min-width: 1240px) {
  .mv__logo img {
    max-width: 50%;
  }
}
/*------登録------*/
.regist .deco__heading {
  margin-bottom: 20px;
  font-size: 2.3rem;
}
@media screen and (min-width: 1025px) {
  .regist .deco__heading {
    font-size: 4.8rem;
  }
}
.regist .kiyaku {
  margin-bottom: 10px;
}
.regist .kiyaku a {
  color: #5a99fb;
}
.regist input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  vertical-align: middle;
  cursor: pointer;
}
.regist img {
  width: 51px;
  display: inline-block;
  margin-right: 20px;
}
.regist__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  padding: 16px;
  border-radius: 10px;
  background: #00c100;
  box-shadow: 0 6px #004700;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  animation: animScale 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
  transition: all 0.3s ease 0s;
}
@keyframes animScale {
  0% {
    transform: scale(0.8, 0.8);
  }
  5% {
    transform: scale(1.2, 1.2);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.1, 1.1);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.regist__btn:hover {
  opacity: 0.6;
}
@media screen and (min-width: 769px) {
  .regist img {
    width: 71px;
    display: inline-block;
    margin-right: 20px;
  }
  .regist__btn {
    font-size: 4.6rem;
  }
}
/*------理由------*/
.reason {
  background: rgba(235, 153, 22, 0.4);
  color: #fff;
  line-height: 1.2;
  font-size: 2.0rem;
}
.reason .flex {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reason__img {
  width: 40%;
}
.reason__text {
  width: 60%;
}
@media screen and (min-width: 780px) {
  .reason {
    font-size: 4.0rem;
  }
}
.reason__text--01 {
  position: relative;
  width: 220px;
  margin: 0 auto 16px auto;
  font-size: 1.6rem;
}
.reason__text--01:before, .reason__text--01:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #fff;
}
.reason__text--01:before {
  left: 0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.reason__text--01:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.reason__text--01 span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 2px;
  background-color: #42291B;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff000;
}
.reason__text--02 {
  margin-bottom: 20px;
}
.reason__text--03 {
  margin-bottom: 14px;
  font-size: 3.0rem;
  font-weight: bold;
  color: #fff000;
  line-height: 1.2;
}
@media screen and (min-width: 680px) {
  .reason__text--01 {
    width: 350px;
    font-size: 3.4rem;
  }
  .reason__text--01 span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 3.0rem;
  }
  .reason__text--02 {
    margin-bottom: 40px;
  }
  .reason__text--03 {
    margin-bottom: 30px;
    font-size: 6.0rem;
  }
}
.reason__photo {
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.photo__slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.photo__slide, .photo__slide ul {
  height: 260px;
}
.photo__slide ul {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  max-width: 10000%;
  min-width: 100%;
  width: calc(200px * 3.6 * 3);
  animation: 70s linear infinite;
}
.photo__slide li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: calc(100% / 3);
}
.photo__slide img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: 50% 0;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .photo__slide {
    margin-bottom: 80px;
  }
  .photo__slide ul {
    width: calc(260px * 3.8 * 3);
  }
  .photo__slide img {
    width: 260px;
    height: 260px;
  }
}
/* アニメーション個別設定  */
.photo__slide ul.loop1 {
  animation-name: loop1;
}
.photo__slide ul.loop2 {
  animation-name: loop2;
}
@keyframes loop1 {
  0% {
    transform: translateX(0);
  }
  49.99999% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*------楽しみ方------*/
.step .deco__heading {
  margin-bottom: 40px;
}
.step dl {
  padding: 30px;
  counter-increment: count;
  border-radius: 10px;
  position: relative;
  text-align: left;
  color: #fff;
}
.step dl:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .step dl {
    padding: 60px;
  }
}
.step dt {
  margin-bottom: 20px;
  padding-left: 50px;
  font-size: 2.0rem;
}
.step dt:before {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: #42291B;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
}
.step dt:after {
  content: counter(count);
  position: absolute;
  font-size: 2.2rem;
  top: 35px;
  left: 38px;
}
.step dt span {
  color: #fff;
  font-size: 1.2rem;
  position: absolute;
  top: 25px;
  left: 29px;
}
.step dd {
  -webkit-background-clip: text;
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.8));
}
@media screen and (min-width: 769px) {
  .step dt {
    margin-bottom: 40px;
    padding-left: 60px;
    font-weight: bold;
    font-size: 3.0rem;
  }
  .step dt:before {
    width: 55px;
    height: 55px;
    top: 57px;
    left: 57px;
  }
  .step dt:after {
    font-size: 2.5rem;
    top: 72px;
    left: 77px;
  }
  .step dt span {
    font-weight: bold;
    top: 64px;
    left: 70px;
  }
}
.step .step--01 {
  background: url("step_bg_01.jpg") no-repeat;
  background-size: cover;
}
.step .step--02 {
  background: url("step_bg_02.jpg") no-repeat;
  background-size: cover;
}
.step .step--03 {
  background: url("step_bg_03.jpg") no-repeat center;
  background-size: cover;
}
.step dl:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #A96203;
  opacity: 0.8;
}
/*------ご利用者の声------*/
.voice {
  background: rgba(235, 153, 22, 0.4);
}
.voice li {
  max-width: 320px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 10px;
  text-align: left;
  color: #4a4242;
  clear: both;
  position: relative;
}
.voice li:nth-child(odd) {
  float: right;
}
.voice li:not(:last-child) {
  margin-bottom: 40px;
}
.voice__age {
  margin-bottom: 4px;
  color: #EB9916;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .voice {
    background-position: left center;
  }
  .voice li {
    max-width: 540px;
    padding: 40px 60px;
  }
  .voice__age {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}
.voice__user {
  display: inline-block;
  position: relative;
  border-radius: 50%;
  background-color: #42291B;
  width: 1.0em;
  height: 1.0em;
  font-size: 6rem;
  overflow: hidden;
  position: absolute;
  top: -36px;
  left: -10px;
}
.voice__user::before {
  content: "";
  background: url("voice_icn.png") no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
  z-index: 9999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.voice li:nth-child(odd) .voice__user {
  position: absolute;
  top: -36px;
  left: inherit;
  right: -10px;
}
@media screen and (min-width: 769px) {
  .voice__user {
    font-size: 9rem;
    position: absolute;
    top: -40px;
    left: -15px;
  }
  .voice__user::before {
    width: 55px;
    height: 55px;
  }
  .voice li:nth-child(odd) .voice__user {
    top: -40px;
    left: inherit;
    right: -15px;
  }
}
/*------安心・安全の理由------*/
.safety .inner {
  max-width: 700px;
}
.safety .deco__heading {
  margin-bottom: 20px;
}
.safety ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 100px;
}
.safety li {
  width: calc(100% / 2);
  position: relative;
  padding-top: 70px;
  font-size: 1.4rem;
  font-weight: bold;
}
.safety li:nth-of-type(1), .safety li:nth-of-type(2) {
  margin-bottom: 80px;
}
.safety li:before {
  content: "";
  width: 120px;
  height: 120px;
  display: block;
  background-color: #EB9916;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 50%;
}
.safety li:after {
  content: "";
  width: 90px;
  height: 90px;
  display: block;
  z-index: 9999999;
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.safety li:nth-of-type(1):after {
  background: url("safety_img_01.png") no-repeat;
  background-size: contain;
}
.safety li:nth-of-type(2):after {
  background: url("safety_img_02.png") no-repeat;
  background-size: contain;
}
.safety li:nth-of-type(3):after {
  background: url("safety_img_03.png") no-repeat;
  background-size: contain;
}
.safety li:nth-of-type(4):after {
  background: url("safety_img_04.png") no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .safety ul {
    padding-top: 200px;
  }
  .safety li {
    width: calc(90% / 2);
    padding-top: 150px;
    font-size: 3.0rem;
  }
  .safety li:nth-of-type(1), .safety li:nth-of-type(2) {
    margin-bottom: 250px;
  }
  .safety li:before {
    width: 250px;
    height: 250px;
  }
  .safety li:after {
    width: 170px;
    height: 170px;
    top: 4%;
    left: 50%;
  }
}
footer {
  background: #000;
  color: #fff;
}
/**/
.kata_box {
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 40px;
  padding-left: 22px;
  background-color: hsla(0, 0%, 0%, 0.40);
  border-radius: 4px;
  border: 2px solid #690074;
  border-image: linear-gradient(to right, #d00, #00d);
  border-image-slice: 1;
  text-align: center;
  margin-bottom: 5px;
  width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.kata_box h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D2B460;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
  text-shadow: 0px 1px 17px hsla(0, 0%, 100%, 0.72);
}
.kata_box p {
  font-size: 1.5rem;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: left;
  padding-bottom: 20px;
  text-shadow: 0px 1px 5px hsla(0, 0%, 100%, 0.72);
}
.kata_box img {
  width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width:1024px) {
  .kata_box {
    width: 100%;
  }
  .kata_box img {
    width: 100%;
  }
}
/*FORM*/
.app_checkbox input[type="checkbox"] {
  display: none;
}
.app_checkbox input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-block;
  box-sizing: content-box;
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #FFF;
  border: 2px solid #CCC;
  border-radius: 30px;
}
.app_checkbox input[type="checkbox"]:checked + label {
  background-color: #78D376;
  border-color: #78D376;
}
.app_checkbox input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px; /* widthと同じ 上のラベルの高さに揃える */
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: #FFF;
  box-shadow: 2px 2px 4px gray;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.app_checkbox input[type="checkbox"]:checked + label:before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  box-shadow: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*form*/
.form-example {
  margin-bottom: 17px;
  text-align: right;
}
.m-form-text {
  height: 2.4em;
  width: 60%;
  padding-top: 20px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 20px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: hsla(0, 0%, 27%, 1.00);
  margin-right: auto;
  margin-left: auto;
}
.m-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.m-form-text2 {
  /*height: 2.4em;*/
  width: 60%;
  padding-top: 8px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 8px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  margin-right: auto;
  margin-left: auto;
  color: hsla(0, 0%, 27%, 1.00);
}
.shinta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 27px;
  font-size: 0.8em;
}
.l_m_box {
  width: 100%;
  border: 1px solid hsla(0, 0%, 100%, 1.00);
  border-radius: 3px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
}
.l_box {
  width: 70%;
  float: left;
  text-align: right;
  padding-top: 2px;
  font-size: 1.3em;
}
.r_box {
  width: 30%;
  float: right;
}
.form_box {
  margin-top: 11px;
  margin-right: 11px;
  margin-bottom: 11px;
  margin-left: 11px;
}
.regist__btn2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 41px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  padding: 16px;
  /*border-radius: 10px;
  background: #00c100;
  box-shadow: 0 6px #004700;*/
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  animation: animScale2 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
  transition: all 0.3s ease 0s;
}
@keyframes animScale2 {
  0% {
    transform: scale(0.8, 0.8);
  }
  5% {
    transform: scale(1.2, 1.2);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.1, 1.1);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.regist__btn2:hover {
  opacity: 0.6;
}
input[type="submit"] {
  padding-top: 11px;
  padding-right: 21px;
  padding-left: 21px;
  padding-bottom: 11px;
  background-color: hsla(41, 100%, 50%, 1.00);
  border-radius: 6px;
}
.ir {
  margin-bottom: 60px;
}
.ai_top {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: hsla(0, 0%, 100%, 0.74);
  color: hsla(0, 0%, 7%, 1.00);
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  border-radius: 4px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.ai_top h2 {
  padding-bottom: 14px;
  font-size: 1.2em;
  margin-bottom: 20px;
  margin-top: 20px;
}
/**/
.inner2 {
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.top_sp{
    margin-top: 100px;
    width: 100%;
}

.box_3 {
  width: 33.333333%;
  float: left;
}
.box_4 {
  width: 25%;
  float: left;
}
.box_5 {
  width: 20%;
  float: left;
}
.sp_01_box {
  width: 100%;
}
.sp_02_box {}
.sp_03_box {}
/*.sp_box1 {
    width: 98%;
    margin-bottom: 5px;
    padding-top: 13px;
    padding-right: 13px;
    padding-bottom: 13px;
    padding-left: 13px;
    border: 1px solid hsla(0,0%,100%,1.00);
    border-radius: 4px;
    margin-right: 2px;
    margin-left: 4px;
}*/
.sp_box2 {}
.sp_box3 {}
.box_3 .sp_box1 {
  width: 98%;
  margin-bottom: 5px;
  padding-top: 13px;
  padding-right: 13px;
  padding-bottom: 13px;
  padding-left: 13px;
  border: 1px solid hsla(0, 0%, 100%, 1.00);
  border-radius: 4px;
  margin-right: 2px;
  margin-left: 4px;
}
.box_3 .sp_box1 h1 {
  font-size: 1.2em;
  margin-bottom: 16px;
  margin-top: 6px;
  font-weight: 500;
}
.box_3 .sp_box1 p {
  font-size: 0.7em;
  font-weight: 200;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  text-align: left;
}
.box_3 .sp_box1 img {
  width: 100%;
}
.box_4 .sp_box1 {
  width: 98%;
  margin-bottom: 5px;
  padding-top: 13px;
  padding-right: 13px;
  padding-bottom: 13px;
  padding-left: 13px;
  border: 1px solid hsla(0, 0%, 100%, 1.00);
  border-radius: 4px;
  margin-right: 2px;
  margin-left: 4px;
}
.box_4 .sp_box1 h1 {
  font-size: 1em;
  margin-bottom: 16px;
  margin-top: 6px;
  font-weight: 500;
}
.box_4 .sp_box1 p {
  font-size: 0.6em;
  font-weight: 200;
  padding-top: 13px;
  padding-right: 13px;
  padding-bottom: 13px;
  padding-left: 13px;
  text-align: left;
}
.box_4 .sp_box1 img {
  width: 100%;
}
.box_5 .sp_box1 {
  width: 98%;
  margin-bottom: 5px;
  padding-top: 13px;
  padding-right: 13px;
  padding-bottom: 13px;
  padding-left: 13px;
  border: 1px solid hsla(0, 0%, 100%, 1.00);
  border-radius: 4px;
  margin-right: 2px;
  margin-left: 4px;
}
.box_5 .sp_box1 h1 {
  font-size: 0.9em;
  margin-bottom: 16px;
  margin-top: 6px;
  font-weight: 500;
}
.box_5 .sp_box1 p {
  font-size: 0.5em;
  font-weight: 200;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  text-align: left;
}
.box_5 .sp_box1 img {
  width: 100%;
}
@media screen and (max-width:1024px) {
  .inner2 {
    width: 100%;
  }
  .box_3 {
    width: 100%;
  }
  .box_4 {
    width: 50%;
  }
  .box_5 {
    width: 50%;
  }
  .sp_01_box {
    width: 100%;
  }
  .sp_02_box {
    width: 100%;
  }
  .sp_03_box {
    width: 100%;
  }
  .sp_box1 {
    width: 95%;
    margin-right: auto;
    margin-left: auto;
  }
  .sp_box2 {
    width: 100%;
  }
  .sp_box3 {
    width: 100%;
  }
  .box_3 .sp_box1 {
    width: 98%;
    margin-bottom: 5px;
    padding-top: 13px;
    padding-right: 13px;
    padding-bottom: 13px;
    padding-left: 13px;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    border-radius: 4px;
    margin-right: 2px;
    margin-left: 4px;
  }
  .box_4 .sp_box1 {
    width: 98%;
    margin-bottom: 5px;
    padding-top: 13px;
    padding-right: 13px;
    padding-bottom: 13px;
    padding-left: 13px;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    border-radius: 4px;
    margin-right: 2px;
    margin-left: 4px;
  }
  .box_5 .sp_box1 {
    width: 98%;
    margin-bottom: 5px;
    padding-top: 13px;
    padding-right: 13px;
    padding-bottom: 13px;
    padding-left: 13px;
    border: 1px solid hsla(0, 0%, 100%, 1.00);
    border-radius: 4px;
    margin-right: 2px;
    margin-left: 4px;
  }
}

.go{
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 0.9em;
    margin-top: 52px;
    margin-right: 14px;
    margin-left: 14px;
}
.go span{font-size: 0.7em;}
.c {
  float: none;
  clear: both;
}