@charset "UTF-8";
/* a modern css reset
============================================ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class],
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  margin: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* base
================================================ */
body {
  width: 100%;
  max-width: 100%;
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", " Meiryo", sans-serif;
}

* {
  position: relative;
}

a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.sp {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}
input[type=text],
input[type=email],
input[type=submit] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=submit]:focus {
  outline: none;
}

/* utility
============================================ */
/* text */
.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

.t-center {
  text-align: center;
}

.ft-b {
  font-weight: bold;
}

.ft-n {
  font-weight: normal;
}

/* indent */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* component
================================================ */
.sec-ttl {
  width: 100%;
  height: 90px;
  background: url(../image/ttl_bar.png) no-repeat center/auto 90px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .sec-ttl {
    margin-top: 15px;
    margin-bottom: 10px;
    height: 45px;
    background-size: auto 45px;
  }

  .sec-ttl img {
    height: 50%;
  }
}
.js-show {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
}

.js-show.is-show {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  visibility: visible;
}

/* header / menu
================================================ */
nav {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 10;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 53px;
  background: url(../image/menu_bg_n.png) no-repeat center/100%;
}

nav ul li a:hover {
  opacity: 1;
  background: url(../image/menu_bg_a.png) no-repeat center/100%;
}

@media only screen and (min-width: 769px) {
  .btn-menu {
    display: none;
  }

  nav {
    margin: auto;
  }

  nav ul {
    width: 989px;
    height: 70px;
    margin: 0 auto;
    background: url(../image/menu_bg.png) no-repeat center/100%;
  }
}
@media only screen and (max-width: 768px) {
  .btn-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 56px;
    height: 56px;
    background: url(../image/menu_btn_sp.png) no-repeat center/100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }

  .btn-menu:before {
    display: block;
    content: "";
    width: 36px;
    height: 36px;
    background: url(../image/menu_open_sp.png) no-repeat center/100%;
  }

  .btn-menu.is-open:before {
    background: url(../image/menu_close_sp.png) no-repeat center/100%;
  }

  nav {
    display: none;
    top: 0;
    right: 0;
    z-index: 10;
    left: auto;
    width: 230px;
    height: 388px;
    background: url(../image/menu_bg_sp.png) no-repeat top center/100% 100%;
  }

  nav ul {
    flex-wrap: wrap;
    width: 40%;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li + li {
    margin-top: 28px;
  }

  nav ul li a {
    width: 100%;
    height: 26px;
  }

  nav ul li a img {
    height: 20px;
  }
}
/* main
================================================ */
.main {
  width: 100%;
  background: url(../image/bg_yellow.png) repeat center/300px 300px;
  padding-bottom: 50px;
}

/* mv
================================================ */
.mv {
  overflow: hidden;
  width: 100%;
  padding-top: 56%;
  background: url(../image/mv_bg.png) no-repeat top center/100% auto;
}

.mv > * {
  position: absolute;
}

.mv .copy {
  opacity: 0;
  transform: translate3d(0, -10%, 0);
  width: 25%;
  top: 15%;
  left: 6%;
  z-index: 1;
  transition: all 1s 0.4s;
}

.mv .copy.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mv .logo {
  opacity: 0;
  transform: translate3d(0, -10%, 0);
  width: 39%;
  top: 36%;
  left: 11%;
  z-index: 1;
  transition: all 1s 0.4s;
}

.mv .logo img {
  width: 100%;
}

.mv .logo.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mv .chara-main {
  opacity: 0;
  transform: translate3d(0, 5%, 0);
  width: 77.8%;
  left: 33%;
  bottom: -12%;
  transition: all 1s 0.2s;
}

.mv .chara-main.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mv .chara-sub {
  opacity: 0;
  transform: translate3d(0, -10%, 0);
  width: 62.5%;
  left: 50%;
  bottom: -8%;
  transition: all 1s;
}

.mv .chara-sub.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 768px) {
  .mv {
    padding-top: 123%;
    background: url(../image/mv_bg_sp.png) no-repeat top center/100%;
  }

  .mv .copy {
    width: 54.8%;
    top: 0;
    left: 7%;
    z-index: 1;
  }

  .mv .logo {
    width: 56.8%;
    top: 48%;
    left: 1%;
    z-index: 1;
  }

  .mv .logo img {
    width: 100%;
  }

  .mv .chara-main {
    max-width: inherit;
    width: 140%;
    left: -8%;
    bottom: 0;
  }

  .mv .chara-sub {
    max-width: inherit;
    width: 115%;
    left: 22%;
    bottom: 3%;
  }
}
/* reg-pre
================================================ */
.reg-pre {
  background: url(../image/reg_pre_bg.png) no-repeat bottom center/100%;
  width: 681px;
  height: 206px;
  /* padding: 60px 2% 30px; */
  padding: 85px 2% 50px;
  margin: 0 auto;
}

.reg-pre.in-mv {
  /* padding: 60px 2% 30px; */
  padding: 85px 2% 50px;
  bottom: 0;
  left: 5%;
  width: 49%;
  max-width: 681px;
  height: auto;
  z-index: 1;
}

@media only screen and (min-width: 1440px) {
  .reg-pre.in-mv {
    /* padding: 70px 2% 30px; */
    padding: 85px 2% 50px;
    left: 12%;
  }
}
.reg-pre ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reg-pre ul li {
  /* width: 32%; */
  width: 37%;
}

.reg-pre ul li + li{
  margin-left: 35px;
}

.reg-pre ul li img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .reg-pre {
    /* padding: 25px 2% 10px; */
    padding: 50px 2% 25px;
    width: 340px;
    /* height: 100px; */
    height: 110px;
  }

  .reg-pre.in-mv {
    /* padding: 30px 2% 10px; */
    padding: 50px 2% 25px;
    width: 90%;
    height: auto;
    max-width: 330px;
    margin: -100px auto 15px;
    position: inherit;
    left: auto;
    right: auto;
  }

  .reg-pre ul li + li{
    margin-left: 20px;
  }
  
}
/* reg-app
================================================ */

/* .reg-app {
  width: 713px;
  height: 192px;
  background: url(../image/reg_app_bg.png) no-repeat center/100%;
  padding: 20px 40px;
  margin: 0 auto;
} */

.reg-app-area:before {
  display: block;
  content: "";
  background: url(../image/bg_yellow_top.png) repeat-x top left/cover;
  height: 30px;
  transform: translateY(-100%);
}

.reg-app .ttl {
  text-align: center;
  border-bottom: 2px solid #755a4f;
}

.reg-app .ttl img {
  display: inline;
}

.reg-app ul {
  display: flex;
  padding-top: 20px;
}

.reg-app ul li:nth-child(-n+2) {
  width: 40%;
}

.reg-app ul li:nth-child(2) {
  margin-left: 3%;
}

.reg-app ul li:last-child {
  width: 11%;
  margin-left: 5%;
}

@media only screen and (max-width: 768px) {
  .reg-app {
    max-width: 350px;
    width: 94%;
    height: 92px;
    padding: 10px 30px;
  }

  .reg-app .ttl img {
    width: 30%;
  }

  .reg-app ul {
    padding-top: 8px;
  }
}
/* news
================================================ */
.news-inner {
  width: 100%;
  padding: 0 0 70px;
  background: url(../image/bg_elem.png) no-repeat top center/1606px;
}

.news .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 507px;
  height: 570px;
  margin: 0 auto;
  background: url(../image/twitter_box.png) no-repeat center/100%;
}

.news .box-inner {
  width: 77%;
  height: 92%;
  background: #fff;
  overflow-y: scroll;
}

@media only screen and (max-width: 768px) {
  .news-inner {
    padding: 0 0 35px;
    background: url(../image/bg_elem.png) no-repeat top right 38%/803px;
  }

  .news .box {
    width: 252px;
    height: 285px;
  }
}
/* story
================================================ */
.story {
  background: url(../image/bg_story.png) no-repeat top center/cover;
}

.story-inner {
  padding: 80px 0 180px;
}

.story .txt {
  text-align: center;
  width: 80%;
  max-width: 1016px;
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  transition: all 1s 0.5s;
}

.story .txt img {
  display: inline;
}

.story .txt.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story .chara {
  position: absolute;
  bottom: 0;
  right: -80px;
}

@media only screen and (max-width: 768px) {
  .story-inner {
    padding: 30px 0 30px;
  }

  .story .txt {
    width: 90%;
    max-width: 400px;
  }
}
/* camp
================================================ */
.camp {
  padding-bottom: 40px;
}

.camp-box {
  width: 100%;
  max-width: 843px;
  padding: 70px 22px 60px;
  margin: -80px auto 0;
  background: url(../image/camp_box.png) no-repeat top center/100% 100%;
  text-align: center;
}

.camp-box img {
  display: inline;
}

.camp-ttl {
  border-top: double 5px #66371d;
  border-bottom: double 5px #533c25;
  padding: 15px 0 10px;
  line-height: 1;
}

.camp-ttl-lead {
  font-size: 23px;
  font-weight: bold;
  font-style: italic;
  padding: 15px 0 30px;
  line-height: 1;
}

.camp-ttl-lead strong {
  font-size: 130%;
  color: #a62b31;
}

.camp ul li {
  border-bottom: solid 2px #533c25;
}

.camp ul li img.lg {
  margin-left: 5%;
}

.camp-ttl-present {
  margin: 20px 0;
}

.camp-lead-present p {
  font-size: 15px;
  max-width: 76%;
  text-align: left;
  margin: 0 auto;
  text-indent: -0.5em;
  padding-left: 0.5em;
}

@media only screen and (max-width: 768px) {
  .camp {
    padding-bottom: 20px;
    overflow: hidden;
  }

  .camp-box {
    width: 112%;
    max-width: 400px;
    margin-top: 30px;
    padding: 35px 22px 30px;
  }

  .camp-ttl {
    padding: 5px 0;
  }

  .camp-ttl img {
    width: 80%;
  }

  .camp-ttl img.lg {
    margin-left: 0;
  }

  .camp-ttl-lead {
    font-size: 13px;
    padding: 10px 0;
  }

  .camp ul li {
    padding: 5px 0;
    border-bottom: solid 1px #533c25;
  }

  .camp ul li img {
    width: 90%;
  }

  .camp ul li.pd0 {
    padding: 0;
  }

  .camp-ttl-present {
    margin: 15px 0 10px;
    width: 90%;
  }

  .camp-lead-present p {
    font-size: 10px;
    max-width: 80%;
  }
}
@media only screen and (max-width: 400px) {
  .camp-box {
    margin-left: -3%;
  }
}
/* chara
================================================ */
.chara-inner {
  background: url(../image/bg_chara.png) repeat-x top 50px center/auto 509px;
  padding-bottom: 50px;
}

.chara-slider {
  width: 1020px;
}

.chara-slider .swiper-pagination-bullets {
  left: 40px !important;
}

.chara-slider .swiper-pagination-bullet {
  width: 181px;
  height: 160px;
  background: none;
  opacity: 1;
  outline: none;
}

.chara-slider .swiper-pagination-bullet:hover {
  cursor: pointer;
  opacity: 0.7;
}

.chara-slider .swiper-pagination-bullet img {
  display: inline;
}

.chara-slider .swiper-pagination-bullet.num6, .chara-slider .swiper-pagination-bullet.num15 {
  margin-left: 90px !important;
}

.chara-slider .swiper-pagination-bullet.num19 {
  margin-left: 180px !important;
}

.chara-slider .swiper-button-next,
.chara-slider .swiper-button-prev {
  cursor: pointer;
  width: 50px;
  height: 60px;
  top: 20%;
  background-image: none;
}

.chara-slider .swiper-button-next:after,
.chara-slider .swiper-button-prev:after {
  display: none;
}

.chara-slider li {
  width: 1020px;
  height: 512px;
  background: url(../image/chara_slide_bg.png) no-repeat bottom 30px center/100%;
  margin-bottom: 30px;
}

.chara-slider li .inner {
  display: flex;
  align-items: center;
  width: 910px;
  height: 100%;
  margin: 0 auto;
}

.chara-slider li .chara01 {
  position: absolute;
  top: 0;
  left: 100px;
}

@media only screen and (min-width: 769px) {
  .chara-slider li .chara01.left60 {
    left: 60px;
  }

  .chara-slider li .chara01.left80 {
    left: 80px;
  }

  .chara-slider li .chara01.left120 {
    left: 120px;
  }

  .chara-slider li .chara01.c16 {
    left: 30px;
  }
}
.chara-slider li .chara02 {
  height: 260px;
  bottom: -5%;
  left: 340px;
}

.chara-slider li .chara02 img {
  height: 100%;
  z-index: 1;
}

.chara-slider li .chara02:after {
  display: block;
  content: "";
  background: #fff;
  border-radius: 40%;
  width: 170px;
  height: 115%;
  filter: blur(20px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.chara-slider li .chara02.c16:after {
  left: 70px;
}

.chara-slider li .chara02.c18:after {
  left: 20px;
}

.chara-slider li .chara02.c21:after {
  left: -40px;
}

@media only screen and (min-width: 769px) {
  .chara-slider li .chara02.left290 {
    left: 290px;
  }

  .chara-slider li .chara02.left320 {
    left: 320px;
  }

  .chara-slider li .chara02.left360 {
    left: 360px;
  }

  .chara-slider li .chara02.c16 {
    height: 250px;
    left: 250px;
  }
}
.chara-slider li .detail {
  max-width: 350px;
  font-size: 16px;
  letter-spacing: -0.01em;
  position: absolute;
  left: 520px;
  top: 28%;
}

.chara-slider li .detail .chara-name {
  transform: translateX(-30px);
}

.chara-slider li .detail p {
  padding-top: 1em;
}

@media only screen and (max-width: 768px) {
  .chara-inner {
    background: url(../image/bg_chara.png) repeat-x top 30px center/auto 250px;
    padding-bottom: 0;
  }

  .chara-slider {
    width: 100%;
    max-width: 380px;
  }

  .chara-slider .swiper-pagination-bullets {
    left: 0px !important;
    bottom: 30px !important;
  }

  .chara-slider .swiper-pagination-bullet {
    width: 19%;
    height: 9vh;
    max-height: 80px;
    min-height: 60px;
    margin: 0 0.05% !important;
  }

  .chara-slider .swiper-pagination-bullet img {
    display: inline;
  }

  .chara-slider .swiper-pagination-bullet.num6, .chara-slider .swiper-pagination-bullet.num15 {
    margin-left: 9% !important;
  }

  .chara-slider .swiper-pagination-bullet.num19 {
    margin-left: 18% !important;
  }

  .chara-slider .swiper-button-next,
.chara-slider .swiper-button-prev {
    display: none;
  }

  .chara-slider li {
    width: 100%;
    height: 290px;
    background: url(../image/chara_slide_bg_sp.png) no-repeat center/100% auto;
  }

  .chara-slider li .inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .chara-slider li .chara01 {
    width: auto;
    height: 255px;
    top: 0;
    left: -1%;
  }

  .chara-slider li .chara01.c03, .chara-slider li .chara01.c12, .chara-slider li .chara01.c21 {
    left: 5%;
  }

  .chara-slider li .chara01.c11 {
    height: 190px;
    top: 15%;
  }

  .chara-slider li .chara01.sm {
    height: 230px;
    top: 5%;
  }

  .chara-slider li .chara01.c16, .chara-slider li .chara01.c17, .chara-slider li .chara01.c20 {
    left: -5%;
    top: 5%;
    height: 240px;
  }

  .chara-slider li .chara02 {
    height: 130px;
    left: 30%;
  }

  .chara-slider li .chara02:after {
    width: 80px;
    height: 105%;
    filter: blur(10px);
    left: -10px;
  }

  .chara-slider li .chara02.c16:after {
    left: 28px;
  }

  .chara-slider li .chara02.c18:after {
    left: 10px;
  }

  .chara-slider li .chara02.c21:after {
    left: -15px;
  }

  .chara-slider li .chara02.c11, .chara-slider li .chara02.c17 .chara-slider li .chara02.c20 {
    height: 110px;
  }

  .chara-slider li .chara02.c16 {
    height: 110px;
    left: 20%;
  }

  .chara-slider li .chara02.c18 {
    height: 110px;
    left: 25%;
  }

  .chara-slider li .detail {
    max-width: 180px;
    font-size: 10px;
    left: 50%;
    top: 24%;
  }

  .chara-slider li .detail .chara-name {
    height: 44px;
    width: auto;
    transform: translate(0);
  }

  .chara-slider li .detail p {
    letter-spacing: -0.07em;
    line-height: 1.3;
  }
}
/* system
================================================ */
.system-slider {
  width: 1020px;
}

.system-slider .swiper-pagination-bullets {
  margin: 0 130px;
  max-width: 760px;
}

.system-slider .swiper-pagination-bullet {
  width: 245px;
  height: 85px;
  background: none;
  opacity: 1;
  border-radius: 0;
  outline: none;
}

.system-slider .swiper-pagination-bullet:hover {
  cursor: pointer;
  opacity: 0.7;
}

.system-slider .swiper-pagination-bullet.num4 {
  margin-left: 120px !important;
}

.system-slider .swiper-button-next,
.system-slider .swiper-button-prev {
  cursor: pointer;
  width: 50px;
  height: 60px;
  top: 250px;
  background-image: none;
}

.system-slider .swiper-button-next:after,
.system-slider .swiper-button-prev:after {
  display: none;
}

.system-slider li {
  width: 1020px;
  height: 500px;
  background: url(../image/system_slide_bg.png) no-repeat center/100%;
  margin-bottom: 30px;
}

.system-slider li .system-main {
  width: 65%;
  margin: 20px auto 0;
}

.system-slider li .system-ttl {
  position: absolute;
  top: 60px;
  right: 6%;
}

.system-slider li .system-ttl.hatten {
  top: 20px;
}

.system-slider li p {
  padding: 1em 0;
  color: #fff;
  font-size: 18px;
  max-width: 68%;
  margin: 0 auto 0;
  letter-spacing: -0.05em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .system-slider {
    width: 100%;
    max-width: 380px;
  }

  .system-slider .swiper-pagination-bullets {
    margin: 0 auto;
    width: 100%;
  }

  .system-slider .swiper-pagination-bullet {
    width: 31%;
    height: 6vh;
    max-height: 50px;
    margin: 0 1% !important;
  }

  .system-slider .swiper-pagination-bullet.num4 {
    margin-left: 15% !important;
  }

  .system-slider .swiper-button-next,
.system-slider .swiper-button-prev {
    display: none;
  }

  .system-slider li {
    width: 100%;
    height: 215px;
    background: url(../image/system_slide_bg.png) no-repeat center/116% auto;
  }

  .system-slider li .system-main {
    width: 72%;
    margin: 10px auto 0;
  }

  .system-slider li .system-ttl {
    top: 30px;
    right: 2%;
    width: 13%;
  }

  .system-slider li .system-ttl.hatten {
    top: 5px;
  }

  .system-slider li p {
    font-size: 10px;
    max-width: 90%;
    letter-spacing: -0.1em;
  }
}
/* reg
================================================ */
.reg {
  width: 100%;
  padding: 40px 0 60px;
  background: url(../image/bg_elem.png) no-repeat top center/1606px, url(../image/bg_orange.png) no-repeat center/cover;
}

.reg .reg-pre + .reg-app {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .reg {
    padding: 30px 0 30px;
    background: url(../image/bg_elem.png) no-repeat top center/843px, url(../image/bg_orange.png) no-repeat center/cover;
  }

  .reg .reg-pre + .reg-app {
    margin-top: 10px;
  }
}
/* form
================================================ */
.form-box {
  width: 840px;
  height: 770px;
  background: url(../image/form_bg.png) no-repeat top center/100% 100%;
  padding: 85px 90px 80px;
  margin: 60px auto 0;
}

.form-ttl {
  text-align: center;
}

.form-ttl img {
  display: inline;
}

.form-check-privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 30px auto 0;
  max-width: 340px;
}

.form-check-privacy a {
  color: #a62b31;
}

.form-check-privacy input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: 0;
  width: 1.8em;
  height: 1.8em;
}

.form-check-privacy label {
  padding-left: 2.5em;
}

.form-check-privacy label:before {
  display: inline-block;
  content: "";
  width: 1.8em;
  height: 1.8em;
  border: 1px solid #a62b31;
  background: #fff;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form-check-privacy label:hover {
  cursor: pointer;
}

.form-check-privacy input[type=checkbox]:checked + label:after {
  display: inline-block;
  content: "";
  background: url(../image/icon-check.svg) no-repeat center/100%;
  width: 1.8em;
  height: 1.8em;
  color: #a62b31;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form-input-mail {
  margin: 40px auto 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-input-mail .input-mail {
  background: #fff;
  border-radius: 30px;
  width: 71%;
}

.form-input-mail .input-mail:hover {
  cursor: pointer;
}

.form-input-mail .btn-submit {
  width: 26%;
  background: #a0671c;
  border-radius: 30px;
  color: #fff;
}

.form-input-mail .btn-submit:hover {
  cursor: pointer;
}

.form-lead .ttl {
  text-align: center;
  color: #a62b31;
  font-size: 24px;
}

.form-lead .box {
  background: #fff;
  height: 325px;
  overflow-y: scroll;
  margin-top: 15px;
  padding: 1em;
}

.form-lead .box::-webkit-scrollbar {
  width: 17px;
}

.form-lead .box::-webkit-scrollbar-thumb {
  background: #934d12;
}

.form-lead .box::-webkit-scrollbar-track, .form-lead .box::-webkit-scrollbar-track-piece {
  background: #cbcbcb;
}

.form-lead .box dl {
  margin-top: 2em;
}

.form-lead .box p {
  margin-top: 1em;
}

.form-lead .box ul {
  margin-top: 1em;
}

.form-lead .box .mt li {
  margin-top: 1em;
}

.form-lead .box li {
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 768px) {
  .form {
    overflow: hidden;
  }

  .form-box {
    width: 112%;
    max-width: 420px;
    height: auto;
    padding: 50px 40px 40px;
    margin: 20px auto 0;
  }

  .form-check-privacy {
    font-size: 13px;
    margin: 15px auto 0;
    max-width: 250px;
  }

  .form-input-mail {
    margin: 30px auto;
    font-size: 13px;
  }

  .form-input-mail .input-mail {
    width: 68%;
  }

  .form-input-mail .btn-submit {
    width: 30%;
  }

  .form-lead .ttl {
    font-size: 16px;
  }

  .form-lead .box {
    font-size: 10px;
    height: 165px;
  }

  .form-lead .box::-webkit-scrollbar {
    width: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .form-box {
    margin-left: -6%;
  }
}
/* footer
================================================ */
.footer {
  width: 100%;
  background: #934d12 url(../image/bg_line.png) repeat-x top 15px center/2014px;
  padding: 90px 0 100px;
}

.footer-inner {
  max-width: 1368px;
  width: 100%;
  margin: 0 auto;
}

.footer .app {
  display: flex;
  align-items: center;
  width: 370px;
  margin: 0 auto;
}

.footer .app .lead {
  color: #fcf5d3;
  font-size: 16px;
  margin-left: 10px;
}

.footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

.footer .sns-btn + .sns-btn {
  margin-left: 20px;
}

.footer .nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .nav li:not(:last-child) {
  display: flex;
  align-items: center;
}

.footer .nav li:not(:last-child):after {
  display: block;
  content: "/";
  color: #fcf5d3;
}

.footer .nav a {
  color: #fcf5d3;
  padding: 0 1.5em;
  font-size: 20px;
}

.footer .footer-copy {
  color: #fcf5d3;
  text-align: center;
  font-size: 15px;
  margin-top: 40px;
}

.footer .logo {
  width: 136px;
  position: absolute;
  right: 83%;
  bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .footer {
    background: #934d12 url(../image/bg_line.png) repeat-x top 10px center/300%;
    padding: 60px 0 50px;
  }

  .footer .app {
    width: 68%;
    max-width: 255px;
  }

  .footer .app img {
    width: 25%;
  }

  .footer .app .lead {
    font-size: 10px;
    margin-left: 20px;
  }

  .footer .sns {
    flex-wrap: wrap;
    width: 50%;
    max-width: 255px;
    margin: 25px auto 40px;
  }

  .footer .sns-btn {
    width: 100%;
  }

  .footer .sns-btn + .sns-btn {
    margin-top: 10px;
    margin-left: 0;
  }

  .footer .nav {
    flex-wrap: wrap;
  }

  .footer .nav a {
    font-size: 12px;
  }

  .footer .footer-copy {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 20px;
  }

  .footer .logo {
    width: 20%;
    margin: 30px auto 0;
    position: inherit;
    right: auto;
    left: auto;
    bottom: auto;
  }
}
